@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #0f2240;
  --navy-light: #163560;
  --gold: #c9a84c;
  --gold-dark: #b0912f;
  --gold-glow: rgba(201,168,76,0.20);
  --teal: #1ba5a5;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --grey-light: #f0f2f5;
  --grey-mid: #dce0e6;
  --grey-border: #e5e7eb;
  --text-dark: #111827;
  --text-body: #4b5563;
  --text-muted: #6b7280;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-dark); line-height: 1.7; overflow-x: hidden; background: var(--white); }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 0.92rem; cursor: pointer; transition: all var(--transition); border: none; letter-spacing: 0.01em; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.3); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn svg { width: 16px; height: 16px; fill: currentColor; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════════ */
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: inline-block; }
.section-title { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-sub { color: var(--text-body); max-width: 580px; font-size: 1.05rem; line-height: 1.75; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.top-bar { background: var(--navy); color: rgba(255,255,255,0.65); font-size: 0.8rem; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.top-bar a { color: rgba(255,255,255,0.65); transition: color var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--gold); }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left span { color: rgba(255,255,255,0.15); }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-right a { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all var(--transition); }
.top-bar-right a:hover { background: rgba(255,255,255,0.08); }
.top-bar-right svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.65); transition: fill var(--transition); }
.top-bar-right a:hover svg { fill: var(--gold); }

/* ═══════════════════════════════════════════
   HEADER / MEGA MENU
   ═══════════════════════════════════════════ */
header { background: var(--white); position: sticky; top: 0; z-index: 200; transition: box-shadow var(--transition); }
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo:hover { opacity: 0.9; }
.logo-img { height: 100px; width: auto; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-item > a { display: flex; align-items: center; gap: 5px; padding: 0 18px; height: 100%; font-weight: 500; font-size: 0.92rem; color: var(--text-dark); transition: color var(--transition); position: relative; }
.nav-item > a::after { content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.nav-item > a:hover, .nav-item > a.active, .nav-item:hover > a { color: var(--gold); }
.nav-item > a:hover::after, .nav-item > a.active::after, .nav-item:hover > a::after { transform: scaleX(1); }
.nav-item > a .chevron { width: 10px; height: 10px; fill: var(--text-muted); transition: transform var(--transition), fill var(--transition); }
.nav-item:hover > a .chevron { transform: rotate(180deg); fill: var(--gold); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-right .btn { padding: 11px 24px; font-size: 0.88rem; }

/* Mega Menu */
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 720px; background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.12); opacity: 0; visibility: hidden; transition: all 0.25s ease; padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; pointer-events: none; border-top: 3px solid var(--gold); }
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-col { padding: 0 16px; }
.mega-col:first-child { border-right: 1px solid var(--grey-border); padding-left: 0; }
.mega-col:last-child { padding-right: 0; }
.mega-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: flex; align-items: center; gap: 8px; }
.mega-col h4 svg { width: 18px; height: 18px; fill: var(--gold); }
.mega-col ul li a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; font-size: 0.9rem; color: var(--text-body); border-radius: 6px; transition: all var(--transition); }
.mega-col ul li a::before { content: ''; width: 6px; height: 6px; background: var(--grey-mid); border-radius: 50%; transition: all var(--transition); flex-shrink: 0; }
.mega-col ul li a:hover { background: var(--off-white); color: var(--gold); padding-left: 16px; }
.mega-col ul li a:hover::before { background: var(--gold); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; width: 40px; height: 40px; justify-content: center; align-items: center; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--grey-border); max-height: 80vh; overflow-y: auto; }
.mobile-nav.open { display: block; }
.mobile-nav > ul > li > a { display: flex; justify-content: space-between; align-items: center; padding: 16px 32px; font-weight: 500; font-size: 0.95rem; color: var(--text-dark); border-bottom: 1px solid var(--grey-border); }
.mobile-nav > ul > li > a:hover { color: var(--gold); background: var(--off-white); }
.mobile-sub { display: none; background: var(--off-white); }
.mobile-sub.open { display: block; }
.mobile-sub h4 { padding: 12px 32px 6px; font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.mobile-sub a { display: block; padding: 10px 32px 10px 48px; font-size: 0.9rem; color: var(--text-body); border-bottom: 1px solid var(--grey-border); }
.mobile-sub a:hover { color: var(--gold); padding-left: 54px; }
.mobile-nav .btn { margin: 16px 32px; display: block; text-align: center; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero.jpg') center/cover no-repeat; opacity: 0.35; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.6) 50%, rgba(10,22,40,0.3) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-content .section-label { color: var(--gold); margin-bottom: 16px; font-size: 0.78rem; }
.hero-content h1 { font-family: 'Poppins', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero-content h1 .highlight { color: var(--gold); }
.hero-content p { color: rgba(255,255,255,0.7); font-size: 1.12rem; margin-bottom: 36px; line-height: 1.8; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 40px; padding: 12px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; }
.hero-badge span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.hero-badge strong { color: var(--white); font-size: 0.82rem; }

/* ═══════════════════════════════════════════
   INTRO / WHO WE ARE
   ═══════════════════════════════════════════ */
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.intro-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.8s ease; }
.intro-img:hover img { transform: scale(1.04); }
.intro-img::after { content: ''; position: absolute; bottom: -12px; right: -12px; width: 120px; height: 120px; background: var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.intro-text p { color: var(--text-body); margin-bottom: 16px; font-size: 1.02rem; }
.stats-row { display: flex; gap: 12px; margin: 36px 0; }
.stat { flex: 1; padding: 20px; background: var(--off-white); border-radius: var(--radius); text-align: center; transition: all var(--transition); border: 1px solid transparent; }
.stat:hover { background: var(--white); border-color: var(--gold-glow); box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; font-weight: 600; }

/* ═══════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════ */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); border: 1px solid var(--grey-border); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--grey-light); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.08rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; transition: color var(--transition); }
.service-card:hover h3 { color: var(--gold); }
.service-card-body p { font-size: 0.88rem; color: var(--text-body); flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--gold); margin-top: 16px; transition: gap var(--transition); }
.card-link svg { width: 14px; height: 14px; fill: var(--gold); transition: transform var(--transition); }
.service-card:hover .card-link { gap: 10px; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════
   ACCREDITATIONS
   ═══════════════════════════════════════════ */
.accreditations { background: var(--white); padding: 56px 0; border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); }
.accred-inner { display: flex; align-items: center; gap: 40px; }
.accred-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.accred-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; flex: 1; justify-content: center; }
.accred-badge { padding: 10px 20px; background: var(--off-white); border-radius: 6px; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); transition: all var(--transition); border: 1px solid transparent; white-space: nowrap; }
.accred-badge:hover { background: var(--white); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ═══════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════ */
.why-us { background: var(--navy); position: relative; overflow: hidden; }
.why-us::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.03) 100%); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-item { padding: 32px 24px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); transition: all var(--transition); text-align: center; }
.why-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.why-icon { width: 64px; height: 64px; background: rgba(201,168,76,0.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all var(--transition); }
.why-item:hover .why-icon { background: var(--gold); transform: scale(1.08); }
.why-icon svg { width: 28px; height: 28px; fill: var(--gold); transition: fill var(--transition); }
.why-item:hover .why-icon svg { fill: var(--navy); }
.why-item h3 { font-family: 'Poppins', sans-serif; color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; }

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; right: -50px; width: 300px; height: 300px; background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--white); max-width: 500px; line-height: 1.25; }
.cta-inner p { color: rgba(255,255,255,0.6); margin-top: 10px; font-size: 1rem; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer { background: #050d1a; color: rgba(255,255,255,0.5); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand { padding-right: 24px; }
.footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.5); }
.footer-social a:hover svg { fill: var(--navy); }
footer h4 { font-family: 'Poppins', sans-serif; color: var(--white); font-size: 0.88rem; font-weight: 600; margin-bottom: 20px; letter-spacing: 0.02em; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0; }
footer ul a:hover { color: var(--gold); gap: 4px; }
footer ul a::before { content: ''; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); display: inline-block; }
footer ul a:hover::before { width: 8px; }
.footer-contact li { font-size: 0.85rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,0.45); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════ */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%); }
.page-hero h1 { font-family: 'Poppins', sans-serif; color: var(--white); font-size: 2.6rem; font-weight: 700; position: relative; }
.page-hero p { color: rgba(255,255,255,0.5); margin-top: 12px; font-size: 1.05rem; position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 16px; position: relative; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-story { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.8s; }
.about-img:hover img { transform: scale(1.04); }

.values { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: all var(--transition); border: 1px solid var(--grey-border); border-left: 4px solid transparent; }
.value-card:hover { border-left-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card h3 { font-family: 'Poppins', sans-serif; color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; color: var(--text-body); }

.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; padding: 28px; border-radius: var(--radius-lg); transition: all var(--transition); border: 1px solid transparent; }
.team-card:hover { background: var(--off-white); border-color: var(--grey-border); transform: translateY(-4px); }
.team-photo { width: 130px; height: 130px; border-radius: 50%; background: var(--grey-light); margin: 0 auto 16px; overflow: hidden; border: 3px solid var(--grey-border); transition: border-color var(--transition); }
.team-card:hover .team-photo { border-color: var(--gold); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 1.05rem; }
.team-card span { font-size: 0.85rem; color: var(--gold); font-weight: 500; }

/* ═══════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════ */
.services-detail { background: var(--white); }
.service-section-title { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); padding: 18px 28px; border-radius: var(--radius); font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 40px; display: flex; align-items: center; gap: 12px; }
.service-detail-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.service-detail-block.reverse { direction: rtl; }
.service-detail-block.reverse > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; }
.service-detail-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.6s; }
.service-detail-img:hover img { transform: scale(1.04); }
.service-detail-text h3 { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.service-detail-text p { color: var(--text-body); margin-bottom: 16px; line-height: 1.75; }
.service-detail-text ul { list-style: none; padding: 0; }
.service-detail-text ul li { margin-bottom: 8px; padding-left: 20px; position: relative; color: var(--text-body); font-size: 0.92rem; }
.service-detail-text ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ═══════════════════════════════════════════
   SINGLE SERVICE PAGE
   ═══════════════════════════════════════════ */
.service-single { background: var(--white); }
.service-single-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; }
.service-main img { border-radius: var(--radius-lg); margin-bottom: 28px; }
.service-main h2 { font-family: 'Poppins', sans-serif; color: var(--navy); margin-bottom: 16px; font-size: 1.5rem; font-weight: 700; }
.service-main p { color: var(--text-body); margin-bottom: 16px; line-height: 1.8; font-size: 0.98rem; }
.service-main ul { list-style: none; padding: 0; margin-bottom: 28px; }
.service-main ul li { padding: 12px 0 12px 28px; position: relative; color: var(--text-body); border-bottom: 1px solid var(--grey-border); font-size: 0.95rem; }
.service-main ul li::before { content: ''; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; border: 1px solid var(--grey-border); }
.sidebar-card h3 { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 1.05rem; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.sidebar-card ul li a { display: block; padding: 10px 14px; color: var(--text-body); font-size: 0.9rem; border-radius: 6px; transition: all var(--transition); font-weight: 500; }
.sidebar-card ul li a:hover, .sidebar-card ul li a.active { background: var(--white); color: var(--gold); padding-left: 20px; box-shadow: var(--shadow-sm); }
.sidebar-card ul li a::before { display: none; }
.sidebar-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.sidebar-cta h3 { font-family: 'Poppins', sans-serif; color: var(--white); font-size: 1.1rem; margin-bottom: 12px; border: none; padding: 0; }
.sidebar-cta p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 20px; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--grey-border); }
.contact-form-wrap h2 { font-family: 'Poppins', sans-serif; color: var(--navy); margin-bottom: 28px; font-size: 1.5rem; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--grey-border); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-dark); transition: all var(--transition); background: var(--off-white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px var(--gold-glow); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: #ecfdf5; color: #065f46; padding: 14px 20px; border-radius: var(--radius); margin-top: 16px; font-weight: 500; font-size: 0.92rem; border: 1px solid #a7f3d0; }
.contact-info h2 { font-family: 'Poppins', sans-serif; color: var(--navy); margin-bottom: 28px; font-size: 1.5rem; }
.info-item { display: flex; gap: 16px; margin-bottom: 20px; padding: 20px; border-radius: var(--radius-lg); transition: all var(--transition); border: 1px solid transparent; }
.info-item:hover { background: var(--white); border-color: var(--grey-border); box-shadow: var(--shadow-sm); }
.info-icon { width: 48px; height: 48px; background: var(--off-white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); }
.info-item:hover .info-icon { background: var(--gold); }
.info-icon svg { width: 22px; height: 22px; fill: var(--gold); transition: fill var(--transition); }
.info-item:hover .info-icon svg { fill: var(--white); }
.info-item h4 { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.info-item p, .info-item a { color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.map-wrap { margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--grey-border); }
.map-wrap iframe { width: 100%; height: 280px; border: none; display: block; }

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.whatsapp-float a { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; background: #25d366; border-radius: 16px; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: all var(--transition); }
.whatsapp-float a:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); border-radius: 20px; }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
.whatsapp-float .wa-tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--navy); color: var(--white); padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 500; white-space: nowrap; opacity: 0; pointer-events: none; transition: all var(--transition); }
.whatsapp-float .wa-tooltip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border-left: 5px solid var(--navy); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; right: 72px; }
.whatsapp-pulse { animation: waPulse 2.5s infinite; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0.08); } }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: none; }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: none; }
.scale-in { opacity: 0; transform: scale(0.95); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in.visible { opacity: 1; transform: none; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.45s; }
.stagger-7 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .mega-menu { width: 600px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-single-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
}
@media (max-width: 768px) {
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
  .main-nav, .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 68px; }
  .logo-img { height: 48px; }
  .mobile-nav.open { display: block; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .hero { min-height: 500px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .section-title { font-size: 1.7rem; }
  .intro-grid, .about-grid, .contact-grid, .service-detail-block { grid-template-columns: 1fr; gap: 40px; }
  .intro-img::after { display: none; }
  .service-detail-block.reverse { direction: ltr; }
  .services-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .page-hero h1 { font-size: 1.8rem; }
  .cta-banner { padding: 60px 0; }
  .cta-inner h2 { font-size: 1.5rem; }
  .accred-inner { flex-direction: column; gap: 20px; }
  .accred-row { gap: 12px; }
  .whatsapp-float a { width: 50px; height: 50px; border-radius: 14px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float .wa-tooltip { display: none; }
  .service-single-grid { grid-template-columns: 1fr; }
  .service-sidebar { order: -1; }
}
