@charset "UTF-8";

/* ===== Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== Base ===== */
:root {
    --primary: #1e1e48;
    --primary-dark: #12182b;
    --primary-light: #3d3d78;
    --primary-tint: #f1f0f7;
    --accent: #e9357b;
    --accent-dark: #c41f63;
    --whatsapp: #25d366;
    --call: #2f8fd1;
    --ink: #1e1e48;
    --text-dark: #23233f;
    --text-muted: #6d6d80;
    --border: #e3e1ea;
    --bg-light: #f5f5f9;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 10px rgba(24, 24, 56, 0.06);
    --shadow-md: 0 12px 28px rgba(24, 24, 56, 0.10);
    --shadow-lg: 0 22px 50px rgba(24, 24, 56, 0.16);
    --shadow-xl: 0 30px 70px rgba(24, 24, 56, 0.22);
    --container-max: 1240px;
}

* {
    box-sizing: border-box;
}

[class^="ri-"],
[class*=" ri-"] {
    vertical-align: -2px;
    line-height: 1;
}

.card-icon [class^="ri-"] {
    vertical-align: 0;
    line-height: inherit;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 50px;
    border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--accent-dark));
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Segoe UI', Arial, Helvetica, sans-serif;
    color: var(--ink);
    line-height: 1.28;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 32px;
    margin-bottom: 0.9rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.heading-accent {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section h2 + p,
.section h2 + h3 {
    margin-top: 0.6rem;
}

h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

p {
    color: var(--text-muted);
}

ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2.5px solid var(--primary-light);
    outline-offset: 3px;
}

section[id] {
    scroll-margin-top: 50px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 14px;
}

.section {
    padding: 50px 0;
}

.alt-bg {
    background: var(--bg-light);
}

/* ===== Scroll reveal (progressive enhancement — safe with JS off) ===== */
.will-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-call {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 10px 24px rgba(196, 31, 99, 0.35);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128c4a);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.btn-lg {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ===== Header ===== */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(24, 24, 56, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 16px;
    padding: 14px 20px;
}

.logo {
    grid-column: 1;
    justify-self: start;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.logo-img {
    display: block;
    height: 42px;
    width: auto;
}

.main-nav {
    grid-column: 2;
    justify-self: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0;
    /* flex-wrap: wrap; */
    justify-content: center;
}

.main-nav a {
    position: relative;
    display: inline-block;
    padding: 8px 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
    background: var(--primary-tint);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    padding: 8px;
    margin: 12px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 50;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    white-space: nowrap;
    font-size: 0.9rem;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: var(--primary-tint);
    color: var(--primary);
}

.header-buttons {
    grid-column: 3;
    justify-self: end;
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.header-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary-tint);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--primary);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
    background: var(--primary);
    color: #fff;
}

.menu-toggle.active {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 85% 10%, rgba(233, 53, 123, 0.3), transparent 45%),
        radial-gradient(circle at 8% 90%, rgba(61, 61, 120, 0.4), transparent 45%),
        radial-gradient(circle at 30% 30%, rgba(233, 53, 123, 0.12), transparent 40%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 56px 0 84px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    opacity: 0.5;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 60px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.hero-decor-icon {
    position: absolute;
    top: -40px;
    right: -20px;
    font-size: 260px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
    letter-spacing: -0.015em;
}

.hero-title-accent {
    background: linear-gradient(90deg, #ff8fbb, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 16px rgba(233, 53, 123, 0.45));
}

.hero-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
}

.hero-check-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transition: padding-left 0.25s ease, color 0.25s ease;
}

.hero-check-list li:hover {
    padding-left: 8px;
    color: #ffd9e8;
}

.hero-check-list li i {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 0 0 4px rgba(233, 53, 123, 0.16), 0 4px 14px rgba(196, 31, 99, 0.45);
}

/* ===== Hero grid (text + enquiry form) ===== */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: start;
}

.hero-grid .hero-inner {
    max-width: 640px;
}

.enquiry-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 8px 26px 26px;
    box-shadow: 0 30px 70px rgba(18, 24, 43, 0.38), 0 10px 24px rgba(233, 53, 123, 0.12);
    color: var(--text-dark);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.enquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 36px 80px rgba(18, 24, 43, 0.42), 0 14px 30px rgba(233, 53, 123, 0.18);
}

.enquiry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 2px 14px rgba(233, 53, 123, 0.45);
    z-index: 1;
}

.enquiry-card::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 53, 123, 0.12), transparent 70%);
    pointer-events: none;
}

.enquiry-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
    padding: 6px 14px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(233, 53, 123, 0.32);
}

.enquiry-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: badge-pulse 1.8s ease-out infinite;
}

@keyframes badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.enquiry-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 1.2rem;
    margin: 14px 0 4px;
}

.enquiry-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    font-size: 1rem;
}

.enquiry-sub {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.84rem;
    margin: 0 0 16px;
}

.enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.enquiry-form .form-group {
    margin-bottom: 11px;
    min-width: 0;
}

.enquiry-form label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.enquiry-form label .req {
    color: var(--accent-dark);
}

.enquiry-form input,
.enquiry-form select {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1.5px solid #dcdce8;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.86rem;
    color: var(--text-dark);
    background: #f7f7fb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.enquiry-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231e1e48'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 32px;
}

.enquiry-form input::placeholder {
    color: #9a9ab2;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: #fff;
    box-shadow: 0 0 0 3px var(--primary-tint);
}

.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.input-icon:focus-within > i {
    color: var(--primary);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 11px;
    padding-bottom: 11px;
    margin-top: 4px;
}

.enquiry-trust {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin:0;
    margin-top: 10px;
}

.enquiry-status {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0;
    min-height: 0;
}

.enquiry-status:empty {
    display: none;
}

.enquiry-status.success,
.enquiry-status.error {
    margin: 12px 0 0;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}

.enquiry-status.success {
    color: var(--primary-dark);
    background: var(--primary-tint);
    border: 1px solid rgba(30, 30, 72, 0.25);
}

.enquiry-status.error {
    color: var(--accent-dark);
    background: rgba(233, 53, 123, 0.1);
    border: 1px solid rgba(196, 31, 99, 0.3);
}

/* ===== Grid / Cards ===== */
.grid {
    display: grid;
    gap: 26px;
    margin-top: 34px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    counter-reset: card-counter;
}

.card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
    counter-increment: card-counter;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-tint), #fff);
    font-size: 1.9rem;
    color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: inset 0 0 0 1px transparent, 0 8px 18px rgba(30, 30, 72, 0.22);
}

.grid-3 .card:nth-child(even) .card-icon {
    background: linear-gradient(135deg, rgba(233, 53, 123, 0.14), #fff);
    color: var(--accent-dark);
}

.grid-3 .card:nth-child(even):hover .card-icon {
    box-shadow: inset 0 0 0 1px transparent, 0 8px 18px rgba(196, 31, 99, 0.22);
}

.card:not(:has(.card-icon))::after {
    content: counter(card-counter, decimal-leading-zero);
    display: block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    order: -1;
}

.card:not(:has(.card-icon)) {
    display: flex;
    flex-direction: column;
}

.card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.card p {
    font-size: 0.92rem;
    margin: 0;
}

.doc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.doc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.doc-card h3 {
    color: var(--primary-dark);
}

/* ===== Myth vs Fact ===== */
.myth-fact-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.myth-fact-item {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}

.myth-fact-item .myth {
    color: #b91c1c;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border);
}

.myth-fact-item .myth::before {
    content: "✘ Myth";
    display: inline-block;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: #b91c1c;
    border-radius: 6px;
    padding: 2px 8px;
    margin-right: 8px;
}

.myth-fact-item .fact {
    color: var(--text-dark);
    margin: 0;
}

.myth-fact-item .fact::before {
    content: "✔ Fact";
    display: inline-block;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    border-radius: 6px;
    padding: 2px 8px;
    margin-right: 8px;
}

/* ===== Who Should Consider (centered content) ===== */
.consider-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.consider-card > p {
    margin-bottom: 24px;
}

.consider-card .check-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

/* ===== Check list ===== */
.check-list {
    list-style: none;
    margin: 18px 0;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
}

/* ===== Trust block (two-column layout: copy + checklist card) ===== */
@media (min-width: 900px) {
    .trust-block .container {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        column-gap: 56px;
        align-items: start;
    }

    .trust-block h2 {
        grid-column: 1 / -1;
        margin-bottom: 30px;
    }

    .trust-block p {
        grid-column: 1;
        max-width: 520px;
    }

    .trust-block p:first-of-type {
        grid-row: 2;
    }

    .trust-block p:last-of-type {
        grid-row: 3;
        margin-top: 4px;
    }

    .trust-block .hero-buttons {
        grid-column: 1;
        grid-row: 4;
    }

    .trust-block .check-list {
        grid-column: 2;
        grid-row: 2 / 5;
        position: relative;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 22px;
        padding: 34px 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .trust-block .check-list::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .trust-block .check-list:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .trust-block .check-list li {
        margin-bottom: 0;
        font-weight: 600;
        color: var(--text-dark);
    }

    .trust-block .check-list li:last-child {
        grid-column: 1 / -1;
    }
}

/* ===== Quota compare (Management Quota vs NRI Quota, side by side) ===== */
.quota-compare {
    border-top: 1px solid var(--border);
}

.quota-compare .container {
    display: grid;
    gap: 30px;
}

.quota-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.quota-panel:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.quota-panel h2 {
    display: block;
    position: relative;
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.45;
    padding: 16px 22px 16px 42px;
    border-radius: var(--radius);
    margin-bottom: 26px;
    box-shadow: var(--shadow-sm);
}

.quota-panel h2::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.quota-panel h2::after {
    display: none;
}

.quota-panel:first-child h2 {
    background: var(--primary-tint);
    color: var(--primary);
}

.quota-panel:first-child h2 .heading-accent {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
}

.quota-panel:last-child h2 {
    background: rgba(233, 53, 123, 0.12);
    color: var(--accent-dark);
}

.quota-panel:last-child h2 .heading-accent {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
}

.quota-panel p:last-child {
    margin-bottom: 0;
}

@media (min-width: 900px) {
    .quota-compare .container {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.tick-list {
    list-style: none;
    margin: 28px auto 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 640px;
}

.tick-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 0;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.88rem;
    color: #fff;
}

.tick-list li i {
    color: var(--accent);
}

/* ===== Process Steps ===== */
.process-steps {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.step {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover .step-number {
    transform: scale(1.08);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 18px rgba(30, 30, 72, 0.3), 0 0 0 5px var(--primary-tint);
    transition: transform 0.3s ease;
}

.step-content h3 {
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.step-content p {
    margin: 0;
}

/* ===== CTA Strip ===== */
.cta-strip {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}

.cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 15%, rgba(233, 53, 123, 0.3), transparent 45%),
        radial-gradient(circle at 6% 90%, rgba(255, 255, 255, 0.10), transparent 40%);
    pointer-events: none;
}

.cta-strip .container {
    position: relative;
    z-index: 1;
}

.cta-strip-inner {
    max-width: 880px;
    margin: 0 auto;
}

.cta-strip h2 {
    color: #fff;
}

.cta-strip .heading-accent {
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
}

.cta-strip p {
    color: #d8efe7;
    max-width: 700px;
    margin: 0 auto 10px;
}

.cta-strip .hero-buttons {
    justify-content: center;
    margin-top: 32px;
}

.cta-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff !important;
    margin: 14px 0 6px;
    padding: 9px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ===== Rich CTA (two-column layout for content-heavy CTA strips) ===== */
@media (min-width: 900px) {
    .cta-strip-rich .cta-strip-inner {
        max-width: 1040px;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        column-gap: 52px;
        row-gap: 0;
        align-items: start;
        text-align: left;
    }

    .cta-strip-rich .cta-strip-inner > *:nth-child(1) {
        grid-column: 1 / -1;
        margin-bottom: 30px;
    }

    .cta-strip-rich .cta-strip-inner > *:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .cta-strip-rich .cta-strip-inner > *:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .cta-strip-rich .cta-strip-inner > *:nth-child(6) {
        grid-column: 1;
        grid-row: 4;
        font-weight: 600;
        color: #fff;
    }

    .cta-strip-rich .cta-strip-inner > *:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .cta-strip-rich .cta-strip-inner > *:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    .cta-strip-rich .cta-strip-inner > *:nth-child(7) {
        grid-column: 2;
        grid-row: 4;
    }

    .cta-strip-rich .cta-strip-inner p {
        max-width: none;
        margin: 0 0 14px;
    }

    .cta-strip-rich .cta-highlight,
    .cta-strip-rich .tick-list,
    .cta-strip-rich .hero-buttons {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .cta-strip-rich .cta-highlight {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        margin: 0;
        padding: 18px 22px;
    }

    .cta-strip-rich .tick-list {
        flex-direction: column;
        align-items: stretch;
        max-width: none;
        margin: 0;
        gap: 10px;
        border-radius: 0;
        border-top: none;
        border-bottom: none;
        padding: 18px 22px;
    }

    .cta-strip-rich .tick-list li {
        justify-content: flex-start;
        width: 100%;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.14);
    }

    .cta-strip-rich .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin-top: 0;
        border-radius: 0 0 16px 16px;
        border-top: none;
        padding: 20px 22px 22px;
    }

    .cta-strip-rich .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== States Grid ===== */
.states-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 32px 0;
}

.states-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.states-grid span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.states-grid span:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--primary-tint);
    border-color: var(--primary-light);
}

.states-grid span:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(233, 53, 123, 0.18);
}

.states-grid span a {
    color: inherit;
}

/* ===== Testimonials ===== */
.testi-track-outer {
    overflow: hidden;
    margin-top: 36px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testi-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testi-scroll 42s linear infinite;
}

.testi-track:hover {
    animation-play-state: paused;
}

@keyframes testi-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.testi-card {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testi-avatar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.testi-card:nth-child(even) .testi-avatar {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.testi-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.testi-meta strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.testi-college {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.testi-stars {
    color: #f5b400;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testi-text {
    color: var(--text-dark);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 850px;
    margin: 34px auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    padding: 20px 56px 20px 24px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    color: var(--ink);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--primary-tint);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 28px;
    height: 28px;
    transform: translateY(-50%) rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-item.active .faq-question::after {
    content: "+";
    transform: translateY(-50%) rotate(45deg);
    background: var(--accent);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 24px 20px;
}

.faq-answer p {
    margin: 0 0 10px;
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(180deg, var(--primary-dark), #0a0a18);
    color: #d9d9ea;
}

.footer-offices {
    padding: 26px 22px;
    text-align: center;
}

.footer-offices-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9a9ab8;
    margin-bottom: 14px;
}

.footer-offices-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.footer-offices-list span:not(.dot) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-offices-list i {
    color: var(--accent);
}

.footer-offices-list .dot {
    color: #4a4a6e;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 18px 22px;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin: 0;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(233, 53, 123, 0.4);
    background: rgba(233, 53, 123, 0.12);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 26px;
    right: 26px;
    background: linear-gradient(135deg, var(--whatsapp), #128c4a);
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 26px rgba(18, 140, 74, 0.4);
    z-index: 200;
    animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 10px 26px rgba(18, 140, 74, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.55);
    }
    70% {
        box-shadow: 0 10px 26px rgba(18, 140, 74, 0.4), 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 10px 26px rgba(18, 140, 74, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== Mobile Call Bar (mobile only) ===== */
.mob-call-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 250;
    padding: 10px 16px;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(18, 24, 43, 0.18);
}

.mob-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 24px rgba(196, 31, 99, 0.35);
    animation: pulse-ring-call 2.4s ease-out infinite;
}

@keyframes pulse-ring-call {
    0% {
        box-shadow: 0 10px 24px rgba(196, 31, 99, 0.35), 0 0 0 0 rgba(233, 53, 123, 0.5);
    }
    70% {
        box-shadow: 0 10px 24px rgba(196, 31, 99, 0.35), 0 0 0 10px rgba(233, 53, 123, 0);
    }
    100% {
        box-shadow: 0 10px 24px rgba(196, 31, 99, 0.35), 0 0 0 0 rgba(233, 53, 123, 0);
    }
}

/* ===== Responsive ===== */
@media (min-width: 1440px) {
    :root {
        --container-max: 1320px;
    }
    .hero {
        padding: 116px 0;
    }
    .grid-3 {
        gap: 30px;
    }
}

@media (max-width: 1080px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid .hero-inner {
        max-width: none;
    }
    .enquiry-card {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 74px;
    }
    .hero {
        padding: 25px 0 70px;
    }
    .hero-grid {
        display: grid;
        gap: 20px;
    }
    .hero h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .hero-desc {
        display: none;
    }
    .mob-call-bar {
        display: block;
    }
    .floating-whatsapp {
        bottom: 84px;
    }
    .main-nav {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
        width: 100%;
    }
    .main-nav.open {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    .main-nav a {
        display: block;
        padding: 12px 8px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .header-inner {
        grid-template-columns: auto 1fr auto auto;
        column-gap: 10px;
    }
    .menu-toggle {
        display: flex;
        grid-column: 4;
    }
    .header-buttons {
        display: flex;
        grid-column: 3;
    }
    .header-buttons .btn-call {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }
    .header-buttons .btn-text {
        display: none;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    /* Dropdown becomes a static, click-to-expand submenu on mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        min-width: 0;
        margin: 0;
        padding: 0 0 0 16px;
        background: var(--bg-light);
    }
    .has-dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .enquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .enquiry-card {
        padding: 8px 20px 24px;
    }
    .hero-check-list li {
        font-size: 14px;
    }
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .states-grid span {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    .logo-img {
        height: 34px;
    }
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 76px;
        right: 16px;
    }
    .mob-call-btn {
        padding: 12px 18px;
        font-size: 0.88rem;
    }
    .step {
        flex-direction: column;
        gap: 14px;
        padding: 22px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .will-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .floating-whatsapp,
    .mob-call-btn {
        animation: none;
    }
    .testi-track {
        animation: none;
    }
    .testi-track-outer {
        overflow-x: auto;
    }
}

.text-center{
    text-align: center;
}