/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-color: #f4c430;
  --primary-dark: #e0b020;
  --secondary-color: #2c3e50;
  --accent-color: #f4c430;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Open Sans", sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 38px;
}

.logo-image-fors {
  height: 32px;
  margin-left: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  display: block;
  transform-origin: center;
}

.navbar-accreditation {
  height: 38px;
  width: auto;
  margin-left: 16px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px #0002);
}
@media (max-width: 600px) {
  .navbar-accreditation {
    height: 26px;
    margin-left: 8px;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-image: url("public/ward-hero1.jpeg");
  background-size: cover;
  background-position: center;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-text-box {
  position: relative;
  z-index: 2;
  background: #2a2a2a;
  padding: 50px 60px;
  margin: 80px;
  width: 700px;
  max-width: 700px;
  border-radius: 0;
  box-shadow: var(--shadow-xl);
  animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 35px;
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtext {
  font-size: 0.95rem;
  margin-top: 25px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--bg-white);
  font-size: 0.9rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--bg-white);
  margin: 10px auto 0;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-block;
  padding: 15px 35px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #f4c430;
  color: #1a1a1a;
  border-radius: 0;
}

.btn-primary:hover {
  background: #e0b020;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
  border-radius: 0;
}

.btn-secondary:hover {
  background: #f4c430;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-projects {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.section-header-left {
  flex: 1;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f4c430;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
  padding: 60px 0;
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #2a2a2a;
  padding: 30px 35px;
  border-radius: 0;
  text-align: center;
  transition: all 0.4s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f4c430;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #333333;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card:hover .service-btn {
  background: #f4c430;
  color: #1a1a1a;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-btn {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  color: #f4c430;
  text-decoration: none;
  border: 2px solid #f4c430;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.service-btn:hover {
  background: #f4c430;
  color: #1a1a1a;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */

.projects {
  padding: var(--section-padding);
  background: #2a2a2a;
  overflow: visible;
}

.section-title-light {
  color: var(--bg-white);
}

.section-title-light::after {
  background: #f4c430;
  left: 0;
  transform: translateX(0);
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-top: 12px;
  font-weight: 400;
}

.gallery-wrapper {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 15px 0;
  margin: -15px 0;
}

.gallery-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  flex: 1;
  min-width: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  width: 100%;
  padding: 15px 15px;
  margin: -15px -15px;
}

.gallery-row::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  background: #1a1a1a;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  z-index: 10;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-nav {
  background: var(--primary-color);
  color: #1a1a1a;
  border: none;
  width: 45px;
  height: 45px;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
  font-weight: 700;
  pointer-events: auto;
}

.gallery-nav:hover:not(:disabled) {
  background: #e0b020;
  transform: scale(1.1);
}

.gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightboxImage {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--bg-white);
  font-size: 3rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10001;
}

.lightbox-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-white);
  font-size: 2.5rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 10001;
  border-radius: 50%;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  color: var(--bg-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-top: 20px;
  text-align: center;
  opacity: 0.8;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-image-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-title {
  text-align: left;
  margin-bottom: 0;
}

.about-title::after {
  left: 0;
  transform: translateX(0);
}

.about-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.about-metric {
  background: var(--bg-light);
  padding: 25px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all var(--transition-base);
}

.about-metric:hover {
  border-color: #f4c430;
  box-shadow: var(--shadow-md);
}

.metric-number {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: #f4c430;
  display: block;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.about-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4c430;
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-service-item span {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================
   CONTACT CTA SECTION
   ========================================== */

.contact-cta {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url("public/photos/IMG_0352.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0 5vw;
}

.contact-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.contact-cta-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--bg-white);
  max-width: 500px;
  margin-left: 100px;
}

.contact-cta-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 30px;
  letter-spacing: 3px;
  line-height: 1.2;
}

.btn-large {
  font-size: 1.1rem;
  padding: 20px 50px;
  letter-spacing: 2px;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("public/photos/IMG_0352.jpeg");
  background-size: cover;
  background-position: center;
  margin-top: 70px;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg-white);
}

.contact-hero-title {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 15px;
  letter-spacing: 4px;
}

.contact-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.contact-page-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.contact-page-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-page-heading {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-page-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.contact-info-item:hover {
  background: #f0f4f8;
}

.contact-icon-svg {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-content h4 {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-sister-box {
  padding: 24px;
  background: #f2f7fd;
  border-left: 4px solid var(--primary-color);
  margin-top: 30px;
}

.contact-sister-box strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-sister-box p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-sister-box a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==========================================
   CONTACT SECTION (Legacy - if needed)
   ========================================== */

.contact {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-white);
  padding: 30px;
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid var(--border-color);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #f4c430;
}

.contact-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4c430;
  color: #1a1a1a;
  font-size: 1.8rem;
  margin: 0 auto 15px;
}

.contact-info-card h4 {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.contact-form {
  background: #2a2a2a;
  padding: 50px;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f4c430 0%, #e0b020 100%);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #3a3a3a;
  border-radius: 0;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #1a1a1a;
  color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f4c430;
  background: #222222;
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select {
  color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f4c430' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

.btn-block {
  margin-top: 10px;
  font-size: 1rem;
  padding: 18px 35px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  color: var(--bg-white);
  padding: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 35px;
  padding-bottom: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-brand {
  gap: 12px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 2px;
  align-self: flex-start;
}

.footer-tagline {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-address {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 4px 0 0 0;
}

.footer-accred {
  margin-top: 6px;
}

.footer-accred-logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.footer-accred-logo:hover {
  opacity: 1;
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-white);
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-menu li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-menu a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width var(--transition-base);
}

.footer-menu a:hover {
  color: var(--primary-color);
  padding-left: 12px;
}

.footer-menu a:hover::before {
  width: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-item {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-contact-item strong {
  display: block;
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--primary-color);
}

.footer-sister {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-sister-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.footer-sister-link span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.footer-sister-link:hover {
  color: var(--primary-color);
}

.footer-bar {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
  .about-wrapper,
  .contact-wrapper,
  .contact-page-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-icon-svg {
    width: 24px;
    height: 24px;
  }

  .contact-info-content h4 {
    font-size: 0.8rem;
  }

  .contact-info-content p {
    font-size: 0.9rem;
  }

  .contact-sister-box {
    padding: 18px 16px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .about-image-container {
    order: 1;
  }

  .about-content {
    order: 2;
  }

  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-cta-title {
    font-size: 2rem;
  }

  .contact-cta-content {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 400px;
  }

  .about-services {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col-brand {
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    align-self: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-menu {
    align-items: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-sister {
    text-align: center;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 30px;
    transition: left var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-text-box {
    margin: 40px 20px;
    padding: 35px 30px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wrapper {
    gap: 10px;
  }
  
  .gallery-item {
    width: 120px;
    height: 120px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .lightbox-prev {
    left: 15px;
  }
  
  .lightbox-next {
    right: 15px;
  }
  
  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
  }

  .section-header-projects {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 50px 0;
  }

  .gallery-wrapper {
    gap: 8px;
  }
  
  .gallery-item {
    width: 100px;
    height: 100px;
  }
  
  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }
  
  #lightboxImage {
    max-height: 80vh;
  }

  .hero-text-box {
    margin: 30px 15px;
    padding: 30px 25px;
    width: calc(100% - 30px);
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
  }

  .contact-cta-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .contact-cta {
    background-attachment: scroll;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .logo-image {
    height: 40px;
  }

  .footer {
    padding: 30px 0 0;
  }

  .footer-grid {
    gap: 30px;
    padding-bottom: 20px;
  }

  .footer-bar {
    padding: 14px 0;
  }
}

.sister-tagline {
  text-align: center;
  background: #fff7e0;
  color: #6d4d00;
  font-size: 1.04em;
  padding: 6px 0 4px 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.sister-tagline a {
  color: #b49010;
  text-decoration: underline;
  font-weight: 600;
}

.nav-sister {
  background: #fff8d7;
  color: #b49010 !important;
  border-radius: 6px;
  padding: 4px 12px;
  font-weight: 700;
  margin-left: 8px;
  transition: background 0.18s;
  border: 1px solid #f4c43044;
}
.nav-sister:hover {
  background: #f4c430;
  color: #1a1a1a !important;
}
