/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
li { list-style: none; }

:root {
  --navy: #0A1628;
  --navy-mid: #0F1E35;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-pale: #F7DC6F;
  --white: #FAF6EE;
  --white-dim: rgba(250,246,238,0.78);
  --white-faint: rgba(250,246,238,0.14);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212,160,23,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 100% 100%, rgba(212,160,23,0.04) 0%, transparent 50%);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,23,0.25);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4), 0 1px 0 rgba(212,160,23,0.1);
  transition: padding 0.3s ease;
}
.nav-logo img {
  height: 54px; width: 54px;
  border-radius: 50%; object-fit: cover; object-position: center top;
  border: 2px solid rgba(201,168,76,0.6);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.nav-logo img:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 2px var(--gold), 0 0 18px rgba(201,168,76,0.5), 0 0 36px rgba(201,168,76,0.2);
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold); background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://raw.githubusercontent.com/badgerh001-ai/arthagroups.com/main/arthabanner.png');
  background-size: cover; background-position: center;
  opacity: 0.75;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%,
    rgba(212,160,23,0.12) 0%,
    rgba(212,160,23,0.04) 45%,
    transparent 70%);
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.2) 0%,
    rgba(10,22,40,0.08) 35%,
    rgba(10,22,40,0.65) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 860px; padding: 0 24px;
  animation: heroFadeUp 1.2s ease both;
}
.hero-logo-wrap {
  margin-bottom: 16px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-logo-name { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-logo-title {
  font-family: 'Cinzel', serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(240,192,64,0.5);
}
.hero-logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 300;
  font-style: italic; letter-spacing: 2px;
  color: var(--white-dim);
}
.hero-logo {
  width: 110px; height: 110px;
  border-radius: 50%; object-fit: cover; object-position: center 20%;
  border: 2px solid rgba(201,168,76,0.8);
  box-shadow: 0 0 0 5px rgba(11,25,41,0.6), 0 0 0 7px rgba(201,168,76,0.25), 0 0 30px rgba(201,168,76,0.3);
  animation: logoFloat 3.5s ease-in-out infinite;
  background: #fff;
}
.hero-logo:hover {
  box-shadow: 0 0 0 5px rgba(11,25,41,0.6), 0 0 0 7px var(--gold), 0 0 40px rgba(201,168,76,0.6), 0 0 70px rgba(201,168,76,0.2);
  animation-play-state: paused;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 auto 16px; width: 280px;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-divider span { font-size: 10px; color: var(--gold); letter-spacing: 3px; }
.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px;
  text-shadow: 0 0 16px rgba(240,192,64,0.5);
}
.hero-headline {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400; line-height: 1.15;
  color: var(--white); margin-bottom: 16px; letter-spacing: 2px;
}
.hero-headline em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light); font-size: 1.1em;
}
.hero-sub {
  font-size: 17px; font-weight: 300;
  color: var(--white-dim); line-height: 1.7;
  margin-bottom: 28px; font-style: italic;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); border: none; cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-pale) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.55);
}
.btn-outline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 40px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(212,160,23,0.6);
  cursor: pointer; display: inline-block;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  box-shadow: 0 0 16px rgba(212,160,23,0.25), inset 0 0 16px rgba(212,160,23,0.05);
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  box-shadow: 0 0 6px rgba(240,192,64,0.6);
  animation: scrollPulse 1.8s ease infinite;
}

/* ── STATS ── */
.stats-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 40px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 40px; font-weight: 700;
  color: var(--gold); display: block;
  text-shadow: 0 0 20px rgba(212,160,23,0.4);
  transition: transform 0.3s;
}
.stat-item:hover .stat-num { transform: scale(1.1); }
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white-dim); margin-top: 6px; display: block;
}

/* ── SECTIONS COMMON ── */
section { padding: 100px 60px; }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px;
  display: block;
  text-shadow: 0 0 14px rgba(240,192,64,0.45);
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400; line-height: 1.2;
  color: var(--white); margin-bottom: 20px;
  position: relative;
}
.section-body {
  font-size: 18px; font-weight: 300;
  color: var(--white-dim); line-height: 1.8;
  max-width: 560px;
}
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 28px;
  box-shadow: 0 0 10px rgba(212,160,23,0.5);
}

/* ── SECTION SEPARATOR ── */
.section-sep {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 0 60px;
  height: 60px; background: var(--navy);
}
.section-sep::before, .section-sep::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.3), transparent);
}
.section-sep span { color: rgba(212,160,23,0.5); font-size: 14px; letter-spacing: 8px; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s ease infinite;
  color: white; font-size: 24px;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.7);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover !important;
  background-position: center !important;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border: 1px solid rgba(201,168,76,0.25);
  z-index: -1;
}
.about-tag {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--gold);
  padding: 16px 20px;
  font-family: 'Cinzel', serif;
  font-size: 13px; color: var(--navy);
  font-weight: 700; text-align: center; line-height: 1.4;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 36px;
}
.about-feat { display: flex; align-items: flex-start; gap: 12px; }
.feat-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
}
.feat-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; letter-spacing: 0.5px;
  color: var(--white-dim); line-height: 1.5;
}

/* ── SERVICES ── */
#services { background: var(--navy-mid); }
.services-header {
  text-align: center; margin-bottom: 64px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.services-header .gold-rule { margin: 0 auto 28px; }
.services-header .section-body { margin: 0 auto; text-align: center; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1200px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.15);
}
.service-card {
  border: 1px solid rgba(201,168,76,0.15);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default; position: relative; overflow: hidden;
  min-height: 320px; display: flex;
  flex-direction: column; justify-content: flex-end;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.sc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease; z-index: 0;
}
.service-card:hover .sc-bg { transform: scale(1.07); }
.sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,25,41,0.3) 0%, rgba(11,25,41,0.88) 60%, rgba(11,25,41,0.97) 100%);
  z-index: 1; transition: background 0.4s ease;
}
.service-card:hover .sc-overlay {
  background: linear-gradient(180deg, rgba(11,25,41,0.2) 0%, rgba(11,25,41,0.82) 55%, rgba(11,25,41,0.97) 100%);
}
.sc-content { position: relative; z-index: 2; padding: 28px; }
.service-num {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 3px;
  color: rgba(201,168,76,0.6); margin-bottom: 10px;
  display: block;
  text-shadow: 0 0 10px rgba(212,160,23,0.3);
}
.service-icon {
  font-size: 26px; margin-bottom: 12px; display: block;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(212,160,23,0.5);
}
.service-name {
  font-family: 'Cinzel', serif;
  font-size: 16px; font-weight: 600;
  color: var(--white); margin-bottom: 10px; line-height: 1.3;
}
.service-desc {
  font-size: 14px; font-weight: 300;
  color: rgba(245,240,232,0.75); line-height: 1.65;
}
.service-line {
  width: 32px; height: 1px;
  background: var(--gold); margin-top: 16px;
  transition: width 0.3s;
}
.service-card:hover .service-line { width: 56px; }

/* Gold corner accent */
.service-card::after, .plan-card::after, .process-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, transparent 50%, rgba(212,160,23,0.3) 50%);
  z-index: 3; opacity: 0; transition: opacity 0.3s;
}
.service-card:hover::after, .plan-card:hover::after, .process-card:hover::after { opacity: 1; }

/* ── PLANS ── */
.plans-inner { max-width: 1200px; margin: 0 auto; }
.plans-header { text-align: center; margin-bottom: 64px; }
.plans-header .section-title { font-size: clamp(26px, 3vw, 42px); }
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.plan-card {
  position: relative; overflow: hidden;
  min-height: 540px; display: flex; align-items: flex-end;
  border: 1px solid rgba(212,160,23,0.2);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.plan-card:hover {
  border-color: rgba(212,160,23,0.55);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4);
}
.plan-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease; z-index: 0;
}
.plan-card:hover .plan-bg { transform: scale(1.05); }
.plan-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.1) 0%,
    rgba(10,22,40,0.35) 35%,
    rgba(10,22,40,0.82) 65%,
    rgba(10,22,40,0.97) 100%);
  z-index: 1;
}
.plan-content { position: relative; z-index: 2; padding: 28px; width: 100%; }
.plan-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; z-index: 3; font-weight: 700;
}
.featured-plan {
  border-color: rgba(212,160,23,0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 40px rgba(212,160,23,0.2);
  z-index: 1;
}
.featured-plan .plan-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-size: cover !important;
  background-position: center !important;
}
.featured-plan .plan-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}
.featured-plan .plan-content {
  position: relative !important;
  z-index: 2 !important;
}
.featured-plan .plan-badge {
  position: absolute !important;
  z-index: 3 !important;
}
.featured-plan::after { display: none !important; }
.plan-icon {
  font-size: 28px; margin-bottom: 10px;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(212,160,23,0.5);
  display: block;
}
.plan-num {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 3px;
  color: rgba(201,168,76,0.5); margin-bottom: 6px;
  display: block;
}
.plan-name {
  font-family: 'Cinzel', serif;
  font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 6px;
}
.plan-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic;
  color: var(--white-dim); margin-bottom: 20px;
}
.plan-features { margin-bottom: 24px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.5px;
  color: var(--white-dim); padding: 7px 0;
  border-bottom: 1px solid rgba(212,160,23,0.08);
}
.plan-check {
  color: var(--gold); font-size: 12px; flex-shrink: 0;
}
.plan-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(240,192,64,0.4);
  padding-bottom: 3px;
  transition: color 0.3s, gap 0.3s;
}
.plan-cta:hover { color: var(--white); gap: 12px; }

/* ── VALUES STRIP ── */
.values-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(212,160,23,0.15);
  width: 100%;
}
.value-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 28px 16px;
  background: var(--navy-mid);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white-dim); text-align: center;
  border: 1px solid rgba(212,160,23,0.08);
  transition: background 0.3s;
}
.value-item:hover { background: rgba(212,160,23,0.04); }
.value-icon {
  font-size: 26px; color: var(--gold);
  text-shadow: 0 0 14px rgba(212,160,23,0.5);
}

/* ── PORTFOLIO ── */
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1200px; margin: 0 auto 40px;
  flex-wrap: wrap; gap: 20px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 420px 260px 320px;
  gap: 12px;
  max-width: 1200px; margin: 0 auto;
}
.port-hero { grid-row: span 2; }
.port-item {
  background: var(--navy-mid);
  border: 1px solid rgba(212,160,23,0.12);
  display: flex; align-items: flex-end;
  padding: 24px; overflow: hidden;
  position: relative; cursor: zoom-in;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.port-item:hover {
  border-color: rgba(212,160,23,0.45);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.port-placeholder {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.port-item:hover .port-placeholder { transform: scale(1.05); }
.port-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 4px 10px; font-weight: 700;
}
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.05) 0%,
    rgba(10,22,40,0.35) 40%,
    rgba(10,22,40,0.88) 68%,
    rgba(10,22,40,0.98) 100%);
}
.port-info { position: relative; z-index: 2; padding: 4px 0; }
.port-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px; display: block;
}
.port-title {
  font-family: 'Cinzel', serif;
  font-size: 15px; color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}
.port-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(250,246,238,0.7); line-height: 1.6;
  margin: 6px 0 12px; display: none;
}
.port-hero .port-desc, .port-wide .port-desc { display: block; }
.port-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 8px; border-bottom: 1px solid rgba(240,192,64,0.3);
  padding-bottom: 2px;
  transition: color 0.3s, gap 0.3s;
}
.port-cta:hover { color: var(--white); gap: 10px; }

/* ── PROCESS ── */
#process { background: var(--navy-mid); }
.process-new-inner { max-width: 1200px; margin: 0 auto; }
.process-new-header { text-align: center; margin-bottom: 56px; }
.process-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-card {
  position: relative; overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
  border: 1px solid rgba(212,160,23,0.15);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.process-card:hover {
  border-color: rgba(212,160,23,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.pc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease; z-index: 0;
}
.process-card:hover .pc-bg { transform: scale(1.06); }
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.25) 0%,
    rgba(10,22,40,0.75) 50%,
    rgba(10,22,40,0.96) 100%);
  z-index: 1;
}
.pc-content { position: relative; z-index: 2; padding: 32px; }
.pc-num {
  font-family: 'Cinzel', serif;
  font-size: 40px; font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1; margin-bottom: 8px; display: block;
}
.pc-icon {
  font-size: 24px; margin-bottom: 12px; display: block;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(212,160,23,0.5);
}
.pc-name {
  font-family: 'Cinzel', serif;
  font-size: 17px; color: var(--white);
  margin-bottom: 10px; line-height: 1.3;
}
.pc-desc {
  font-size: 14px; font-weight: 300;
  color: var(--white-dim); line-height: 1.65;
}
.pc-line {
  width: 32px; height: 1px;
  background: var(--gold); margin-top: 16px;
  transition: width 0.3s;
}
.process-card:hover .pc-line { width: 56px; }

/* ── TESTIMONIALS ── */
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .gold-rule { margin: 0 auto 28px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.testi-quote {
  font-family: 'Cinzel', serif;
  font-size: 48px; color: rgba(201,168,76,0.15);
  line-height: 0.5; margin-bottom: 16px; display: block;
}
.testi-text {
  font-size: 17px; font-weight: 300;
  font-style: italic; color: var(--white-dim);
  line-height: 1.75; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.5);
  background: var(--navy); overflow: hidden; flex-shrink: 0;
}
.testi-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; border-radius: 50%;
}
.testi-name {
  font-family: 'Cinzel', serif;
  font-size: 13px; color: var(--white);
  display: block; margin-bottom: 3px;
}
.testi-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase;
}

/* ── CONTACT ── */
#contact { background: var(--navy-mid); }
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info p {
  font-size: 17px; font-weight: 300;
  font-style: italic; color: var(--white-dim);
  line-height: 1.8; margin-bottom: 40px;
}
.contact-detail {
  display: flex; align-items: flex-start;
  gap: 16px; margin-bottom: 24px;
}
.c-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  color: var(--gold);
}
.c-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.c-val { font-size: 15px; font-weight: 300; color: var(--white); }
.c-link { transition: color 0.3s; }
.c-link:hover { color: var(--gold); }

.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(11,25,41,0.6);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; outline: none;
  transition: border-color 0.3s; resize: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field select option { background: var(--navy); color: var(--white); }

/* ── FOOTER ── */
footer {
  background: #070F1A;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 64px; padding: 60px 60px 40px;
  align-items: start;
}
.footer-brand img {
  height: 64px; width: 64px;
  border-radius: 50%; object-fit: cover; object-position: center 15%;
  border: 2px solid rgba(212,160,23,0.5);
  margin-bottom: 12px; display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.footer-brand img:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 2px var(--gold), 0 0 18px rgba(201,168,76,0.5);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic;
  color: var(--white-dim); margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,160,23,0.2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.social-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.08); }

/* ── FOOTER QUICK LINKS — Redesigned ── */
.footer-links-col { }
.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,160,23,0.2);
  display: block;
}
.footer-links-col ul {
  display: flex; flex-direction: column; gap: 0;
}
.footer-links-col ul li { }
.footer-links-col ul li a {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(250,246,238,0.45);
  padding: 11px 0;
  border-bottom: 1px solid rgba(212,160,23,0.06);
  transition: color 0.3s, padding-left 0.25s;
}
.footer-links-col ul li:last-child a { border-bottom: none; }
.footer-links-col ul li a i {
  font-size: 9px; color: var(--gold);
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-4px);
}
.footer-links-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-links-col ul li a:hover i {
  opacity: 1; transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(212,160,23,0.1);
  padding: 20px 60px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 1px;
  color: rgba(250,246,238,0.3);
}
.footer-bottom a { color: var(--gold); }

/* ── HAMBURGER & MOBILE MENU ── */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1001;
  width: 40px; height: 40px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,160,23,0.25);
  flex-direction: column; padding: 20px 28px 28px;
  z-index: 998; display: none;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white-dim);
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,160,23,0.08);
  transition: color 0.3s, padding-left 0.3s; display: block;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .mobile-cta {
  margin-top: 20px;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  text-align: center; padding: 14px 0 !important;
  border-bottom: 1px solid var(--gold) !important;
}

/* ── GOLD SHIMMER ── */
.gold-shimmer {
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 40%, var(--gold-light) 50%, var(--white) 60%, var(--white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── ANIMATIONS ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 960px)
══════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 14px 24px !important; }
  .nav-links { display: none !important; }
  .desktop-only { display: none !important; }
  .hamburger { display: flex !important; }

  section { padding: 64px 24px !important; }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 32px 24px !important;
  }
  .stat-item { padding: 20px !important; border: 1px solid rgba(212,160,23,0.08); }

  .about { grid-template-columns: 1fr !important; gap: 40px !important; }
  .about-accent { display: none; }
  .about-tag { left: 0 !important; bottom: -12px !important; }
  .about-img { aspect-ratio: 16/9 !important; }
  .about-features { grid-template-columns: 1fr !important; }

  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .sc-consultation { grid-column: span 2 !important; }

  .plans-grid { grid-template-columns: 1fr !important; }
  .featured-plan { transform: none !important; }
  .plan-card { min-height: 420px !important; }
  .values-strip { grid-template-columns: repeat(2, 1fr) !important; }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .port-hero, .port-wide { grid-row: span 1 !important; grid-column: span 1 !important; }
  .port-item { min-height: 280px !important; }
  .port-desc { display: block !important; }
  .portfolio-header { flex-direction: column !important; align-items: flex-start !important; }

  .process-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .process-new-header { margin-bottom: 32px !important; }
  .process-card { min-height: 280px !important; }

  .testimonials-grid { grid-template-columns: 1fr !important; }

  .contact-inner { grid-template-columns: 1fr !important; gap: 40px !important; }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 40px 24px 32px !important;
  }
  .footer-bottom {
    padding: 16px 24px !important;
    flex-direction: column !important;
    text-align: center !important;
  }
  .section-sep { padding: 0 24px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  section { padding: 52px 18px !important; }

  .hero-headline { font-size: 28px !important; letter-spacing: 1px !important; }
  .hero-sub { font-size: 15px !important; }
  .hero-btns { flex-direction: column !important; align-items: stretch !important; }
  .btn-primary, .btn-outline { text-align: center !important; width: 100% !important; padding: 16px 20px !important; }
  .hero-logo { width: 90px !important; height: 90px !important; }
  .hero-logo-title { font-size: 11px !important; letter-spacing: 1.5px !important; }

  .stat-num { font-size: 32px !important; }
  .stat-label { font-size: 9px !important; }

  .services-grid { grid-template-columns: 1fr !important; }
  .sc-consultation { grid-column: span 1 !important; }
  .service-card { min-height: 280px !important; }

  .plan-card { min-height: 380px !important; }

  .port-item { min-height: 240px !important; }
  .port-title { font-size: 14px !important; }

  .process-cards-grid { grid-template-columns: 1fr !important; }
  .pc-num { font-size: 36px !important; }
  .pc-name { font-size: 16px !important; }

  .testi-text { font-size: 15px !important; }

  .form-row { grid-template-columns: 1fr !important; }
  .section-title { font-size: 24px !important; }

  .footer-top { grid-template-columns: 1fr !important; }
  .footer-brand img { height: 52px !important; width: 52px !important; }

  .about-features { grid-template-columns: 1fr !important; gap: 12px !important; }
  .values-strip { grid-template-columns: 1fr 1fr !important; }
  .value-item { padding: 20px 12px !important; font-size: 9px !important; }

  .section-sep { display: none; }
  .nav-logo img { height: 44px !important; width: 44px !important; }

  .footer-links-col ul li a { font-size: 10px !important; letter-spacing: 1px !important; }
}