/* =========================================================
   Dawnebridge Consulting Limited — Main Stylesheet
   Theme: Luxury Corporate | Navy + Gold | Playfair Display
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:        #0D2B5E;
  --navy-dark:   #071A3D;
  --navy-mid:    #1B4F9B;
  --navy-light:  #EBF0FA;
  --gold:        #C9A84C;
  --gold-light:  #F0D98A;
  --gold-dark:   #A07A28;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --text:        #1A1A2E;
  --text-muted:  #5A6480;
  --border:      #DDE3F0;
  --shadow-sm:   0 2px 12px rgba(13,43,94,0.08);
  --shadow-md:   0 8px 32px rgba(13,43,94,0.12);
  --shadow-lg:   0 20px 60px rgba(13,43,94,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--light { background: var(--off-white); }
.section--gold { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3d6e 100%); color: var(--white); }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.text-white p { color: rgba(255,255,255,0.8); }

.section-label { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; max-width: 600px; margin-bottom: 48px; }
.section-header { text-align: center; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* Gold underline accent */
.title-accent { position: relative; display: inline-block; }
.title-accent::after { content:''; position: absolute; bottom: -6px; left: 0; width: 64px; height: 3px; background: var(--gold); border-radius: 2px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: var(--white); color: var(--navy); }
.btn--accent { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn--accent:hover { background: var(--gold-dark); }
.btn--sm { padding: 9px 20px; font-size: 0.82rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar { background: var(--navy-dark); color: rgba(255,255,255,0.75); font-size: 0.8rem; padding: 8px 0; }
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar__left { display: flex; align-items: center; gap: 16px; }
.top-bar__left a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.top-bar__left a:hover { color: var(--gold); }
.top-bar__left .divider { opacity: 0.3; }
.top-bar__right { display: flex; gap: 14px; }
.top-bar__right a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.top-bar__right a:hover { color: var(--gold); }
.top-bar__left i, .top-bar__right i { margin-right: 5px; color: var(--gold); }

/* ── Header / Nav ────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark { width: 42px; height: 42px; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; border-radius: 6px; flex-shrink: 0; }
.logo--white .logo__mark { background: var(--gold); color: var(--navy-dark); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.logo__sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.logo--white .logo__name { color: var(--white); }
.logo--white .logo__sub { color: rgba(255,255,255,0.6); }

.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link { padding: 8px 14px; border-radius: 6px; font-size: 0.88rem; font-weight: 500; color: var(--text); transition: var(--transition); position: relative; }
.nav__link:hover, .nav__link.active { color: var(--navy); }
.nav__link.active::after { content:''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px; background: var(--gold); border-radius: 1px; }
.nav__link:hover { background: var(--navy-light); }
.nav__link i { font-size: 0.65rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); z-index: 500; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 18px; font-size: 0.85rem; color: var(--text-muted); border-radius: 4px; transition: var(--transition); }
.dropdown li a:hover { background: var(--navy-light); color: var(--navy); padding-left: 22px; }
.dropdown li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown li:last-child a { border-radius: 0 0 var(--radius) var(--radius); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); 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); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero { position: relative; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3f73 100%); color: var(--white); padding: 120px 0 100px; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero__shape { position: absolute; right: -60px; top: -60px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); pointer-events: none; }
.hero__shape2 { position: absolute; left: -100px; bottom: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.hero__badge::before { content:''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero__lead { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 40px; }
.hero__stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero__stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero__stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero__visual { position: relative; }
.hero__card-stack { position: relative; }
.hero__card { background: rgba(255,255,255,0.07); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 28px; }
.hero__card-main { z-index: 2; position: relative; }
.hero__card-float { position: absolute; right: -24px; bottom: -28px; background: var(--gold); color: var(--navy-dark); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md); }
.hero__card-float .num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.hero__card-float .label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.hero__services-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.hero__svc { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,0.05); border-radius: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.hero__svc i { color: var(--gold); width: 16px; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar { background: var(--navy-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.trust-item i { color: var(--gold); font-size: 1.1rem; }

/* ── Services ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); transform: scaleX(0); transition: var(--transition); transform-origin: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--navy-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { width: 56px; height: 56px; background: var(--navy-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .service-card__icon { background: var(--navy); }
.service-card__icon i { font-size: 1.3rem; color: var(--navy); transition: var(--transition); }
.service-card:hover .service-card__icon i { color: var(--gold); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.service-card__link { font-size: 0.83rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-card__link:hover { color: var(--gold-dark); gap: 10px; }

/* ── Why Choose Us ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why__content .section-subtitle { margin-bottom: 32px; }
.why__points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why__point { display: flex; gap: 16px; }
.why__point-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why__point-icon i { color: var(--navy-dark); font-size: 1rem; }
.why__point h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--navy); }
.why__point p { font-size: 0.85rem; }
.why__visual { position: relative; }
.why__image-frame { background: linear-gradient(135deg, var(--navy-light) 0%, var(--border) 100%); border-radius: var(--radius-lg); padding: 40px; min-height: 420px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.why__stat-card { background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; }
.why__stat-card i { font-size: 1.4rem; color: var(--navy); }
.why__stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.why__stat-label { font-size: 0.78rem; color: var(--text-muted); }
.why__stat-card.highlight { background: var(--navy); }
.why__stat-card.highlight .why__stat-num { color: var(--gold); }
.why__stat-card.highlight .why__stat-label { color: rgba(255,255,255,0.6); }
.why__stat-card.highlight i { color: var(--gold); }

/* ── Process ─────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; position: relative; }
.process-steps::before { content:''; position: absolute; top: 28px; left: 80px; right: 80px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--navy-mid)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num { width: 56px; height: 56px; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 3px solid var(--gold); box-shadow: 0 0 0 4px var(--white); }
.process-step h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--navy); }
.process-step p { font-size: 0.82rem; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card__text { font-size: 0.92rem; color: rgba(255,255,255,0.85); font-style: italic; line-height: 1.8; margin-bottom: 24px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--navy-dark); font-size: 1rem; flex-shrink: 0; }
.testimonial-card__name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.testimonial-card__company { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── Team ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card__photo { height: 220px; background: linear-gradient(135deg, var(--navy-light), var(--border)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__initials { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--navy); opacity: 0.3; }
.team-card__body { padding: 20px; }
.team-card__name { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.team-card__bio { font-size: 0.82rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.team-card__linkedin { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.8rem; color: var(--navy-mid); font-weight: 500; }
.team-card__linkedin:hover { color: var(--gold-dark); }

/* ── Blog ────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__image { height: 200px; background: linear-gradient(135deg, var(--navy-light), var(--border)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card__cat { position: absolute; top: 14px; left: 14px; background: var(--navy); color: var(--gold); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 100px; }
.blog-card__image-icon { font-size: 3rem; color: var(--navy); opacity: 0.15; }
.blog-card__body { padding: 24px; }
.blog-card__meta { display: flex; gap: 16px; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card__meta i { color: var(--gold); }
.blog-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--navy); line-height: 1.4; }
.blog-card p { font-size: 0.85rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.83rem; font-weight: 600; color: var(--navy); transition: var(--transition); }
.blog-card__link:hover { color: var(--gold-dark); gap: 10px; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner { text-align: center; padding: 96px 0; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h3 { margin-bottom: 16px; color: var(--navy); }
.contact-info p { margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail__icon { width: 42px; height: 42px; background: var(--navy-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail__icon i { color: var(--navy); }
.contact-detail h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail a, .contact-detail p { font-size: 0.92rem; color: var(--text); }

/* ── Forms ───────────────────────────────────────────────── */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
label span.req { color: #e53e3e; }
input, textarea, select { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; color: var(--text); transition: var(--transition); background: var(--white); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(27,79,155,0.1); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-msg { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius); font-size: 0.87rem; font-weight: 500; display: none; }
.form-msg.success { background: #e6f9f0; color: #1a7a4a; border: 1px solid #b3e8ce; display: block; }
.form-msg.error { background: #fef3f2; color: #c0392b; border: 1px solid #f5c6c6; display: block; }

/* ── Hero page banner (inner pages) ─────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 64px 0; color: var(--white); text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; }

/* ── Services detail page ────────────────────────────────── */
.service-detail { padding: 80px 0; }
.service-detail-card { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--border); }
.service-detail-card:last-child { border-bottom: none; margin-bottom: 0; }
.service-detail-card:nth-child(even) { direction: rtl; }
.service-detail-card:nth-child(even) > * { direction: ltr; }
.service-icon-lg { width: 80px; height: 80px; background: var(--navy-light); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon-lg i { font-size: 2rem; color: var(--navy); }
.service-detail-card h2 { font-size: 1.7rem; margin-bottom: 14px; color: var(--navy); }
.service-detail-card p { margin-bottom: 16px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.service-feature { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }
.service-feature i { color: var(--gold); flex-shrink: 0; }
.service-visual { background: linear-gradient(135deg, var(--navy-light), var(--border)); border-radius: var(--radius-lg); min-height: 320px; display: flex; align-items: center; justify-content: center; }
.service-visual i { font-size: 5rem; color: var(--navy); opacity: 0.15; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: var(--white); }
.footer__top { padding: 80px 0 56px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 48px; }
.footer__tagline { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 16px 0 20px; line-height: 1.6; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer__socials a:hover { background: var(--gold); color: var(--navy-dark); }
.footer__heading { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 20px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__col--newsletter p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 8px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: var(--white); border-radius: var(--radius); padding: 10px 14px; font-size: 0.85rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); outline: none; }
.newsletter-msg { font-size: 0.8rem; color: var(--gold-light); min-height: 18px; }
.footer__contact { margin-top: 20px; }
.footer__contact p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
.footer__contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,0.5); }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer__bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--gold); }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); z-index: 999; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.back-to-top { position: fixed; bottom: 90px; right: 28px; width: 42px; height: 42px; background: var(--navy); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; box-shadow: var(--shadow-sm); transition: var(--transition); z-index: 998; opacity: 0; visibility: hidden; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy-dark); }

/* ── Alerts / Loaders ────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 20px; }
.alert--success { background: #e6f9f0; color: #1a7a4a; border: 1px solid #b3e8ce; }
.alert--error { background: #fef3f2; color: #c0392b; border: 1px solid #f5c6c6; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Animations ──────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why__visual { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); box-shadow: var(--shadow-lg); padding: 80px 24px 32px; transition: right 0.3s ease; z-index: 1100; overflow-y: auto; }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav__link { display: block; padding: 10px 14px; }
  .dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; border: none; transform: none; background: var(--off-white); border-radius: var(--radius); margin-top: 4px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar { display: none; }
  .hero { padding: 80px 0 64px; min-height: auto; }
  .hero__stats { gap: 24px; }
  .trust-bar__inner { gap: 24px; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) { direction: ltr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
}
