/* ================================================================
   Crystal Financial LLC – style.css
   All styles for the Crystal Financial LLC website
================================================================ */

/* ================================================================
   CSS VARIABLES & DESIGN TOKENS
================================================================ */
:root {
  --navy:            #0d1b2a;
  --navy-mid:        #16304a;
  --gold:            #fcb312;
  --gold-lt:         #ffde8a;
  --gold-dk:         #e8a800;
  --cream:           #faf8f4;
  --white:           #ffffff;
  --muted:           #6b7280;
  --error:           #e74c3c;
  --success:         #27ae60;

  /* Premium gradient gold – used throughout */
  --gold-gradient:   linear-gradient(135deg, #fcb312 0%, #ffde8a 50%, #fcb312 100%);
  --gold-grad-hover: linear-gradient(135deg, #ffde8a 0%, #fcb312 50%, #ffde8a 100%);

  --border:          rgba(252,179,18,0.25);
  --shadow:          0 8px 40px rgba(13,27,42,0.12);
  --shadow-lg:       0 18px 60px rgba(13,27,42,0.18);
  --radius:          10px;
  --font-h:          'Cormorant Garamond', Georgia, serif;
  --font-b:          'DM Sans', sans-serif;
  --transition:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-b); background: var(--cream); color: var(--navy); line-height: 1.7; }
img   { display: block; width: 100%; }
a     { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); }

/* ================================================================
   SCROLL ANIMATION SYSTEM
   Elements get [data-animate] attribute; JS adds .in-view on scroll
================================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-in"]    { transform: translateY(0px); }
[data-animate="zoom-in"]    { transform: scale(0.93); }
[data-animate="slide-left"] { transform: translateX(-40px); }
[data-animate="slide-right"]{ transform: translateX(40px); }

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

/* Staggered delay for card grids */
[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"] { transition-delay: 0.40s; }
[data-delay="5"] { transition-delay: 0.50s; }

/* ================================================================
   NAVIGATION
================================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(13,27,42,0.97); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 72px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-h); font-size: 1.35rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.03em; line-height: 1.2;
}
.nav-logo span {
  display: block; font-size: 0.7rem; font-family: var(--font-b);
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.78);
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-cta {
  background: var(--gold-gradient); color: var(--navy); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px; transition: var(--transition);
  background-size: 200% auto;
}
.nav-cta:hover { background-position: right center; box-shadow: 0 4px 16px rgba(252,179,18,0.35); }

/* ── Hamburger (mobile) ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; 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 drawer ── */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(13,27,42,0.99); border-bottom: 1px solid var(--border);
  padding: 24px 6vw 28px; z-index: 998;
  flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07); transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav .mob-cta {
  margin-top: 18px; background: var(--gold-gradient); color: var(--navy);
  text-align: center; border-radius: 4px; font-weight: 600; border-bottom: none !important;
}

/* ================================================================
   PAGE SYSTEM
================================================================ */
.page { display: none; padding-top: 72px; }
.page.active { display: block; }

/* ================================================================
   UTILITY CLASSES
================================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 6vw; }
.section    { padding: 90px 0; }

.label {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.label::before { content: '— '; }

h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.18; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.55rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p.lead { font-size: 1.08rem; color: var(--muted); max-width: 620px; line-height: 1.8; }

/* Gradient gold text utility */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Media Gallery Section – Cross-Browser Fix ── */
.media-gallery-bg { background: var(--white); }

.media-gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-top: 12px;
  align-items: start;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.media-gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.media-gallery-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 420px;
  border-radius: var(--radius);
  -webkit-border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: box-shadow 0.35s ease, -webkit-transform 0.35s ease;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  /* Safari clip fix */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.media-gallery-inner:hover {
  -webkit-transform: translateY(-6px) translateZ(0);
  transform: translateY(-6px) translateZ(0);
  box-shadow: var(--shadow-lg);
}

/* Images: fill container, never overflow */
.media-gallery-inner img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Video: match image column heights, never overflow */
.media-gallery-inner video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  background: #000;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.media-gallery-caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
  word-break: break-word;
}

/* ── Tablet: 2 columns ── */
@media screen and (max-width: 900px) {
  .media-gallery-grid {
    -ms-grid-columns: 1fr 22px 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    grid-gap: 22px;
  }
  .media-gallery-grid .media-gallery-item:last-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / -1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

/* ── Mobile: 1 column ── */
@media screen and (max-width: 580px) {
  .media-gallery-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    grid-gap: 18px;
  }
  .media-gallery-grid .media-gallery-item:last-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: auto;
    max-width: 100%;
  }
  .media-gallery-inner {
    height: 260px;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px;
  transition: var(--transition); cursor: pointer; border: none;
  background-size: 200% auto;
}
/* Premium gradient gold button */
.btn-gold {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: var(--navy);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252,179,18,0.4);
}
.btn-outline {
  border: 2px solid var(--gold); color: var(--gold); background: transparent;
}
.btn-outline:hover {
  background: var(--gold-gradient); color: var(--navy); border-color: transparent;
}
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gold-gradient); background-size: 200% auto; }
.btn-navy { background: var(--navy); color: var(--gold); border: 2px solid var(--navy); }
.btn-navy:hover { background: var(--navy-mid); }

/* Button loading / disabled state */
.btn:disabled, .btn.loading {
  opacity: 0.75; cursor: not-allowed; transform: none !important;
  box-shadow: none !important;
}

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── Photo placeholders (for images not yet uploaded) ── */
.photo-placeholder {
  background: linear-gradient(135deg, #dce8f0 0%, #c5d9e8 100%);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px;
  color: #7096b2; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-align: center;
}

/* Profile image containers */
.profile-card            { height: 580px; width: 100%; }
.profile-card img        { width: 100%; height: 100%; object-fit: cover; }
.profile-card-about      { height: 560px; width: 100%; }
.profile-card-about img  { width: 100%; height: 100%; object-fit: cover; }
.profile-card-about-hero { height: 100%; width: 100%; }
.profile-card-about-hero img { width: 100%; height: 100%; object-fit: cover; }
.profile-card-services   { height: 100%; width: 100%; }
.profile-card-services img { width: 100%; height: 100%; object-fit: cover; }
.profile-card-services2  { height: 100%; width: 100%; }
.profile-card-services2 img { width: 100%; height: 100%; object-fit: cover; }
.profile-card-services3  { height: 100%; width: 100%; }
.profile-card-services3 img { width: 100%; height: 100%; object-fit: cover; }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 30px; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card h4 { margin-bottom: 10px; }
.card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── Divider ── */
.divider {
  width: 60px; height: 3px;
  background: var(--gold-gradient);
  margin: 18px 0 28px; border-radius: 2px;
}
.divider.center { margin: 18px auto 28px; }

/* ── Check list ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.check-list li::before { content: '✔'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow); border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote {
  font-size: 3.5rem; font-family: var(--font-h); line-height: 1; margin-bottom: 10px;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.testimonial-card p { font-size: 0.97rem; color: #374151; line-height: 1.8; font-style: italic; margin-bottom: 18px; }
.testimonial-card .author { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.stars { font-size: 0.95rem; margin-bottom: 12px;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Step items ── */
.step-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-num.gold-bg {
  background: var(--gold-gradient); color: var(--navy);
}
.step-content h4 { margin-bottom: 6px; }
.step-content p  { font-size: 0.9rem; color: var(--muted); }

/* ── Section header (centered) ── */
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { margin-bottom: 12px; }
.section-head .lead { margin: 0 auto; }

/* ================================================================
   HOME PAGE
================================================================ */

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 72px); background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="g" cx="70%25" cy="40%25" r="60%25"><stop offset="0%25" stop-color="%23fcb312" stop-opacity="0.1"/><stop offset="100%25" stop-color="%230d1b2a" stop-opacity="0"/></radialGradient></defs><rect fill="url(%23g)" width="1200" height="800"/></svg>') center/cover;
}
.hero::after {
  content: ''; position: absolute; right: -120px; top: 15%;
  width: 500px; height: 500px;
  border: 1.5px solid rgba(252,179,18,0.18); border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(252,179,18,0.12); border: 1px solid var(--border);
  padding: 7px 18px; border-radius: 50px; margin-bottom: 20px; margin-top: 28px;
}
.hero-eyebrow span {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 10px; }
.hero h1 em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 500px; margin: 18px 0 36px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid rgba(252,179,18,0.2);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-h); font-size: 2.2rem; font-weight: 700; line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55); font-weight: 500;
}
.hero-img-wrap { position: relative; }
.hero-photo  { height: 580px; border-radius: 12px; overflow: hidden; }
.hero-badge {
  position: absolute; bottom: 30px; left: -30px;
  background: var(--white); border-radius: 10px; padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.hero-badge-text strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.hero-badge-text span   { font-size: 0.75rem; color: var(--muted); }

/* ── Marquee ── */
.marquee-strip { background: var(--gold-gradient); padding: 14px 0; overflow: hidden; }
.marquee-inner {
  display: flex; gap: 40px;
  animation: marquee 22s linear infinite; white-space: nowrap;
}
.marquee-inner span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: 12px;
}
.marquee-inner span::after { content: '•'; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Why Crystal ── */
.why-bg { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  padding: 28px 24px; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07); background: var(--cream);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.why-card h4 { font-size: 1rem; margin-bottom: 6px; }
.why-card p  { font-size: 0.85rem; color: var(--muted); }

/* ── Services preview (dark) ── */
.services-preview-bg { background: var(--navy); }
.services-preview-bg .label { color: var(--gold); }
.services-preview-bg .lead  { color: rgba(255,255,255,0.65); }
.service-card-dark {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(252,179,18,0.2);
  border-radius: var(--radius); padding: 36px 28px; transition: var(--transition);
}
.service-card-dark:hover {
  background: rgba(252,179,18,0.08); border-color: var(--gold);
  transform: translateY(-6px);
}
.service-card-dark h3 { color: var(--white); margin-bottom: 12px; font-size: 1.25rem; }
.service-card-dark p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 20px; }
.service-card-dark ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-card-dark ul li {
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
  display: flex; gap: 8px;
}
.service-card-dark ul li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.service-card-dark .goal-badge {
  margin-top: 20px; padding: 8px 14px;
  background: rgba(252,179,18,0.12); border-radius: 4px;
  font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em;
}

/* ── Steps grid ── */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

/* ── CTA Band ── */
.cta-band {
  background: var(--gold-gradient);
  background-size: 200% auto;
  padding: 80px 0; text-align: center;
}
.cta-band h2 { color: var(--navy); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.cta-band p  { color: rgba(13,27,42,0.75); max-width: 580px; margin: 0 auto 32px; }

.testimonials-bg { background: var(--cream); }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-hero { background: var(--navy); padding: 110px 0 80px; }
.about-hero-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.about-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.5rem); }
.about-hero .lead  { color: rgba(255,255,255,0.7); max-width: 100%; }
.about-hero p { color: rgba(255,255,255,0.65); line-height: 1.85; margin-top: 16px; }
.about-photo-wrap { position: relative; }
.about-photo { height: 100%; border-radius: 12px; overflow: hidden; }
.about-photo-badge {
  position: absolute; top: 30px; right: -20px;
  background: var(--gold-gradient); color: var(--navy);
  border-radius: 10px; padding: 18px 22px;
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 700;
  text-align: center; line-height: 1.2;
  box-shadow: 0 8px 28px rgba(252,179,18,0.4);
}
.about-photo-badge small {
  display: block; font-family: var(--font-b); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
}

.mission-bg { background: var(--white); }
.mission-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.value-item { text-align: center; padding: 32px 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.value-item .v-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-item h4 { margin-bottom: 8px; }
.value-item p  { font-size: 0.88rem; color: var(--muted); }

.credentials-bg { background: var(--cream); }
.cred-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.cred-list { display: flex; flex-direction: column; gap: 16px; }
.cred-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px; background: var(--white);
  border-radius: var(--radius); box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.cred-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cred-icon {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.cred-text strong { display: block; font-weight: 600; margin-bottom: 3px; }
.cred-text span   { font-size: 0.85rem; color: var(--muted); }

/* ================================================================
   SERVICES PAGE
================================================================ */
.services-hero { background: var(--navy); padding: 110px 0 80px; text-align: center; }
.services-hero h1 { color: var(--white); }
.services-hero .lead { color: rgba(255,255,255,0.68); margin: 0 auto; }

.services-main { background: var(--white); }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 70px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-num {
  font-family: var(--font-h); font-size: 5rem; font-weight: 700;
  line-height: 1; margin-bottom: -10px;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-photo { height: 380px; border-radius: var(--radius); overflow: hidden; }

.process-bg  { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }

/* ── FAQ Accordion ── */
.faq-bg { background: var(--white); }
.faq-list { display: flex; flex-direction: column; max-width: 820px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  padding: 22px 0; font-weight: 600; font-size: 1rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none; gap: 16px;
}
.faq-q .faq-icon { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; transition: var(--transition); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.35s ease; }
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }

/* ── Pricing ── */
.pricing-bg { background: var(--navy); }
.pricing-bg .label { color: var(--gold); }
.pricing-bg .lead  { color: rgba(255,255,255,0.65); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.pricing-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(252,179,18,0.2);
  border-radius: var(--radius); padding: 40px 32px; text-align: center; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.pricing-card.featured {
  background: var(--gold-gradient); border-color: transparent;
  transform: scale(1.04);
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured p { color: var(--navy) !important; }
.pricing-card.featured ul li { color: var(--navy) !important; }
.pricing-card.featured ul li::before { color: var(--navy) !important; }
.pricing-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; }
.pricing-card .price {
  font-family: var(--font-h); font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.pricing-card .price sub { font-size: 1rem; }
.pricing-card p  { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin: 10px 0 24px; }
.pricing-card ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card ul li { font-size: 0.88rem; color: rgba(255,255,255,0.8); display: flex; gap: 8px; }
.pricing-card ul li::before { content: '✔'; color: var(--gold); flex-shrink: 0; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-hero { background: var(--navy); padding: 100px 0 70px; text-align: center; }
.contact-hero h1 { color: var(--white); }
.contact-hero .lead { color: rgba(255,255,255,0.68); margin: 0 auto; }

.contact-main { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 70px; align-items: start; padding: 80px 0;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px; background: var(--cream);
  border-radius: var(--radius); border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.contact-info-item .ci-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-weight: 600; margin-bottom: 3px; }
.contact-info-item span   { font-size: 0.9rem; color: var(--muted); }
.contact-info-item a { color: var(--navy); font-weight: 500; }
.contact-info-item a:hover { color: var(--gold); }

.availability { background: var(--navy); border-radius: var(--radius); padding: 28px; margin-top: 8px; }
.availability h4 { font-size: 1rem; margin-bottom: 14px;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.avail-row {
  display: flex; justify-content: space-between; font-size: 0.88rem;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}
.avail-row:last-child { border-bottom: none; }

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--cream); border-radius: var(--radius);
  padding: 50px 44px; box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap .form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: 6px;
  font-family: var(--font-b); font-size: 0.92rem; color: var(--navy);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(252,179,18,0.15);
}
.form-group input.error,
.form-group select.error { border-color: var(--error); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; justify-content: center; font-size: 0.88rem; padding: 16px; }
.form-note   { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* Form feedback messages */
.form-feedback {
  display: none; padding: 14px 18px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; margin-top: 14px; text-align: center;
}
.form-feedback.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-feedback.error   { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Full success screen */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p  { color: var(--muted); font-size: 0.95rem; }

/* ── Map section ── */
.map-section { background: var(--cream); padding: 0 0 80px; }
.map-placeholder { height: 360px; border-radius: var(--radius); overflow: hidden; margin-top: 50px; }

/* ================================================================
   FOOTER
================================================================ */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 240px; }
.footer-col h5 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em;
  font-weight: 600; margin-bottom: 16px;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition);
}
.social-btn:hover { background: var(--gold-gradient); border-color: transparent; color: var(--navy); }

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}

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

/* ================================================================
   CF PRICING SECTION  – new section after services-main
   Uses only new class names (cf-*) to avoid touching existing styles
================================================================ */

/* Section wrapper – deep navy background */
.cf-pricing-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind the cards */
.cf-pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(252,179,18,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Override inherited section-head colours for dark bg */
.cf-pricing-section .section-head { position: relative; }
.cf-pricing-label { color: var(--gold) !important; }
.cf-pricing-heading { color: var(--white); }
.cf-pricing-sub { color: rgba(255,255,255,0.62); }

/* 2-column grid */
.cf-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

/* Individual card */
.cf-pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(252,179,18,0.30);
  border-radius: var(--radius);
  padding: 44px 38px 38px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Gold shimmer line at the top of each card */
.cf-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

/* Lift on hover */
.cf-pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 64px rgba(13,27,42,0.40), 0 0 0 1px rgba(252,179,18,0.18);
}

/* Badge (Most Popular / Best Value) */
.cf-card-badge {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  background: var(--gold-gradient);
  color: var(--navy);
  margin-bottom: 18px;
  width: fit-content;
}
.cf-badge-alt {
  background: rgba(252,179,18,0.12);
  color: var(--gold);
  border: 1px solid rgba(252,179,18,0.35);
}

/* Card title */
.cf-card-title {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Price display */
.cf-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.cf-price-amount {
  font-family: var(--font-h);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cf-price-period {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  font-weight: 400;
}

/* Short description */
.cf-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Feature list */
.cf-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1; /* pushes button to bottom */
}
.cf-card-features li {
  font-size: 0.89rem;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.cf-card-features li::before {
  content: '✔';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* CTA button – full width */
.cf-card-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.06em;
}

/* Trust note below the grid */
.cf-pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em;
}

/* ── Responsive: stack cards on mobile ── */
@media (max-width: 900px) {
  .cf-pricing-grid { grid-template-columns: 1fr; gap: 24px; }
}


@media (max-width: 900px) {
  .hero-inner, .grid-2, .grid-3, .grid-4, .why-grid, .about-hero-grid,
  .cred-grid, .service-block, .contact-grid, .footer-grid,
  .pricing-grid, .process-grid, .why-cards, .mission-values {
    grid-template-columns: 1fr; gap: 32px;
  }
  .service-block.reverse { direction: ltr; }
  .hero-stats  { flex-wrap: wrap; gap: 20px; }
  .hero-photo  { height: 320px; }
  .hero-badge  { left: 0; bottom: 20px; }
  .pricing-card.featured { transform: none; }
  .form-row    { grid-template-columns: 1fr; }
  nav          { padding: 0 4vw; }
  .nav-links, .nav-cta { display: none; }
  .hamburger   { display: flex; }
  .contact-grid { padding: 50px 0; }
  .contact-form-wrap { padding: 32px 22px; }
  .about-photo-badge { top: auto; bottom: 20px; right: 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.98rem; }
  .hero-btns .btn { font-size: 0.76rem; padding: 12px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}
