/* ============================================
   PURVA AGRAWAL & CO. — CA Website Stylesheet
   Pure CSS — No Framework Required
   ============================================ */

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

/* ─── CSS Variables ─── */
:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2244;
  --navy-light: #2a5298;
  --gold: #c8951a;
  --gold-light: #f0b429;
  --gold-dark: #a07010;
  --green: #1e6b3a;
  --green-light: #27a050;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --light-gray: #eef0f4;
  --mid-gray: #8896aa;
  --dark: #1a2133;
  --text: #2d3748;
  --text-light: #5a6a80;
  --border: #dce2ed;
  --shadow-sm: 0 2px 8px rgba(26,58,107,0.08);
  --shadow: 0 4px 20px rgba(26,58,107,0.12);
  --shadow-lg: 0 10px 40px rgba(26,58,107,0.18);
  --shadow-xl: 0 20px 60px rgba(26,58,107,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 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-sans); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
input, textarea, select { font-family: var(--font-sans); }
h1,h2,h3,h4,h5 { font-family: var(--font-serif); color: var(--dark); line-height: 1.25; }

/* ─── Utilities ─── */
.container {  width: 95%;
 max-width: 1600px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: var(--font-serif); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.section { padding: 88px 0; }
.section-dark { background: linear-gradient(135deg, var(--navy-dark) 0%, #1e4d8a 100%); }
.section-gray { background: var(--off-white); }
.section-white { background: var(--white); }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(26,58,107,0.08); border: 1px solid rgba(26,58,107,0.15); border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--navy); }
.badge-white { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
.badge-white .dot { background: var(--gold-light); }
.section-title { font-size: clamp(28px, 4vw, 46px); font-weight: 700; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto 48px; }
.divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.divider::before, .divider::after { content: ''; height: 1px; width: 60px; background: rgba(200,149,26,0.35); border-radius: 2px; }
.divider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; transition: var(--transition); cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: var(--white); box-shadow: 0 4px 16px rgba(200,149,26,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,149,26,0.45); }
.btn-navy { background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); color: var(--white); box-shadow: 0 4px 16px rgba(26,58,107,0.3); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,58,107,0.4); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn-outline-dark:hover { border-color: var(--navy); color: var(--navy); }
.btn svg, .btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── TOP BAR ─── */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,0.85); font-size: 12.5px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left a, .topbar-right { display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--gold-light); }
.topbar-right { color: var(--gold-light); font-weight: 500; gap: 8px; }
.topbar-right span { color: rgba(255,255,255,0.5); }
.topbar svg { width: 13px; height: 13px; }

/* ─── NAVBAR ─── */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 1px 0 var(--border); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(26,58,107,0.12); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 48px; height: 48px; border-radius: 10px; border: 2px solid var(--navy); overflow: hidden; flex-shrink: 0; }
.logo-img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%; transform: scale(2.2); }
.logo-text .firm-name { font-family: var(--font-serif); font-weight: 700; font-size: 15px; color: var(--navy-dark); line-height: 1.2; }
.logo-text .firm-type { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; line-height: 1; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text); transition: var(--transition); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: rgba(26,58,107,0.06); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--gold); border-radius: 2px; }
.nav-cta { padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600; background: var(--navy); color: var(--white); transition: var(--transition); }
.nav-cta:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; }

/* ─── PAGE HEADER ─── */
.page-header { background: linear-gradient(135deg, var(--navy-dark) 0%, #1e4d8a 50%, #2a5298 100%); padding: 62px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 50px 50px; }
.page-header-deco-1 { position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(200,149,26,0.2) 0%, transparent 70%); }
.page-header-deco-2 { position: absolute; bottom: -80px; left: -40px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(30,107,58,0.15) 0%, transparent 70%); }
.page-header .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 13px; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--gold-light); font-weight: 600; }
.page-header h1 { font-size: clamp(32px, 5vw, 56px); color: var(--white); font-weight: 800; margin-bottom: 14px; }
.page-header p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto; }
.page-header-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.page-header-wave svg { display: block; width: 100%; }

.logo-img {
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
}

/* ─── HERO (Home) ─── */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, #1e4d8a 50%, #2a5298 100%); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 50px 50px; }
.hero-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-deco-1 { top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,149,26,0.15) 0%, transparent 70%); }
.hero-deco-2 { bottom: -120px; left: -80px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(30,107,58,0.12) 0%, transparent 70%); }
.hero-shape { position: absolute; border: 2px solid rgba(200,149,26,0.2); border-radius: 14px; width: 60px; height: 60px; top: 18%; right: 14%; animation: floatRotate 8s ease-in-out infinite; }
.hero-shape2 { position: absolute; width: 14px; height: 14px; background: rgba(200,149,26,0.15); border-radius: 50%; bottom: 25%; left: 9%; animation: floatY 6s ease-in-out infinite; }
@keyframes floatRotate { 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-14px) rotate(45deg); } }
@keyframes floatY { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(18px); } }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding:60px 24px 120px;}
.hero-content { color: var(--white); }
.rating-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 8px 18px; font-size: 13.5px; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.stars { display: flex; gap: 2px; color: var(--gold-light); font-size: 13px; }
.hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.12; margin-bottom: 20px; color: var(--white); }
.hero h1 .accent { color: var(--gold-light); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 520px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.trust-badge { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 7px 13px; font-size: 12.5px; color: rgba(255,255,255,0.85); font-weight: 500; }
.trust-badge svg { width: 14px; height: 14px; color: var(--gold-light); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visuals { display: flex; flex-direction: column; gap: 16px; }
.hero-main-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.1); position: relative; }
.hero-main-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.hero-img-overlay { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(255,255,255,0.15); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 14px 16px; }
.hero-img-overlay p { color: var(--white); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.hero-img-overlay span { color: rgba(255,255,255,0.7); font-size: 12px; }
.hero-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-mini-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.hero-mini-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.hero-mini-card-label { position: absolute; bottom: 10px; left: 12px; color: var(--white); font-size: 12px; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.hero-mini-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%); }
.hero-stats { padding-top: 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 24px 16px; text-align: center; transition: var(--transition); }
.stat-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.stat-value { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--gold-light); margin-bottom: 4px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }

/* ─── SERVICES GRID ─── */
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; transition: transform var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.service-features { margin-bottom: 16px; }
.service-features li { font-size: 12.5px; color: var(--text-light); padding: 3px 0; display: flex; align-items: center; gap: 7px; }
.service-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.service-link { font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; opacity: 0; transition: var(--transition); }
.service-card:hover .service-link { opacity: 1; }

/* ─── ABOUT SECTION ─── */
.floating-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 18px; display: flex; align-items: center; gap: 14px; }
.floating-card .logo-thumb { width: 52px; height: 52px; border-radius: 10px; border: 2px solid var(--navy); overflow: hidden; flex-shrink: 0; }
.floating-card .logo-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%; transform: scale(2.2); }
.rating-card { background: var(--navy-dark); color: var(--white); border-radius: var(--radius-lg); padding: 18px; text-align: center; box-shadow: var(--shadow-xl); }
.rating-card .big-rating { font-family: var(--font-serif); font-size: 40px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.rating-card .small-text { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.img-stack { position: relative; }
.img-stack .main-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.img-stack .main-img img { width: 100%; height: 340px; object-fit: cover; display: block; }
.img-stack .secondary-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 32px; margin-left: 40px; }
.img-stack .secondary-img img { width: 80%; height: 180px; object-fit: cover; display: block; }
.float-bottom { position: absolute; bottom: -18px; right: -18px; animation: floatUpDown 4s ease-in-out infinite; }
.float-top { position: absolute; top: -14px; left: -14px; animation: floatUpDownAlt 5s ease-in-out 1s infinite; }
@keyframes floatUpDown { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@keyframes floatUpDownAlt { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(8px); } }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-light); }
.check-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--green); margin-top: 1px; }
.quote-block { background: rgba(26,58,107,0.04); border-left: 4px solid var(--navy); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px; margin-top: 24px; }
.quote-block p { font-size: 14px; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 8px; }
.quote-block .quote-author { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ─── WHY US ─── */
.why-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 26px; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(200,149,26,0.15); border: 1px solid rgba(200,149,26,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 22px; transition: var(--transition); }
.why-card:hover .why-icon { background: rgba(200,149,26,0.25); }
.why-highlight { display: inline-block; background: rgba(255,255,255,0.1); border-radius: 6px; padding: 3px 10px; font-size: 11px; font-weight: 700; color: var(--gold-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* ─── TESTIMONIALS ─── */
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; overflow: hidden; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote-mark { position: absolute; top: 14px; right: 18px; font-size: 64px; line-height: 1; color: rgba(26,58,107,0.06); font-family: Georgia, serif; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 12px; color: var(--gold-light); font-size: 15px; }
.testimonial-text { font-size: 14px; color: var(--text-light); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(26,58,107,0.12); }
.testimonial-author .name { font-size: 14px; font-weight: 600; color: var(--dark); }
.testimonial-author .role { font-size: 12px; color: var(--text-light); }
.testimonial-tag { margin-top: 12px; }
.tag-pill { display: inline-block; font-size: 11.5px; font-weight: 600; padding: 4px 12px; border-radius: 50px; }

/* ─── CONTACT ─── */
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); display: flex; align-items: flex-start; gap: 16px; transition: var(--transition); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.contact-card .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--mid-gray); margin-bottom: 3px; }
.contact-card .value { font-size: 14px; font-weight: 600; color: var(--dark); }
.contact-card .sub { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group label .req { color: #e53e3e; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--dark); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(26,58,107,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238896aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.submit-btn { width: 100%; padding: 15px; border-radius: var(--radius); font-size: 16px; font-weight: 700; background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); color: var(--white); border: none; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,58,107,0.4); }
.success-message { text-align: center; padding: 48px 24px; display: none; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: #f0fff4; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.success-message h3 { font-size: 24px; color: var(--dark); margin-bottom: 10px; }
.success-message p { color: var(--text-light); }

/* ─── COMPARISON TABLE ─── */
.compare-table { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.compare-header { display: grid; grid-template-columns: 2fr 1fr 1fr; text-align: center; }
.compare-header .col { padding: 18px; border-bottom: 1px solid var(--border); }
.compare-header .col-feature { background: var(--off-white); text-align: left; padding-left: 24px; font-size: 13.5px; font-weight: 600; color: var(--text-light); }
.compare-header .col-us { background: var(--navy); color: var(--white); font-family: var(--font-serif); font-weight: 700; font-size: 15px; }
.compare-header .col-others { background: var(--off-white); font-size: 13.5px; font-weight: 600; color: var(--text-light); }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--light-gray); }
.compare-row:last-child { border-bottom: none; }
.compare-row .cell { padding: 14px 18px; display: flex; align-items: center; justify-content: center; }
.compare-row .cell-feature { justify-content: flex-start; padding-left: 24px; font-size: 13.5px; color: var(--text); }
.compare-row .cell-us { background: rgba(26,58,107,0.04); }
.compare-row .check-yes { color: var(--green-light); font-size: 20px; }
.compare-row .check-no { color: #e2e8f0; font-size: 20px; }

/* ─── RATING BAR ─── */
.rating-overview { background: var(--off-white); border-radius: var(--radius-xl); padding: 36px; border: 1px solid var(--border); display: flex; gap: 40px; align-items: center; margin-bottom: 48px; }
.big-rating-num { text-align: center; flex-shrink: 0; }
.big-rating-num .num { font-family: var(--font-serif); font-size: 72px; font-weight: 800; color: var(--navy); line-height: 1; }
.big-rating-num .stars-row { display: flex; gap: 4px; justify-content: center; margin: 8px 0; color: var(--gold); font-size: 20px; }
.big-rating-num .reviews { font-size: 13px; color: var(--text-light); }
.rating-bars { flex: 1; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-bar-row .star-label { font-size: 13px; color: var(--text-light); width: 24px; text-align: right; }
.star-mini { color: var(--gold); font-size: 11px; }
.bar-track { flex: 1; height: 8px; background: var(--light-gray); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 4px; transition: width 1.2s ease; }
.rating-bar-row .count { font-size: 13px; color: var(--text-light); width: 30px; }

/* ─── PROCESS STEPS ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 36px; left: 65%; right: -15%; height: 2px; border-top: 2px dashed var(--border); }
.process-icon { width: 72px; height: 72px; border-radius: var(--radius-lg); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 30px; background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); box-shadow: 0 4px 20px rgba(26,58,107,0.3); }
.process-step-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.process-step p { font-size: 13px; color: var(--text-light); }

/* ─── VALUES ─── */
.value-card { text-align: center; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px 24px; transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: var(--white); }
.value-icon { font-size: 44px; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ─── TEAM ─── */
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img { position: relative; height: 220px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,34,68,0.85), transparent 60%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; gap: 10px; }
.team-card:hover .team-overlay { opacity: 1; }
.team-social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 14px; transition: var(--transition); cursor: pointer; }
.team-social-btn:hover { background: rgba(255,255,255,0.4); }
.team-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--navy-dark); font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 50px; letter-spacing: 1px; }
.team-info { padding: 20px; }
.team-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.team-info .role { font-size: 13px; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.team-tag { display: inline-block; background: rgba(26,58,107,0.07); color: var(--navy); font-size: 11.5px; font-weight: 600; padding: 4px 11px; border-radius: 50px; margin-bottom: 10px; }
.team-info p { font-size: 12.5px; color: var(--text-light); line-height: 1.6; }

/* ─── CTA BANNER ─── */
.cta-banner { background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); border-radius: var(--radius-xl); padding: 52px 40px; text-align: center; }
.cta-banner h2 { font-size: 32px; color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 16px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: #25d366; color: var(--white); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.45); transition: var(--transition); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; }

/* ─── FOOTER ─── */
footer { background: linear-gradient(180deg, var(--navy-dark) 0%, #080f1e 100%); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0; }
.footer-brand .logo { margin-bottom: 0; }
.footer-rating { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-rating .stars { color: var(--gold-light); }
.footer-heading { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 7px; transition: color var(--transition); }
.footer-links a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(200,149,26,0.5); flex-shrink: 0; transition: background var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-links a:hover::before { background: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; }
.footer-contact-item .lbl { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; }
.footer-contact-item .val { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.icai-box { margin-top: 14px; padding: 10px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; }
.icai-box .icai-label { font-size: 11px; color: rgba(255,255,255,0.35); }
.icai-box .icai-val { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 2px; }
.icai-box a { font-size: 12px; color: var(--gold-light); display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }

/* ─── ANIMATION ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.34s; }
.delay-5 { transition-delay: 0.42s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar .container { flex-direction: column; gap: 4px; text-align: center; }
  .topbar-left { justify-content: center; flex-wrap: wrap; }
  .topbar-right { justify-content: center; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; padding: 80px 24px 60px; }
  .hero-visuals { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rating-overview { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 12px 24px 20px; flex-direction: column; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 11px 0; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--light-gray); }
  .mobile-menu a:last-child { border: none; }
  .mobile-menu .mobile-cta { margin-top: 12px; background: var(--navy); color: var(--white); text-align: center; border-radius: var(--radius); padding: 13px; font-weight: 600; border: none; }
  .compare-header .col-feature, .compare-row .cell-feature { padding-left: 12px; font-size: 12px; }
}
@media (max-width: 480px) {
  .cta-banner { padding: 36px 20px; }
  .hero h1 { font-size: 32px; }
  .section { padding: 60px 0; }
  .contact-form-wrap { padding: 24px 18px; }
}
