/* ─── Variables ─── */
:root {
    --navy: #0D1B6A;
    --teal: #7ACED3;
    --crimson: #8F3317;
    --amber: #E8A63D;
    --navy-deep: #091452;
    --navy-mid: #1E2E7A;
    --teal-light: #A8E4E9;
    --teal-dark: #4ABBC4;
    --amber-light: #F2C06A;
    --brand-muted: #5E6A8A;
    --brand-soft: #F0F3FF;
    --brand-white: #FAFBFF;
    --brand-line: #D8DEEF;
    --font-head: 'Montserrat', sans-serif;
    --font-serif: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--brand-white);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.1;
}

h1 {
    font-weight: 900;
}

h2 {
    font-weight: 800;
}

/* ─── Custom cursor ─── */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(232, 166, 61, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot {
    width: 14px;
    height: 14px;
}

/* ─── Scroll progress bar ─── */
#scrollBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 2000;
    background: linear-gradient(90deg, var(--amber), var(--teal-dark));
    width: 0%;
    transform-origin: left;
    pointer-events: none;
}

/* ─── Floating WhatsApp ─── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.3s var(--ease-back), box-shadow 0.3s;
    animation: waPulse 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
    width: 30px;
    height: 30px;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 8px 48px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.08);
    }
}

/* ─── NAV ─── */
.ng-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 64px);
    max-width: 1240px;
    z-index: 1000;
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 251, 255, 0.88);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(216, 222, 239, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(13, 27, 106, 0.06);
    transition: box-shadow 0.4s, background 0.4s;
}

.ng-nav.scrolled {
    background: rgba(250, 251, 255, 0.97);
    box-shadow: 0 8px 32px rgba(13, 27, 106, 0.1);
}

.ng-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.ng-logo .logo-wordmark {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    color: #0D1B6A;
    line-height: 1;
}

.ng-logo .logo-wordmark span {
    color: #8F3317;
}

.ng-logo .logo-tagline {
    font-family: var(--font-head);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7ACED3;
    margin-top: 3px;
    display: block;
}

.ng-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.ng-nav-links a {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--brand-muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.ng-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s var(--ease-expo);
}

.ng-nav-links a:hover {
    color: var(--navy);
}

.ng-nav-links a:hover::after {
    width: 100%;
}

.btn-primary-ng {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    padding: 13px 24px;
    border-radius: 6px;
    border: none;
    cursor: none;
    text-decoration: none;
    transition: all 0.3s var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary-ng::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-110%);
    transition: transform 0.4s var(--ease-expo);
}

.btn-primary-ng:hover::after {
    transform: translateX(0);
}

.btn-primary-ng:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 166, 61, 0.4);
    color: #fff;
}

.btn-primary-ng .btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-expo);
}

.btn-primary-ng:hover .btn-arrow {
    transform: translateX(4px);
}

/* ─── Section utilities ─── */
.section-tag {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--amber);
}

.section-tag.teal {
    color: var(--teal-dark);
}

.section-tag.teal::before {
    background: var(--teal-dark);
}

/* ─── SECTION 1: HERO ─── */
.hero-contact {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: var(--brand-white);
    display: flex;
    align-items: center;
}

.hero-contact-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(216, 222, 239, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(216,
                222,
                239, 0.5) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    right: -150px;
    top: -100px;
    background: radial-gradient(circle, rgba(232, 166, 61, 0.14), transparent 70%);
    animation: orbFloat 9s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    left: -100px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(124, 206, 211, 0.12), transparent 70%);
    animation: orbFloat 11s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.03);
    }
}

.hero-contact h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero-contact h1 .serif-word {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    color: var(--navy-mid);
}

.hero-contact h1 em {
    font-style: normal;
    color: var(--amber);
    position: relative;
}

.hero-contact h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), transparent);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--brand-muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 32px;
}

/* Status pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(13, 27, 106, 0.06);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28C840;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(40, 200, 64, 0);
    }
}

.status-text {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-muted);
}

/* Hero trust strip */
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--brand-line);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(124, 206, 211, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--teal-dark);
}

.trust-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-muted);
}

/* ─── SECTION 2: FORM ─── */
.form-section {
    padding: 100px 0;
    background: var(--brand-white);
}

.form-panel {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--brand-line);
    box-shadow: 0 24px 80px rgba(13, 27, 106, 0.08), 0 4px 24px rgba(13, 27, 106, 0.04);
    overflow: hidden;
}

.form-panel-header {
    padding: 36px 40px 0;
    background: linear-gradient(135deg, var(--brand-soft), #fff);
    border-bottom: 1px solid var(--brand-line);
}

.form-panel-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-panel-header p {
    font-size: 0.88rem;
    color: var(--brand-muted);
    margin-bottom: 24px;
}

/* Step indicator */
.form-steps {
    display: flex;
    align-items: center;
    gap: 0;
    padding-bottom: 28px;
}

.form-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-expo);
    border: 1.5px solid var(--brand-line);
    color: var(--brand-muted);
    background: #fff;
}

.step-num.active {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 166, 61, 0.35);
}

.step-num.done {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: #fff;
}

.step-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--brand-muted);
    transition: color 0.3s;
}

.step-label.active {
    color: var(--navy);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--brand-line);
    margin: 0 12px;
    min-width: 40px;
    position: relative;
    overflow: hidden;
}

.step-connector-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--amber);
    width: 0%;
    transition: width 0.6s var(--ease-expo);
}

.step-connector-fill.done {
    width: 100%;
}

/* Form body */
.form-body {
    padding: 36px 40px;
}

.form-page {
    display: none;
}

.form-page.active {
    display: block;
}

.ng-field {
    margin-bottom: 20px;
}

.ng-label {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--navy-mid);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.ng-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--brand-line);
    background: var(--brand-soft);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--navy);
    transition: all 0.25s var(--ease-expo);
    outline: none;
    appearance: none;
}

.ng-input:focus {
    border-color: var(--amber);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232, 166, 61, 0.1);
}

.ng-input::placeholder {
    color: var(--brand-muted);
}

.ng-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Bottleneck radio pills */
.bottleneck-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bottleneck-option {
    display: none;
}

.bottleneck-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1.5px solid var(--brand-line);
    border-radius: 10px;
    background: var(--brand-soft);
    cursor: none;
    transition: all 0.25s var(--ease-expo);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-muted);
}

.bottleneck-label:hover {
    border-color: var(--amber);
    background: rgba(232, 166, 61, 0.05);
    color: var(--navy);
}

.bottleneck-option:checked+.bottleneck-label {
    border-color: var(--amber);
    background: rgba(232, 166, 61, 0.1);
    color: var(--amber);
    box-shadow: 0 0 0 3px rgba(232, 166, 61, 0.1);
}

.bl-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bl-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-line);
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.2s;
}

.bottleneck-option:checked+.bottleneck-label .bl-check {
    background: var(--amber);
    border-color: var(--amber);
}

/* Budget dropdown */
.ng-select {
    position: relative;
}

.ng-select select {
    width: 100%;
    padding: 14px 40px 14px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--brand-line);
    background: var(--brand-soft);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--navy);
    appearance: none;
    outline: none;
    cursor: none;
    transition: all 0.25s var(--ease-expo);
}

.ng-select select:focus {
    border-color: var(--amber);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232, 166, 61, 0.1);
}

.ng-select::after {
    content: '▾';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-muted);
    pointer-events: none;
    font-size: 0.8rem;
}

/* Form nav buttons */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--brand-line);
}

.btn-form-next,
.btn-form-back {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    cursor: none;
    transition: all 0.3s var(--ease-expo);
}

.btn-form-next {
    background: var(--amber);
    color: #fff;
}

.btn-form-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 166, 61, 0.4);
}

.btn-form-back {
    background: var(--brand-soft);
    color: var(--brand-muted);
    border: 1px solid var(--brand-line);
}

.btn-form-back:hover {
    background: var(--brand-line);
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    cursor: none;
    transition: all 0.3s var(--ease-expo);
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 166, 61, 0.45);
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 48px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(124, 206, 211, 0.35);
}

.success-icon svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--brand-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Right side panel */
.contact-info-panel {
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 36px;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 206, 211, 0.1), transparent 70%);
    pointer-events: none;
}

.info-card-label {
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.info-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.info-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
}

.info-item-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.info-item-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}

/* Response time badge */
.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 206, 211, 0.1);
    border: 1px solid rgba(124, 206, 211, 0.2);
    border-radius: 100px;
    padding: 6px 14px;
    margin-top: 16px;
}

.response-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: statusPulse 2s ease-in-out infinite;
}

.response-badge span {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.06em;
}

/* Light info card */
.info-card-light {
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 16px;
}

.info-card-light h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

/* ─── SECTION 3: CALENDAR ─── */
.calendar-section {
    padding: 100px 0;
    background: var(--brand-soft);
}

.cal-header {
    text-align: center;
    margin-bottom: 60px;
}

.cal-embed {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--brand-line);
    box-shadow: 0 16px 60px rgba(13, 27, 106, 0.08);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.cal-topbar {
    background: var(--navy);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cal-topbar-title {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
}

.cal-topbar-badge {
    background: rgba(124, 206, 211, 0.15);
    border: 1px solid rgba(124, 206, 211, 0.25);
    border-radius: 100px;
    padding: 4px 12px;
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.08em;
}

.cal-body {
    padding: 40px;
}

.cal-body-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.cal-mini-month {}

.cal-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-month-name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
}

.cal-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--brand-line);
    background: var(--brand-soft);
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--brand-muted);
    transition: all 0.2s;
}

.cal-nav-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.cal-day-name {
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-muted);
    text-align: center;
    padding: 4px 0;
}

.cal-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-muted);
    cursor: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.cal-day:hover:not(.empty):not(.past) {
    background: var(--brand-soft);
    border-color: var(--brand-line);
}

.cal-day.available {
    color: var(--navy);
    font-weight: 700;
}

.cal-day.available:hover {
    background: rgba(232, 166, 61, 0.1);
    border-color: var(--amber);
    color: var(--amber);
}

.cal-day.selected {
    background: var(--amber);
    color: #fff;
    border-color: var(--amber);
    box-shadow: 0 4px 12px rgba(232, 166, 61, 0.35);
}

.cal-day.today {
    background: var(--brand-soft);
    border-color: var(--teal-dark);
    color: var(--teal-dark);
}

.cal-day.empty,
.cal-day.past {
    opacity: 0.25;
    cursor: default;
}

/* Time slots */
.cal-slots h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.time-slot {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--brand-line);
    background: var(--brand-soft);
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-mid);
    cursor: none;
    text-align: center;
    transition: all 0.2s var(--ease-expo);
}

.time-slot:hover {
    border-color: var(--amber);
    background: rgba(232, 166, 61, 0.08);
    color: var(--amber);
}

.time-slot.selected {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
}

.time-slot.booked {
    opacity: 0.35;
    cursor: default;
    text-decoration: line-through;
}

.cal-book-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: none;
    transition: all 0.3s var(--ease-expo);
}

.cal-book-btn:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 27, 106, 0.25);
}

/* ─── SECTION 4: WHATSAPP ─── */
.wa-section {
    padding: 80px 0;
    background: var(--brand-white);
}

.wa-card {
    background: linear-gradient(135deg, #075E54, #128C7E);
    border-radius: 24px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.wa-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.wa-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.wa-content {
    position: relative;
    z-index: 2;
}

.wa-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.wa-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 480px;
}

.wa-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.wa-big-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 18px 36px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.3s var(--ease-back);
}

.wa-big-btn:hover {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.wa-big-btn svg {
    width: 26px;
    height: 26px;
}

.wa-sub-text {
    text-align: center;
    margin-top: 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ─── SECTION 5: PRESENCE ─── */
.presence-section {
    padding: 100px 0;
    background: var(--brand-soft);
}

.presence-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 8px;
}

.map-card {
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 27, 106, 0.2);
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bg-grid {
    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: 40px 40px;
}

.map-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.map-pin {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 32px rgba(232, 166, 61, 0.5);
    animation: mapPinBounce 2.5s ease-in-out infinite;
}

.map-pin svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

@keyframes mapPinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.map-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(232, 166, 61, 0.3);
    animation: mapRingPulse 2.5s ease-out infinite;
}

.map-pulse-ring-2 {
    animation-delay: 0.8s;
    width: 180px;
    height: 180px;
    border-color: rgba(232, 166, 61, 0.15);
}

@keyframes mapRingPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.map-location-label {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.map-location-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.presence-detail-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--brand-line);
    padding: 32px;
    transition: all 0.3s var(--ease-expo);
}

.presence-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 27, 106, 0.08);
}

.pdc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pdc-icon svg {
    width: 20px;
    height: 20px;
}

.pdc-title {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-muted);
    margin-bottom: 8px;
}

.pdc-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}

.pdc-link {
    color: var(--amber);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.pdc-link:hover {
    color: var(--navy);
}

/* ─── SECTION 6: TESTIMONIALS ─── */
.testimonials-section {
    padding: 100px 0;
    background: var(--brand-white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.testi-card {
    background: var(--brand-soft);
    border-radius: 16px;
    border: 1px solid var(--brand-line);
    padding: 32px;
    position: relative;
    transition: all 0.35s var(--ease-expo);
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--brand-line);
    pointer-events: none;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(13, 27, 106, 0.1);
    border-color: transparent;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testi-star {
    color: var(--amber);
    font-size: 0.9rem;
}

.testi-quote {
    font-size: 0.9rem;
    color: var(--navy-mid);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--navy);
}

.testi-role {
    font-size: 0.72rem;
    color: var(--brand-muted);
}

.testi-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 100px;
}

/* ─── SECTION 7: FAQs ─── */
.faq-section {
    padding: 100px 0;
    background: var(--brand-soft);
}

.faq-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--brand-line);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(13, 27, 106, 0.06);
}

.faq-q {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: none;
    gap: 16px;
}

.faq-q-text {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-expo);
    color: var(--brand-muted);
    font-size: 1.2rem;
}

.faq-item.open .faq-icon {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-expo);
}

.faq-a-inner {
    padding: 0 28px 22px;
    font-size: 0.9rem;
    color: var(--brand-muted);
    line-height: 1.8;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

/* ─── SECTION 8: THREE PILLARS LINKS ─── */
.pillars-links-section {
    padding: 100px 0;
    background: var(--brand-white);
}

.pillar-link-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.pillar-link-card {
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--brand-line);
    background: var(--brand-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-expo);
    text-decoration: none;
    display: block;
}

.pillar-link-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0 0 20px 20px;
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-expo);
}

.pillar-link-card:nth-child(1)::after {
    background: var(--amber);
}

.pillar-link-card:nth-child(2)::after {
    background: var(--teal);
}

.pillar-link-card:nth-child(3)::after {
    background: var(--crimson);
}

.pillar-link-card:hover::after {
    transform: scaleX(1);
}

.pillar-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(13, 27, 106, 0.12);
    border-color: transparent;
}

.plc-num {
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.plc-watermark {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 900;
    color: var(--brand-line);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
}

.pillar-link-card:nth-child(1):hover .plc-watermark {
    color: rgba(232, 166, 61, 0.12);
}

.pillar-link-card:nth-child(2):hover .plc-watermark {
    color: rgba(124, 206, 211, 0.12);
}

.pillar-link-card:nth-child(3):hover .plc-watermark {
    color: rgba(143, 51, 23, 0.08);
}

.plc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.plc-icon.amber {
    background: linear-gradient(135deg, rgba(232, 166, 61, 0.18), rgba(232, 166, 61, 0.06));
}

.plc-icon.teal {
    background: linear-gradient(135deg, rgba(124, 206, 211, 0.18), rgba(124, 206, 211, 0.06));
}

.plc-icon.crimson {
    background: linear-gradient(135deg, rgba(143, 51, 23, 0.12), rgba(143, 51, 23, 0.04));
}

.plc-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.plc-sub {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.plc-sub.amber {
    color: var(--amber);
}

.plc-sub.teal {
    color: var(--teal-dark);
}

.plc-sub.crimson {
    color: var(--crimson);
}

.plc-desc {
    font-size: 0.86rem;
    color: var(--brand-muted);
    line-height: 1.7;
}

.plc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: gap 0.2s;
}

.pillar-link-card:nth-child(1) .plc-arrow {
    color: var(--amber);
}

.pillar-link-card:nth-child(2) .plc-arrow {
    color: var(--teal-dark);
}

.pillar-link-card:nth-child(3) .plc-arrow {
    color: var(--crimson);
}

.pillar-link-card:hover .plc-arrow {
    gap: 10px;
}

/* ─── SECTION 9: PRIVACY / DIGITAL CCTV ─── */
.privacy-section {
    padding: 80px 0;
    background: var(--brand-soft);
}

.privacy-card {
    background: var(--navy-deep);
    border-radius: 20px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 206, 211, 0.07), transparent 70%);
    pointer-events: none;
}

.privacy-icon-wrap {
    flex-shrink: 0;
}

.privacy-shield {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: rgba(124, 206, 211, 0.1);
    border: 1px solid rgba(124, 206, 211, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-shield svg {
    width: 48px;
    height: 48px;
    stroke: var(--teal);
}

.privacy-content {
    position: relative;
    z-index: 2;
}

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.privacy-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.8;
    max-width: 560px;
}

.privacy-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
}

.privacy-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

/* ─── SECTION 10: FOOTER ─── */
.ng-footer {
    background: var(--navy-deep);
    padding: 64px 0 0;
}

.footer-top {
    padding: 0 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo-area {
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo .logo-wordmark {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
}

.footer-logo .logo-wordmark span {
    color: var(--amber);
}

.footer-logo .logo-tagline {
    font-family: var(--font-head);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: 3px;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 280px;
    margin-top: 12px;
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.5);
    transition: stroke 0.2s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-btn:hover svg {
    stroke: #fff;
}

/* Newsletter */
.newsletter-wrap {
    margin-top: 16px;
}

.newsletter-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.newsletter-input:focus {
    border-color: var(--amber);
}

.newsletter-btn {
    padding: 11px 18px;
    background: var(--amber);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    cursor: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    box-shadow: 0 4px 16px rgba(232, 166, 61, 0.4);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ─── Reveal classes ─── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 1;
}

/* ─── Text highlight ─── */
.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--amber), rgba(232, 166, 61, 0.3));
    opacity: 0.3;
    border-radius: 3px;
    transition: width 0.8s var(--ease-expo);
    z-index: -1;
}

.text-highlight.highlighted::after {
    width: 100%;
}

/* ─── Company logo image ─── */
.ng-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

.footer-logo .ng-logo-img {
    width: 34px;
    height: 34px;
}

/* ─── Hamburger Button ─── */
.ng-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
    z-index: 1100;
}

.ng-hamburger:hover {
    background: var(--brand-soft);
}

.ng-hamburger .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-expo), opacity 0.3s;
}

.ng-hamburger.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ng-hamburger.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ng-hamburger.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Menu ─── */
.ng-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(250, 251, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--brand-line);
    box-shadow: 0 8px 32px rgba(13, 27, 106, 0.1);
    z-index: 998;
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.25s var(--ease-expo), transform 0.25s var(--ease-expo);
}

.ng-mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-links li a {
    display: block;
    padding: 13px 4px;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-mid, #5E6A8A);
    text-decoration: none;
    border-bottom: 1px solid var(--brand-line);
    letter-spacing: 0.01em;
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-links li:last-child a {
    border-bottom: none;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: var(--navy);
    padding-left: 6px;
}

.mobile-cta-btn {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    font-size: 0.84rem !important;
}

.nav-cta-btn {
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
     RESPONSIVE BREAKPOINTS
  ══════════════════════════════════════════════ */

/* ─── Large Desktop 1400px ─── */
@media (max-width: 1400px) {
    .ng-nav {
        padding: 0 40px;
    }

    .hero-contact .container,
    .ng-footer .container {
        padding: 0 40px;
    }
}

/* ─── Laptop 1200px ─── */
@media (max-width: 1200px) {
    .ng-nav {
        padding: 0 32px;
    }

    .ng-nav-links {
        gap: 20px;
    }

    .hero-contact .container,
    .ng-footer .container {
        padding: 0 32px;
    }
}

/* ─── Tablet Landscape 992px ─── */
@media (max-width: 992px) {

    /* Nav */
    .ng-nav {
        padding: 0 24px;
        width: 100%;
    }

    .ng-nav-links {
        display: none !important;
    }

    .nav-cta-btn {
        display: none !important;
    }

    .ng-hamburger {
        display: flex;
    }

    /* Containers */
    .hero-contact .container {
        padding: 0 24px;
    }

    .ng-footer .container {
        padding: 0 24px;
    }

    /* Hero */
    .hero-contact {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-contact h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    /* Cards */
    .wa-card {
        flex-direction: column;
        padding: 40px 28px;
        text-align: center;
    }

    .wa-content p {
        margin: 0 auto;
    }

    .privacy-card {
        flex-direction: column;
        padding: 40px 28px;
        text-align: center;
    }

    /* Grids */
    .testi-grid,
    .pillar-link-cards {
        grid-template-columns: 1fr;
    }

    .cal-body-grid {
        grid-template-columns: 1fr;
    }

    .ng-input-row {
        grid-template-columns: 1fr;
    }

    .bottleneck-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-top .row {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ─── Tablet Portrait 768px ─── */
@media (max-width: 768px) {
    .ng-nav {
        padding: 0 20px;
    }

    /* Hero */
    .hero-contact {
        padding-top: 72px;
        padding-bottom: 48px;
    }

    .hero-contact h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 0.88rem;
    }

    /* Grids */
    .bottleneck-grid {
        grid-template-columns: 1fr;
    }

    /* Form */
    .form-body,
    .form-panel-header {
        padding: 24px 20px;
    }

    /* Cards */
    .presence-detail-card {
        text-align: center;
    }

    .testi-item {
        padding: 24px;
    }

    /* Calendar */
    .cal-panel {
        padding: 20px;
    }

    .cal-grid {
        gap: 4px;
    }

    /* Footer */
    .footer-top {
        padding-bottom: 40px;
    }

    .footer-logo-area {
        margin-bottom: 32px;
    }
}

/* ─── Large Mobile 576px ─── */
@media (max-width: 576px) {
    .ng-nav {
        padding: 0 16px;
        height: 64px;
    }

    .ng-mobile-menu {
        top: 64px;
    }

    .ng-logo-img {
        width: 34px;
        height: 34px;
    }

    .logo-wordmark {
        font-size: 0.95rem;
    }

    .logo-tagline {
        font-size: 0.45rem;
    }

    /* Hero */
    .hero-contact {
        padding-top: 64px;
        padding-bottom: 40px;
    }

    .hero-contact h1 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .hero-sub {
        font-size: 0.84rem;
        margin-bottom: 24px;
    }

    .hero-contact .container {
        padding: 0 16px;
    }

    /* Buttons */
    .btn-primary-ng.large,
    .btn-ghost-ng {
        width: 100%;
        justify-content: center;
    }

    /* Status pill */
    .status-pill {
        font-size: 0.72rem;
    }

    /* Form */
    .form-panel-header {
        padding: 20px 16px;
    }

    .form-body {
        padding: 20px 16px;
    }

    .ng-input,
    .ng-textarea {
        font-size: 0.85rem;
    }

    /* Cards */
    .bottleneck-item {
        padding: 16px;
    }

    .testi-item {
        padding: 20px;
    }

    .wa-card {
        padding: 28px 20px;
    }

    .privacy-card {
        padding: 28px 20px;
    }

    /* Calendar */
    .cal-panel {
        padding: 16px;
    }

    .time-slot {
        padding: 8px 6px;
        font-size: 0.78rem;
    }

    /* Section headings */
    .section-label {
        font-size: 0.7rem;
    }

    /* Footer */
    .ng-footer {
        padding: 48px 0 24px;
    }

    .footer-logo .ng-logo-img {
        width: 30px;
        height: 30px;
    }

    .footer-copy {
        font-size: 0.7rem;
    }

    .ng-footer .container {
        padding: 0 16px;
    }
}

/* ─── Small Mobile 400px ─── */
@media (max-width: 400px) {
    .ng-nav {
        padding: 0 12px;
    }

    .ng-logo {
        gap: 6px;
    }

    .ng-logo-img {
        width: 30px;
        height: 30px;
    }

    .logo-wordmark {
        font-size: 0.85rem;
    }

    .logo-tagline {
        display: none;
    }

    /* Hero */
    .hero-contact h1 {
        font-size: clamp(1.5rem, 8vw, 1.9rem);
    }

    .hero-contact .container {
        padding: 0 12px;
    }

    /* Grids */
    .bottleneck-grid {
        grid-template-columns: 1fr;
    }

    /* Form */
    .ng-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.82rem;
    }

    .form-panel-header {
        padding: 16px 12px;
    }

    .form-body {
        padding: 16px 12px;
    }

    /* Calendar */
    .cal-day {
        height: 36px;
        font-size: 0.72rem;
    }

    .time-slot {
        padding: 7px 4px;
        font-size: 0.72rem;
    }

    /* CTA section */
    .cta-headline {
        font-size: 1.5rem !important;
    }

    /* Footer */
    .footer-logo .ng-logo-img {
        width: 26px;
        height: 26px;
    }

    .ng-footer .container {
        padding: 0 12px;
    }

    .footer-copy {
        font-size: 0.65rem;
    }
}