/* =============================================
   SS MARINE INDIA - Main Stylesheet
   Colors: Navy #1B2A4A | Gold #C9A55A | White #FFFFFF
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B2A4A;
  --navy-light: #243660;
  --gold:       #C9A55A;
  --gold-light: #dfc07e;
  --white:      #FFFFFF;
  --off-white:  #F8F6F3;
  --gray-light: #F0EDEA;
  --gray:       #888888;
  --dark:       #222222;
  --text:       #444444;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', Arial, sans-serif;
  --transition: 0.35s ease;
  --shadow:     0 8px 40px rgba(27,42,74,0.12);
  --shadow-sm:  0 2px 16px rgba(27,42,74,0.08);
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pad { padding: 100px 0; }

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.8;
}

.divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.divider.center { margin: 20px auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: transparent;
  color: var(--navy);
}

/* ===================================================
   HEADER / NAVBAR — Sticky white frosted (matches reference)
   =================================================== */
#header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,215,210,0.80);
  transition: box-shadow var(--transition);
}

#header.scrolled {
  box-shadow: 0 2px 24px rgba(27,42,74,0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .nav-inner { height: 80px; }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 4px;
  padding: 2px 4px;
  background: transparent;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  position: relative;
  transition: color var(--transition);
  text-transform: none;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

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

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

/* CTA Button */
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.nav-cta:hover {
  background: #b8944a !important;
  border-color: #b8944a !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 16px 0;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition), padding var(--transition);
  text-transform: none;
  letter-spacing: 0;
}

.mobile-menu a:hover { color: var(--gold); padding-left: 32px; }
.mobile-menu .btn {
  margin: 16px 24px 0;
  text-align: center;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  border: none;
}

/* ===================================================
   HERO BANNER — Exact Atelier Reference Style
   =================================================== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #111;
}

/* --- Background image layers --- */
.hero-img-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.hero-img-layer.hero-img-active {
  opacity: 1;
}

.hero-img-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Gradient overlay: dark bottom → light top (exact reference) --- */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.20) 100%
  );
  z-index: 1;
}

/* --- Content wrapper — pinned to bottom like reference --- */
.hero-content-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding-bottom: 100px;
}

.hero-inner {
  width: 90%;
  max-width: 760px;
  padding-left: max(5vw, calc((100vw - 1200px) / 2));
}

/* --- Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  stroke: var(--gold);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
}

/* --- Heading --- */
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.30);
  margin-bottom: 0;
}

/* --- Description --- */
.hero-desc {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.30);
}

@media (min-width: 1024px) {
  .hero-desc { font-size: 1.15rem; }
}

/* --- Category Tabs --- */
.hero-tabs {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tab {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s ease;
  /* inactive state */
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.10);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-tab:hover {
  background: rgba(255,255,255,0.20);
}

.hero-tab.hero-tab-active {
  border: none;
  background: #fff;
  color: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}

.tab-count {
  font-size: 0.75rem;
  opacity: 0.70;
  margin-left: 4px;
}

/* --- CTA Buttons --- */
.hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--gold);
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(201,165,90,0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.hero-btn-primary:hover {
  background: #b8944a;
  box-shadow: 0 12px 32px rgba(201,165,90,0.45);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.10);
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.20);
}

/* --- [data-animate] entrance animation --- */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].anim-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .hero-inner { margin-left: 5%; }
  .hero-heading { font-size: 2rem; }
  .hero-desc { font-size: 0.95rem; }
}

/* ===================================================
   MARQUEE TICKER
   =================================================== */
.ticker {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.ticker-track span.dot {
  color: rgba(255,255,255,0.5);
  font-size: 0.5rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
#about { background: var(--white); }

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

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-img-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -40px;
  right: -40px;
  border: 8px solid var(--white);
  z-index: 2;
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: 3;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge .years {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .ytext {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}

.feature-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===================================================
   SERVICES SECTION
   =================================================== */
#services { background: var(--off-white); }

.services-head {
  text-align: center;
  margin-bottom: 64px;
}

.services-head .section-sub { margin: 0 auto; }

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

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
  transition: color var(--transition);
}

.service-card:hover .service-num { color: rgba(201,165,90,0.12); }

.service-icon {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-link:hover { gap: 14px; }

/* ===================================================
   PORTFOLIO SECTION
   =================================================== */
#portfolio { background: var(--white); }

.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 24px;
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1.5px solid var(--gray-light);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  aspect-ratio: 4/3;
}

.portfolio-item.large img { aspect-ratio: unset; height: 100%; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,0.9) 0%, rgba(27,42,74,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-info h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}

.portfolio-info span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.portfolio-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-zoom { opacity: 1; transform: scale(1); }

/* ===================================================
   WHY CHOOSE US
   =================================================== */
#why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,165,90,0.05);
}

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

.why-content .section-title { color: var(--white); }
.why-content .section-sub { color: rgba(255,255,255,0.6); }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-item:last-child { border-bottom: none; padding-bottom: 0; }

.why-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}

.why-text h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.why-image { position: relative; }

.why-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.why-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  padding: 30px;
  max-width: 200px;
}

.why-image-badge p {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ===================================================
   PROCESS SECTION
   =================================================== */
#process { background: var(--off-white); }

.process-head { text-align: center; margin-bottom: 64px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-num {
  width: 88px;
  height: 88px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--white);
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
#testimonials { background: var(--white); }

.testimonials-head { text-align: center; margin-bottom: 64px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--off-white);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: var(--navy);
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
  transition: color var(--transition);
}

.testimonial-card:hover p { color: rgba(255,255,255,0.8); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}

.testimonial-card:hover .author-info h5 { color: var(--white); }

.author-info span {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

/* ===================================================
   CTA SECTION
   =================================================== */
#cta {
  background: var(--gold);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-white {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
#contact { background: var(--off-white); }

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

.contact-info { padding-top: 10px; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover { transform: translateX(6px); }

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-card p, .contact-card a {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

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

/* Contact Form */
.contact-form { background: var(--white); padding: 50px 44px; box-shadow: var(--shadow); }

.form-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

.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='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A55A' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

/* ===================================================
   FOOTER
   =================================================== */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
}

.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 64px;
  width: auto;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 8px;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-policy {
  display: flex;
  gap: 24px;
}

.footer-policy a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

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

/* ===================================================
   BACK TO TOP
   =================================================== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(201,165,90,0.4);
}

#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--navy); }

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .about-grid { gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .section-pad { padding: 80px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats { position: relative; bottom: auto; right: auto; flex-direction: row; margin-top: 50px; }

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

  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }

  .about-badge { left: 0; }
  .about-img-accent { right: 0; }

  .why-image { display: none; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.large { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 700px) {
  .section-pad { padding: 60px 0; }

  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; }
  .stat-card { min-width: unset; }

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

  .process-steps { grid-template-columns: 1fr; }

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

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

  .cta-inner { flex-direction: column; }

  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

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

  .footer-bottom { flex-direction: column; text-align: center; }
}
