/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #FAB805;
  --gold-dark: #cc9604;
  --dark-bg: #090810;
  --dark-bg2: #100f1c;
  --dark-card: #151324;
  --light-bg: #f9f9fa;
  --white: #ffffff;
  --text-dark: #12101f;
  --text-light: #e0e0e5;
  --text-muted: #8e8d9c;
  --green-wa: #25D366;
  --section-padding: 100px 0;
  --container-width: 1200px;
  --glass-bg: rgba(9, 8, 16, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: transparent;
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 40px;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.nav-links a:hover {
  color: var(--gold);
}

.hamburger {
  display: none; /* turns to flex on mobile */
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 998; /* below overlay so it hides when nav opens */
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-icon span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.menu-label {
  display: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 60px;
  position: relative;
  overflow: hidden;
  background: url('images/gallery/duplex home.jpeg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,26,0.3) 0%, rgba(10,10,26,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -1px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.4s;
}

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: #F4B731;
  color: var(--dark-bg);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 15px rgba(244, 183, 49, 0.3);
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.6s;
}

.hero .btn-primary {
  min-width: 320px;
  text-align: center;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7ca62;
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scaleX(0);
  transform-origin: right;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  color: var(--dark-bg);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(244, 183, 49, 0.5);
}

/* ===== PAGE HERO (Gallery/Contact) ===== */
.page-hero {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('images/gallery/office.jpeg') center/cover no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,26,0.8);
  z-index: 1;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

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

.section-title.light .subtitle {
  color: var(--gold);
}

/* ===== FEATURED PROJECTS SPLIT LAYOUT ===== */
.featured-projects {
  background: #FFFFFF;
  padding: 80px 0;
}

.featured-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.fp-left {
  flex: 0 0 40%;
}

.fp-label {
  display: block;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.fp-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-bg);
  line-height: 1.1;
  margin-bottom: 24px;
}

.fp-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.fp-desc {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.8;
}

.fp-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--dark-bg);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fp-btn:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.fp-right {
  flex: 0 0 60%;
}

.fp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 40px; /* compensate for stagger */
}

.fp-grid-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 4px; /* subtle softness */
}

/* Stagger the left column down */
.fp-grid-item:nth-child(odd) {
  top: 40px;
}

.fp-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}



/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
}

.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  background: #F9F7F4;
  border-radius: 12px;
  z-index: 1;
}

.about-content {
  padding-right: 20px;
}

.about-content .subtitle {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
}

.about-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark-bg);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.about-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 30px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}



/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 80px 0;
  background: #F9F7F4; /* Light warm background matching requested style */
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.testimo-header {
  margin-bottom: 40px;
}

.testimo-label {
  display: block;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.testimo-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-bg);
  line-height: 1.2;
}

.testimo-carousel {
  position: relative;
  width: 100%;
}

.testimo-track {
  display: flex;
  gap: 24px;
  /* Reset scroll snap for desktop */
  scroll-snap-type: none;
  overflow-x: visible;
}

.testimo-card {
  flex: 0 0 calc(33.333% - 16px); /* 3 cards side by side on desktop */
  background: var(--white);
  border: 1px solid #f0ede8;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}

.quote-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.quote-divider {
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-author {
  flex: 1;
}

.client-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 4px;
}

.project-type {
  font-size: 13px;
  color: #888;
}

.room-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}

.testimo-dots {
  display: none; /* Hidden on desktop */
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E5E5;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===== MAP & CONTACT INFO ===== */
.map-contact-section {
  padding: var(--section-padding);
  background: var(--dark-bg2);
}

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

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-info h4 {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.contact-info .info-text {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-info .info-text a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.contact-info .info-text a:hover {
  opacity: 0.8;
}

.contact-info .available-badge {
  margin-top: 25px;
}

.contact-info .available-badge h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.contact-info .available-badge p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 15px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  fill: var(--text-muted);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 25px 18px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 2;
  display: block;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
  border-radius: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.footer-social a img,
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  /* Make image icons white */
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.footer-social a:hover img {
  /* Make icons dark on gold background */
  filter: brightness(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 998;
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: var(--dark-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(250,184,5,0.3);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 24px;
  border-radius: 30px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(250, 184, 5, 0.3);
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
  break-inside: avoid;
  margin-bottom: 20px;
}

.gallery-item.hide {
  display: none;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,26,0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(10,10,26,0.2);
}

.gallery-item:hover::after {
  background: rgba(10,10,26,0.2);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: var(--light-bg);
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(250,184,5,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card .icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.contact-card p,
.contact-card a {
  color: #666;
  font-size: 14px;
}

.contact-card a:hover {
  color: var(--gold);
}

/* ===== FORM BASE STYLES ===== */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group .required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  background: var(--white);
  color: var(--text-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(250, 184, 5, 0.1);
}

.char-count {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}

.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gold);
  color: var(--dark-bg);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(250, 184, 5, 0.3);
}

.btn-submit:disabled {
  opacity: 0.9;
  cursor: not-allowed;
}

.contact-form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper h5 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-align: center;
}

.contact-form-wrapper .form-group label {
  color: var(--text-dark);
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  background: var(--white);
  border: 1px solid #ddd;
  color: var(--text-dark);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  border-color: var(--gold);
}

.contact-form-wrapper .btn-submit {
  background: var(--gold);
  color: var(--dark-bg);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,26,0.97);
  z-index: 1050; /* above header (1000) and hamburger (998) */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-overlay.active {
  display: flex;
}

.mobile-overlay a {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.mobile-overlay a:hover {
  color: var(--gold);
}

.mobile-overlay .close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .menu-label { display: block; }

  .hero { text-align: left; justify-content: flex-start; padding: 0 28px; }
  .hero::before { background: linear-gradient(to bottom, rgba(10,10,26,0.3) 0%, rgba(10,10,26,0.7) 100%); }
  .hero h1 { font-size: 52px; letter-spacing: -0.5px; line-height: 1.2; }
  .hero p { font-size: 16px; margin-bottom: 40px; color: rgba(255, 255, 255, 0.85); }
  
  .hero .btn-primary {
    width: 100%;
    min-width: 0;
    display: block;
    text-align: center;
    box-sizing: border-box;
    font-size: 13px;
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    width: 100%;
  }

  .featured-projects { padding: 48px 0; }
  .featured-projects-container { flex-direction: column; gap: 40px; }
  .fp-left, .fp-right { flex: 0 0 100%; width: 100%; }
  .fp-grid { gap: 15px; padding-bottom: 20px; }
  .fp-grid-item { height: 160px; }
  .fp-grid-item:nth-child(odd) { top: 20px; }
  .fp-title { font-size: 36px; }

  .about-section {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image img {
    height: 320px;
  }

  .about-image-accent {
    bottom: -15px;
    left: -15px;
    width: 80%;
    height: 50%;
  }

  .about-content {
    padding-right: 0;
  }

  .about-title {
    font-size: 32px;
  }



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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }

  /* Testimonials Mobile Swipe */
  .testimonials-section { padding: 48px 0; }
  .testimo-title { font-size: 32px; }
  .testimo-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .testimo-track::-webkit-scrollbar { display: none; }
  .testimo-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
  .testimo-dots { display: flex; }

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

  .page-hero h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .section-title h2 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; margin-bottom: 30px; }

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

  /* Handled in 768px query */

  .gallery-grid {
    column-count: 1;
  }

  .stat-item h3 {
    font-size: 48px;
  }

  .header {
    padding: 12px 20px;
  }
}
