/* ═══════════════════════════════════════
   EARNINGS N YOU — Main Stylesheet
   ═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #F5B800;
  --gold-dk: #D9A200;
  --gold-lt: #FDD03A;
  --charcoal: #1A1A1A;
  --charcoal2: #2D2D2D;
  --white: #FFFFFF;
  --offwhite: #F8F8F6;
  --offwhite2: #F2F2F0;
  --gray: #6B7280;
  --gray2: #9CA3AF;
  --lightgray: #E5E5E3;
  --section-gap: 6rem;
}

html { scroll-behavior: smooth; }
body { font-family: "DM Sans", Arial, sans-serif; color: var(--charcoal2); background: var(--white); overflow-x: hidden; font-size: 16px; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ── SCROLL PROGRESS ── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 9999; width: 0%; transition: width 0.1s linear; }

/* ── TOPBAR ── */
.topbar { background: var(--charcoal); padding: 0.45rem 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { font-size: 0.72rem; color: #AAA; text-decoration: none; display: flex; align-items: center; gap: 0.45rem; transition: color 0.2s; }
.topbar-left i { color: var(--gold); font-size: 0.65rem; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 0.5rem; }
.tsoc { width: 26px; height: 26px; border-radius: 50%; border: 1px solid #444; display: flex; align-items: center; justify-content: center; color: #777; font-size: 0.7rem; text-decoration: none; transition: all 0.2s; }
.tsoc:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); background: rgba(245,184,0,0.08); }

/* ── NAV ── */
nav { background: var(--white); border-bottom: 2px solid var(--gold); display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; height: 76px; position: sticky; top: 0; z-index: 100; transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.nav-logo img { height: 68px; width: auto; display: block; transition: transform 0.3s; }
.nav-logo img:hover { transform: scale(1.03); }
nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav ul a { text-decoration: none; font-size: 0.8rem; font-weight: 600; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; cursor: pointer; position: relative; padding-bottom: 2px; }
nav ul a::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.25s ease; }
nav ul a:hover { color: var(--charcoal); }
nav ul a:hover::after, nav ul a.active::after { width: 100%; }
nav ul a.active { color: var(--charcoal); }
.nav-cta { background: var(--gold) !important; color: var(--charcoal) !important; padding: 0.5rem 1.35rem; border-radius: 2px; font-weight: 700 !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dk) !important; color: var(--charcoal) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal2); border-radius: 2px; transition: all 0.3s; }
.mobile-nav { display: none; flex-direction: column; background: var(--white); padding: 1.25rem 5vw; border-bottom: 1px solid var(--lightgray); gap: 0.85rem; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.mobile-nav a { text-decoration: none; font-size: 0.88rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35rem 0; border-bottom: 1px solid var(--lightgray); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav.open { display: flex; }

/* ── COMMON ── */
.eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.section-title { font-family: "Montserrat", sans-serif; font-size: clamp(1.6rem, 2.5vw, 2.3rem); font-weight: 800; color: var(--charcoal); line-height: 1.18; margin-bottom: 0.85rem; }
.section-sub { font-size: 1rem; color: var(--gray); line-height: 1.75; }
.btn-gold { background: var(--gold); color: var(--charcoal); padding: 0.85rem 2rem; border-radius: 2px; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; border: none; }
.btn-gold:hover { background: var(--gold-dk); }
.btn-gold:active { transform: scale(0.97); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); padding: 0.85rem 2rem; border-radius: 2px; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; cursor: pointer; background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }
.btn-dark { background: var(--charcoal); color: var(--white); padding: 0.9rem 2.25rem; border-radius: 2px; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; border: none; }
.btn-dark:hover { background: #111; }
.btn-dark:active { transform: scale(0.97); }
.page-hero { background: var(--charcoal); padding: 5rem 5vw 4rem; text-align: center; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: "Montserrat", sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: #FFF; margin-top: 0.5rem; line-height: 1.15; }
.page-hero p { color: #999; font-size: 1.05rem; margin-top: 1rem; max-width: 600px; margin-inline: auto; line-height: 1.75; }
.cta-banner { background: var(--gold); padding: 4rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.cta-banner h2 { font-family: "Montserrat", sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--charcoal); }
.cta-banner p { font-size: 1rem; color: rgba(30,30,30,0.75); margin-top: 0.4rem; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── HERO (index only) ── */
.hero { display: grid; grid-template-columns: 48% 52%; min-height: calc(100vh - 116px); }
.hero-left { background: var(--charcoal); padding: 4vw 3vw 4vw 5vw; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem; animation: heroUp 0.7s 0.1s both; }
.hero-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); display: inline-block; flex-shrink: 0; }
.hero h1 { font-family: "Montserrat", sans-serif; font-size: clamp(1.9rem, 3vw, 3rem); font-weight: 800; line-height: 1.1; color: #FFF; margin-bottom: 1.25rem; letter-spacing: -0.02em; animation: heroUp 0.7s 0.25s both; }
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 1.05rem; line-height: 1.8; color: #AAA; margin-bottom: 0.75rem; max-width: 480px; animation: heroUp 0.7s 0.4s both; }
.hero-sub strong { color: #CCC; font-weight: 600; }
.hero-tagline { font-size: 0.88rem; color: #777; line-height: 1.7; margin-bottom: 2rem; max-width: 460px; animation: heroUp 0.7s 0.5s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; animation: heroUp 0.7s 0.55s both; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; animation: heroUp 0.7s 0.7s both; }
.trust-pill { font-size: 0.75rem; color: #888; display: flex; align-items: center; gap: 0.4rem; }
.trust-pill i { color: var(--gold); font-size: 0.65rem; }
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; }
.hero-right::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,26,26,0.5) 0%, transparent 35%); }

/* ── TRUST STRIP ── */
.trust-strip { background: rgba(15,15,15,0.97); border-top: 2px solid var(--gold); padding: 1.1rem 5vw; display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-strip-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: rgba(245,184,0,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.trust-strip-title { font-family: "Montserrat", sans-serif; font-weight: 700; color: #FFF; font-size: 0.88rem; white-space: nowrap; }
.trust-strip-items { display: flex; gap: 2rem; flex-wrap: wrap; flex: 1; }
.trust-strip-items span { font-size: 0.82rem; color: #CCC; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.trust-strip-items span:hover { color: var(--gold); }
.trust-strip-items i { color: var(--gold); font-size: 0.65rem; }

/* ── HOME SERVICES ── */
.home-services { padding: var(--section-gap) 5vw; background: var(--offwhite); }
.home-services-header { text-align: center; margin-bottom: 3.5rem; }
.home-srv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.home-srv-card { background: var(--white); border: 1.5px solid var(--lightgray); border-radius: 4px; padding: 1.85rem 1.6rem; cursor: pointer; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, border-color 0.3s; text-decoration: none; display: block; color: inherit; }
.home-srv-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 16px 48px rgba(245,184,0,0.1), 0 4px 16px rgba(0,0,0,0.07); border-color: var(--gold); }
.home-srv-icon { width: 46px; height: 46px; border-radius: 4px; background: rgba(245,184,0,0.1); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1.1rem; transition: background 0.3s, transform 0.3s, color 0.3s; }
.home-srv-card:hover .home-srv-icon { background: var(--gold); color: var(--charcoal); transform: scale(1.1) rotate(-4deg); }
.home-srv-card h3 { font-family: "Montserrat", sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.home-srv-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ── HOW WE WORK ── */
.how-we-work { padding: var(--section-gap) 5vw; background: var(--white); }
.how-we-work-header { text-align: center; margin-bottom: 3.5rem; }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.steps-grid::before { content: ""; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--gold), var(--gold-dk)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; padding: 0 0.75rem; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--charcoal); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: "Montserrat", sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--gold); transition: background 0.3s, transform 0.3s; }
.step:hover .step-num { background: var(--gold); color: var(--charcoal); transform: scale(1.08); }
.step-icon { font-size: 1.25rem; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.step h4 { font-family: "Montserrat", sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; }
.step p { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }

/* ── WHY CHOOSE US ── */
.home-why { padding: var(--section-gap) 5vw; background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.home-why-text .section-title { color: #FFF; }
.home-why-text .section-sub { color: #999; }
.home-why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.why-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; border-radius: 4px; transition: background 0.3s; }
.why-row:hover { background: rgba(255,255,255,0.04); }
.why-row-icon { width: 38px; height: 38px; border-radius: 4px; flex-shrink: 0; background: rgba(245,184,0,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: transform 0.3s, background 0.3s; }
.why-row:hover .why-row-icon { transform: scale(1.12) rotate(-5deg); background: rgba(245,184,0,0.22); }
.why-row h4 { font-family: "Montserrat", sans-serif; font-size: 0.9rem; font-weight: 700; color: #FFF; margin-bottom: 0.3rem; }
.why-row p { font-size: 0.88rem; color: #888; line-height: 1.65; }
.home-why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.wstat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 2rem 1.5rem; text-align: center; transition: transform 0.3s, border-color 0.3s, background 0.3s; }
.wstat:hover { transform: translateY(-4px) scale(1.02); border-color: rgba(245,184,0,0.3); background: rgba(255,255,255,0.07); }
.wstat-num { font-family: "Montserrat", sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; display: inline-block; transition: transform 0.3s; }
.wstat:hover .wstat-num { transform: scale(1.08); }
.wstat-label { font-size: 0.85rem; color: #888; margin-top: 0.5rem; line-height: 1.5; }

/* ── TRUST INDICATORS ── */
.trust-indicators { padding: var(--section-gap) 5vw; background: var(--offwhite2); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.trust-card { background: var(--white); border: 1.5px solid var(--lightgray); border-radius: 4px; padding: 2rem 1.75rem; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.trust-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 12px 36px rgba(245,184,0,0.08); }
.trust-card-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(245,184,0,0.1); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1.25rem; transition: background 0.3s, color 0.3s; }
.trust-card:hover .trust-card-icon { background: var(--gold); color: var(--charcoal); }
.trust-card h3 { font-family: "Montserrat", sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.trust-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ── FAQ ── */
.faq-section { padding: var(--section-gap) 5vw; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; max-width: 960px; margin-inline: auto; }
.faq-item { border: 1.5px solid var(--lightgray); border-radius: 4px; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--gold); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; cursor: pointer; font-family: "Montserrat", sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--charcoal); gap: 1rem; transition: background 0.2s; }
.faq-q:hover { background: var(--offwhite); }
.faq-item.open .faq-q { background: var(--offwhite); color: var(--gold); }
.faq-icon { font-size: 0.75rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 200px; }

/* ── ABOUT ── */
.about-content { padding: var(--section-gap) 5vw; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.about-tan-card { background: var(--charcoal); color: var(--white); border-radius: 4px; padding: 3rem 2.5rem; text-align: center; position: sticky; top: 96px; }
.tan-label { font-size: 0.68rem; color: var(--gold); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.5rem; }
.tan-num { font-family: "Montserrat", sans-serif; font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.tan-sub { font-size: 0.82rem; color: #AAA; margin-top: 0.5rem; margin-bottom: 1.5rem; }
.tan-divider { width: 40px; height: 2px; background: var(--gold); margin: 1.5rem auto; }
.tan-card-p { font-size: 0.93rem; color: #999; line-height: 1.78; }
.about-text-col .section-title { margin-bottom: 1.5rem; }
.about-text-col p { font-size: 1rem; color: var(--gray); line-height: 1.85; margin-bottom: 1.25rem; }
.uae-badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1.5px solid var(--gold); border-radius: 2px; padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 700; color: var(--charcoal); margin-top: 0.5rem; }
.uae-badge i { color: var(--gold); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.ind-card { border: 1.5px solid var(--lightgray); border-radius: 4px; padding: 1.5rem 1.25rem; text-align: center; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.ind-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 24px rgba(245,184,0,0.1); }
.ind-card i { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; display: block; transition: transform 0.3s; }
.ind-card:hover i { transform: scale(1.2); }
.ind-card p { font-size: 0.88rem; color: var(--gray); font-weight: 500; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.srv-card { border: 1.5px solid var(--lightgray); border-radius: 4px; padding: 2.25rem 2rem; position: relative; overflow: hidden; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, border-color 0.3s; text-decoration: none; display: block; color: inherit; }
.srv-card::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width 0.35s ease; }
.srv-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(245,184,0,0.08), 0 4px 16px rgba(0,0,0,0.05); border-color: var(--gold); }
.srv-card:hover::after { width: 100%; }
.srv-num { font-family: "Montserrat", sans-serif; font-size: 0.65rem; font-weight: 700; color: var(--lightgray); letter-spacing: 0.12em; margin-bottom: 1rem; transition: color 0.3s, letter-spacing 0.3s; }
.srv-card:hover .srv-num { color: var(--gold); letter-spacing: 0.2em; }
.srv-icon-wrap { width: 50px; height: 50px; border-radius: 4px; background: rgba(245,184,0,0.1); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.25rem; transition: background 0.3s, color 0.3s, transform 0.3s; }
.srv-card:hover .srv-icon-wrap { background: var(--gold); color: var(--charcoal); transform: scale(1.08); }
.srv-card h3 { font-family: "Montserrat", sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.75rem; }
.srv-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.25rem; }
.srv-link { font-size: 0.78rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 0.35rem; opacity: 0; transition: opacity 0.2s; }
.srv-card:hover .srv-link { opacity: 1; }

/* ── SERVICE DETAIL ── */
.svc-detail-hero { background: var(--charcoal); padding: 4rem 5vw 3.5rem; }
.svc-back { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; font-weight: 700; color: #BBBBBB; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.15); padding: 0.45rem 1rem 0.45rem 0.75rem; border-radius: 2px; transition: all 0.2s; text-decoration: none; display: inline-flex; }
.svc-back:hover { color: var(--gold); border-color: var(--gold); background: rgba(245,184,0,0.06); }
.svc-detail-hero h1 { font-family: "Montserrat", sans-serif; font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 800; color: #FFF; margin-top: 0.5rem; line-height: 1.15; }
.svc-detail-hero p { color: #999; font-size: 1.05rem; margin-top: 1rem; max-width: 620px; line-height: 1.75; }
.svc-detail-content { padding: var(--section-gap) 5vw; display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }
.svc-detail-main h2 { font-family: "Montserrat", sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--charcoal); margin-bottom: 1.25rem; }
.svc-detail-main p { font-size: 1rem; color: var(--gray); line-height: 1.85; margin-bottom: 1.25rem; }
.svc-detail-main ul { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.85rem; }
.svc-detail-main ul li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--gray); line-height: 1.65; }
.svc-detail-main ul li i { color: var(--gold); font-size: 0.75rem; margin-top: 0.3rem; flex-shrink: 0; }
.svc-sidebar { position: sticky; top: 96px; }
.svc-contact-card { background: var(--offwhite); border: 1.5px solid var(--lightgray); border-radius: 4px; padding: 2rem; margin-bottom: 1.5rem; }
.svc-contact-card h3 { font-family: "Montserrat", sans-serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.svc-contact-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.5rem; }
.svc-contact-details { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.svc-cdet { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--gray); }
.svc-cdet i { color: var(--gold); width: 16px; }
.svc-cdet a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.svc-cdet a:hover { color: var(--gold); }
.svc-other-services { background: var(--offwhite); border: 1.5px solid var(--lightgray); border-radius: 4px; padding: 1.75rem; }
.svc-other-services h4 { font-family: "Montserrat", sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.svc-other-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.svc-other-list li a { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--gray); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.svc-other-list li a:hover { color: var(--gold); padding-left: 4px; }
.svc-other-list li i { color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.cdetail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; padding: 0.75rem; border-radius: 4px; transition: background 0.25s; }
.cdetail:hover { background: var(--offwhite); }
.cdetail-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--offwhite); border: 1px solid var(--lightgray); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold); transition: background 0.25s, color 0.25s, transform 0.25s; }
.cdetail:hover .cdetail-icon { background: var(--gold); color: var(--charcoal); transform: scale(1.08); }
.cdetail-label { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.cdetail-val { font-size: 0.95rem; color: var(--charcoal); font-weight: 500; }
.cdetail-val a { color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
.cdetail-val a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--offwhite); border-radius: 4px; padding: 2.5rem; }
.contact-form-wrap h3 { font-family: "Montserrat", sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.4rem; }
.form-sub { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--charcoal2); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 0.75rem 0.95rem; border: 1.5px solid var(--lightgray); border-radius: 3px; font-family: "DM Sans", sans-serif; font-size: 0.9rem; color: var(--charcoal); background: var(--white); transition: border-color 0.25s, box-shadow 0.25s; outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,184,0,0.1); }
.fg textarea { height: 115px; resize: vertical; }
.form-btn { background: var(--gold); color: var(--charcoal); border: none; padding: 0.9rem 2rem; border-radius: 2px; cursor: pointer; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; width: 100%; transition: background 0.2s, transform 0.15s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.form-btn:hover { background: var(--gold-dk); }
.form-btn:active { transform: scale(0.98); }
#fsuccess { display: none; margin-top: 1rem; padding: 0.85rem 1rem; background: #ECFDF5; border: 1px solid #6EE7B7; border-radius: 3px; font-size: 0.88rem; color: #065F46; }

/* ── FOOTER ── */
footer { background: var(--charcoal); color: var(--white); }
.footer-top { padding: 5rem 5vw 3.5rem; display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 1fr; gap: 3rem; }
.footer-logo img { height: 62px; width: auto; margin-bottom: 1.1rem; display: block; }
.footer-brand p { font-size: 0.88rem; color: #BBBBBB; line-height: 1.8; }
.footer-tan { font-size: 0.75rem; color: #888; margin-top: 0.85rem; display: flex; align-items: center; gap: 0.4rem; }
.footer-tan i { color: var(--gold); }
.footer-col h4 { font-family: "Montserrat", sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.35rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.88rem; color: #BBBBBB; text-decoration: none; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-hours { font-size: 0.82rem; color: #888; margin-top: 0.5rem; line-height: 1.6; }
.footer-bottom { padding: 1.35rem 5vw; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.72rem; color: #555; }

/* ── WHATSAPP ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-tip { position: absolute; right: 68px; background: var(--charcoal); color: #fff; font-size: 0.75rem; white-space: nowrap; padding: 0.35rem 0.75rem; border-radius: 3px; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.wa-float:hover .wa-tip { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .home-srv-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 260px; order: -1; }
  .hero-right img { object-position: center top; }
  .hero-right::after { background: linear-gradient(to bottom, rgba(26,26,26,0.2) 0%, transparent 60%); }
  .hero-left { padding: 2.5rem 5vw 3rem; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-sub, .hero-tagline { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline { text-align: center; justify-content: center; width: 100%; }
  .trust-strip { gap: 1rem; padding: 1rem 5vw; }
  .about-grid, .services-grid, .contact-grid, .svc-detail-content { grid-template-columns: 1fr; }
  .about-tan-card, .svc-sidebar { position: static; }
  .home-why { grid-template-columns: 1fr; gap: 3rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 580px) {
  .home-srv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .home-why-stats { grid-template-columns: 1fr 1fr; }
  :root { --section-gap: 4rem; }
}

/* ══ DARK / LIGHT MODE TOGGLE ══ */
body.dark-mode {
  --white: #121212;
  --offwhite: #1A1A1A;
  --offwhite2: #1E1E1E;
  --lightgray: #2A2A2A;
  --charcoal2: #E0E0E0;
  --gray: #9CA3AF;
  background: #121212;
  color: #E0E0E0;
}
body.dark-mode nav { background: #1A1A1A; }
body.dark-mode nav ul a { color: #AAA; }
body.dark-mode nav ul a:hover, body.dark-mode nav ul a.active { color: var(--gold); }
body.dark-mode .home-srv-card { background: #1A1A1A; border-color: #2A2A2A; }
body.dark-mode .home-srv-card h3 { color: #EEE; }
body.dark-mode .home-srv-card p { color: #999; }
body.dark-mode .srv-card { background: #1A1A1A; border-color: #2A2A2A; }
body.dark-mode .srv-card h3 { color: #EEE; }
body.dark-mode .trust-card { background: #1A1A1A; border-color: #2A2A2A; }
body.dark-mode .trust-card h3 { color: #EEE; }
body.dark-mode .faq-item { border-color: #2A2A2A; }
body.dark-mode .faq-q { color: #EEE; }
body.dark-mode .faq-q:hover { background: #1E1E1E; }
body.dark-mode .faq-item.open .faq-q { background: #1E1E1E; }
body.dark-mode .section-title { color: #F0F0F0; }
body.dark-mode .about-text-col p { color: #999; }
body.dark-mode .svc-contact-card { background: #1A1A1A; border-color: #2A2A2A; }
body.dark-mode .svc-other-services { background: #1A1A1A; border-color: #2A2A2A; }
body.dark-mode .contact-form-wrap { background: #1A1A1A; }
body.dark-mode .fg input, body.dark-mode .fg select, body.dark-mode .fg textarea { background: #121212; border-color: #2A2A2A; color: #EEE; }
body.dark-mode .cdetail:hover { background: #1A1A1A; }
body.dark-mode .cdetail-icon { background: #1A1A1A; border-color: #2A2A2A; }
body.dark-mode .ind-card { border-color: #2A2A2A; }
body.dark-mode .step h4 { color: #EEE; }
body.dark-mode .why-row:hover { background: rgba(255,255,255,0.03); }
body.dark-mode .uae-badge { color: #EEE; }
body.dark-mode .mobile-nav { background: #1A1A1A; border-color: #2A2A2A; }
body.dark-mode .mobile-nav a { border-color: #2A2A2A; color: #AAA; }

/* Theme toggle button */
.theme-toggle {
  position: fixed; top: 50%; right: 1rem;
  transform: translateY(-50%);
  z-index: 998;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--charcoal); border: 1.5px solid rgba(245,184,0,0.35);
  color: var(--gold); font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.theme-toggle:hover { border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
body.dark-mode .theme-toggle { background: #2A2A2A; }
body.dark-mode .cta-banner .btn-dark {
  background: #FFFFFF;
  color: #1A1A1A;
  border: none;
}

/* ── FTA CERTIFICATE ── */
.fta-cert-section {
  margin-top: 2rem;
}
.fta-cert-intro {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.fta-cert-card {
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(245,184,0,0.08);
}
.fta-cert-left {
  background: var(--charcoal);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.fta-seal {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245,184,0,0.12);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}
.fta-cert-right {
  padding: 1.5rem 1.75rem;
}
.fta-cert-issuer {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.fta-cert-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.fta-cert-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}
.fta-cert-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.fta-cert-label {
  font-size: 0.68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fta-cert-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: "Montserrat", sans-serif;
}
.fta-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16A34A;
  font-family: "Montserrat", sans-serif;
}
.fta-verified i { font-size: 0.85rem; }
.fta-view-btn {
  margin: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  align-self: center;
}
.fta-view-btn:hover { background: var(--gold-dk); }

/* Certificate Modal */
.cert-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cert-modal-overlay.open { display: flex; }
.cert-modal-box {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  max-width: 780px;
  height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.cert-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--charcoal);
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cert-modal-close {
  background: none;
  border: none;
  color: #AAA;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}
.cert-modal-close:hover { color: var(--gold); }
.cert-modal-body {
  flex: 1;
  overflow: hidden;
  background: #F0F0F0;
}
.cert-modal-footer {
  padding: 0.85rem 1.5rem;
  background: var(--offwhite);
  border-top: 1px solid var(--lightgray);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}
body.dark-mode .fta-cert-card { background: #1A1A1A; }
body.dark-mode .fta-cert-title { color: #EEE; }
body.dark-mode .fta-cert-val { color: #EEE; }
body.dark-mode .cert-modal-box { background: #1A1A1A; }
body.dark-mode .cert-modal-footer { background: #121212; border-color: #2A2A2A; }

@media (max-width: 640px) {
  .fta-cert-card { grid-template-columns: 1fr; }
  .fta-cert-left { padding: 1.25rem; flex-direction: row; gap: 1rem; justify-content: flex-start; }
  .fta-cert-meta { grid-template-columns: 1fr; }
  .fta-view-btn { margin: 0 1.5rem 1.5rem; width: calc(100% - 3rem); justify-content: center; }
}