:root {
    --primary: #0A1F44;
    --secondary: #0057FF;
    --accent: #00C8FF;
    --white: #FFFFFF;
    --grey: #64748b;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --gradient-hero: linear-gradient(135deg, #0A1F44 0%, #0d2d5e 50%, #0057FF 100%);
    --shadow-sm: 0 1px 3px rgba(10, 31, 68, 0.08);
    --shadow-md: 0 8px 30px rgba(10, 31, 68, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 31, 68, 0.15);
    --radius: 16px;
    --radius-lg: 24px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.45);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 200, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 255, 0);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 200, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 200, 255, 0.3);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    transition-delay: calc(var(--delay, 0ms));
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-premium .hero-badge,
    .hero-premium .hero-premium-title,
    .hero-premium .hero-premium-subtitle,
    .hero-premium .hero-cta-group,
    .hero-premium .hero-nap-strip,
    .hero-premium .hero-enquiry-card,
    .hero-orb,
    .hero-grid-pattern {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .btn-accent::after,
    .whatsapp-float,
    .enquiry-fab,
    .cta-banner,
    .section-eyebrow::before,
    .hero-badge i {
        animation: none !important;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

.btn-primary {
    --bs-btn-bg: var(--secondary);
    --bs-btn-border-color: var(--secondary);
    --bs-btn-hover-bg: #0046cc;
    --bs-btn-hover-border-color: #0046cc;
    --bs-btn-active-bg: #003db3;
    --bs-btn-active-border-color: #003db3;
    font-weight: 600;
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease, background 0.2s ease;
}

.btn-primary:hover,
.btn-accent:hover {
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.35);
}

.btn-outline-primary {
    --bs-btn-color: var(--secondary);
    --bs-btn-border-color: var(--secondary);
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary);
    font-weight: 600;
}

.btn-outline-light {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255,255,255,0.4);
    --bs-btn-hover-bg: rgba(255,255,255,0.1);
    --bs-btn-hover-border-color: #fff;
    font-weight: 600;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease, background 0.2s ease;
}

.btn-accent::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.btn-accent:hover {
    background: #00b8e6;
    border-color: #00b8e6;
    color: var(--primary);
}

.text-primary {
    color: var(--secondary) !important;
}

.site-logo {
    height: 82px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
}

.site-logo-sm {
    height: 62px;
    max-width: 260px;
}

.site-logo-footer {
    height: 72px;
    max-width: 300px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.site-header .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 1rem;
}

.site-main {
    padding-top: 0;
}

.site-header-wrap {
    z-index: 1030;
    width: 100%;
}

.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    padding: 0.45rem 0;
}

.top-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem 1rem;
}

.top-bar-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
}

.top-bar-phone:hover {
    color: var(--accent);
}

.top-bar-certification {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    flex: 1 1 auto;
}

.top-bar-certification i {
    color: var(--accent);
    font-size: 1rem;
}

.top-bar-tagline {
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease, transform 0.4s var(--ease-out-expo);
    border-bottom: 1px solid transparent;
}

.site-header-wrap.is-sticky .site-header {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--slate-200);
}

.site-header-wrap:not(.is-sticky) .site-header {
    animation: fadeInUp 0.6s var(--ease-out-expo) 0.1s both;
}

.mobile-menu {
    width: min(320px, 88vw);
    z-index: 1055;
}

.mobile-menu .offcanvas-body {
    overflow-y: auto;
}

.navbar-toggler {
    padding: 0.5rem;
    z-index: 1;
}

.menu-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem !important;
}

.menu-link:hover,
.menu-link:focus {
    color: var(--secondary);
}

.dropdown-menu-premium {
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    min-width: 240px;
}

.dropdown-menu-premium .dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-menu-premium .dropdown-item:hover {
    background: var(--slate-100);
    color: var(--secondary);
}

section {
    padding: 5rem 0;
}

.section-eyebrow {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.section-eyebrow.light {
    color: var(--accent);
}

.section-title {
    color: var(--primary);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 600px;
}

/* Hero Premium */
.hero-premium {
    position: relative;
    background: var(--gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 9.5rem 0 5rem;
}

.hero-nap-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-nap-strip:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(0, 200, 255, 0.35);
}

.hero-nap-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    flex: 1 1 200px;
    transition: transform 0.3s var(--ease-out-expo);
}

.hero-nap-item:hover {
    transform: translateX(4px);
}

.hero-nap-item i {
    font-size: 1.25rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.hero-nap-item:hover i {
    transform: scale(1.15);
}

.hero-nap-item small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-nap-item a,
.hero-nap-item span {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.hero-nap-item a:hover {
    color: var(--accent);
}

.hero-google-rating .rating-stars {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.hero-google-rating .bi-star-fill {
    color: #fbbf24;
    font-size: 0.8rem;
}

.hero-enquiry-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.hero-enquiry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(10, 31, 68, 0.22);
}

.hero-enquiry-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-premium-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 87, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientPulse 8s ease-in-out infinite;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: floatOrb 12s ease-in-out infinite;
}

.hero-orb-1 {
    width: 280px;
    height: 280px;
    background: rgba(0, 200, 255, 0.25);
    top: 10%;
    right: 15%;
    animation-duration: 14s;
}

.hero-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(0, 87, 255, 0.3);
    bottom: 20%;
    left: 10%;
    animation-duration: 10s;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    top: 50%;
    left: 45%;
    animation-duration: 16s;
    animation-delay: -6s;
}

.hero-premium .col-lg-6:first-child > .hero-badge {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.15s forwards, pulseRing 2.5s ease-out 1.2s infinite;
}

.hero-premium .col-lg-6:first-child > .hero-premium-title {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero-premium .col-lg-6:first-child > .hero-premium-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.45s forwards;
}

.hero-premium .col-lg-6:first-child > .hero-cta-group {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

.hero-premium .col-lg-6:first-child > .hero-nap-strip {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.75s forwards;
}

.hero-premium .hero-enquiry-card {
    opacity: 0;
    animation: fadeInRight 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 200, 255, 0.15);
    border: 1px solid rgba(0, 200, 255, 0.3);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-badge i {
    animation: iconBounce 2s ease-in-out infinite;
}

.hero-premium-title {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-premium-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}

.hero-cta-group .btn {
    font-size: 0.9375rem;
}

.hero-visual {
    position: relative;
    min-height: 420px;
}

.hero-visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-dashboard {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-blue { background: #28c840; }

.dashboard-title {
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    margin-left: 0.5rem;
}

.dashboard-body {
    padding: 1.5rem;
}

.dashboard-stat {
    margin-bottom: 1.25rem;
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    margin-bottom: 0.25rem;
}

.stat-value {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.stat-bar span {
    display: block;
    height: 100%;
    background: var(--secondary);
    border-radius: 999px;
}

.stat-bar.accent span {
    background: var(--accent);
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 100px;
    margin: 1.5rem 0;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--secondary), var(--accent));
    border-radius: 6px 6px 0 0;
    opacity: 0.85;
}

.dashboard-tags {
    display: flex;
    gap: 0.75rem;
}

.dashboard-tags span {
    background: rgba(0, 87, 255, 0.3);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 0.875rem 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.hero-float-card i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.hero-float-card strong {
    display: block;
    font-size: 1.125rem;
    color: var(--primary);
}

.hero-float-card small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.hero-float-card.card-1 {
    top: 10%;
    right: -5%;
    animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-2 {
    bottom: 15%;
    left: -5%;
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.trust-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.35s var(--ease-out-expo);
}

.trust-item:hover {
    transform: translateY(-6px);
}

.trust-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Why Section */
.why-section {
    background: var(--slate-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1.125rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.35s var(--ease-out-expo);
}

.why-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px) translateX(4px);
}

.why-card i {
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out-expo);
}

.why-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Courses Premium */
.courses-premium-section {
    background: var(--white);
}

.course-premium-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.4s var(--ease-out-expo);
}

.course-premium-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.course-premium-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.4s var(--ease-out-expo);
}

.course-premium-card:hover .course-premium-icon {
    transform: scale(1.1) rotate(-5deg);
}

.course-premium-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.course-premium-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.course-premium-topics {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.course-premium-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
}

.course-premium-link:hover {
    color: var(--primary);
}

.course-premium-link i {
    transition: transform 0.2s;
}

.course-premium-link:hover i {
    transform: translateX(4px);
}

/* Careers */
.careers-section {
    padding: 4rem 0;
}

.careers-box {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.career-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.35s var(--ease-out-expo);
    cursor: default;
}

.career-tag:hover {
    background: rgba(0, 200, 255, 0.25);
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Tools */
.tools-section {
    background: var(--slate-50);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.tool-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.35s var(--ease-out-expo);
}

.tool-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.tool-item i {
    display: block;
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    transition: transform 0.35s var(--ease-out-expo);
}

.tool-item:hover i {
    transform: scale(1.15);
}

.tool-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
}

/* Projects */
.project-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.4s var(--ease-out-expo);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
    transform: translateY(-6px);
}

.project-icon {
    width: 48px;
    height: 48px;
    background: var(--slate-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s ease, transform 0.35s var(--ease-out-expo);
}

.project-card:hover .project-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: rotate(-8deg) scale(1.08);
}

.project-card:hover .project-icon i {
    color: #fff;
}

.project-icon i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.project-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* Placement */
.placement-section {
    background: var(--white);
}

.placement-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.35s var(--ease-out-expo);
}

.placement-card:hover {
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.placement-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.35s var(--ease-out-expo);
}

.placement-card:hover i {
    transform: scale(1.12);
}

.placement-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.placement-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* Testimonials Premium */
.testimonials-premium-section {
    background: var(--slate-50);
}

.testimonial-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-tab {
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.testimonial-premium-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--slate-200);
    height: calc(100% - 1rem);
    margin: 0.5rem 0;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-quote {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.25rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-hero);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 0.9375rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--slate-200);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary);
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--slate-50);
    color: var(--secondary);
}

.faq-accordion .accordion-body {
    color: var(--text-muted);
    padding: 0 1.5rem 1.25rem;
    line-height: 1.7;
}

/* Map */
.map-section {
    background: var(--slate-50);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-info-item i {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-top: 0.25rem;
}

.contact-info-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--text-muted);
    margin: 0;
}

.contact-info-item a {
    color: var(--secondary);
    text-decoration: none;
}

.map-embed-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* CTA Banner */
.cta-banner-section {
    padding: 3rem 0 5rem;
}

.cta-banner {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    animation: ctaGlow 4s ease-in-out infinite;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 10s ease-in-out infinite;
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Page Hero (Inner Pages) */
.page-hero {
    background: var(--gradient-hero);
    padding: 10rem 0 4rem;
    color: #fff;
}

.page-hero-sm {
    padding: 9rem 0 3rem;
}

.page-breadcrumb .breadcrumb {
    margin-bottom: 1.5rem;
}

.page-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--accent);
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    max-width: 640px;
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.page-hero-meta i {
    color: var(--accent);
    margin-right: 0.35rem;
}

.course-highlight-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.course-highlight-box h3 {
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.course-highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-highlight-box li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.course-highlight-box li i {
    color: var(--accent);
}

/* Course Modules */
.course-modules-section,
.content-section {
    padding: 5rem 0;
}

.module-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    transition: all 0.2s;
}

.module-item:hover {
    border-color: var(--secondary);
    background: var(--white);
}

.module-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    min-width: 36px;
}

.module-name {
    font-weight: 600;
    color: var(--primary);
}

.course-sidebar-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.course-sidebar-card h3,
.course-sidebar-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.course-sidebar-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.related-courses {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-courses li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--slate-200);
}

.related-courses a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
}

.related-courses a:hover {
    color: var(--primary);
}

.content-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.content-list {
    color: var(--text-muted);
    line-height: 2;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.about-feature-item i {
    color: var(--secondary);
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facts-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate-200);
    color: var(--text-muted);
}

.facts-list strong {
    color: var(--secondary);
    font-size: 1.25rem;
}

/* Blog */
.blog-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
}

.blog-category {
    background: rgba(0, 87, 255, 0.1);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
}

.blog-date {
    color: var(--text-muted);
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid var(--slate-200);
    border-radius: 10px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-about {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-icon {
    color: var(--accent);
    font-size: 1.125rem;
    margin-top: 0.15rem;
}

.footer-phone,
.footer-email {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--accent);
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-trust-item i {
    color: var(--accent);
    margin-right: 0.35rem;
}

.footer-brand-name {
    display: block;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-brand-courses {
    margin-bottom: 1.25rem;
}

.footer-brand-courses li {
    margin-bottom: 0.35rem;
}

.footer-brand-courses a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-brand-courses a:hover {
    color: var(--accent);
}

.footer-brand-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.brand-nap-block {
    background: var(--surface-alt, #f8f9fb);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.brand-nap-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.brand-nap-tagline {
    display: block;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.brand-nap-courses {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.brand-nap-courses a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
}

.brand-nap-courses a:hover {
    text-decoration: underline;
}

.brand-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.brand-link-pill {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb, 13, 110, 253), 0.08);
    color: var(--primary);
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-link-pill:hover {
    background: var(--primary);
    color: #fff;
}

.map-embed-wrap iframe {
    max-width: 100%;
}

.footer-address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-contact-item {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-emails-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-emails-list a:hover {
    color: var(--accent);
}

.trust-features-section {
    padding: 2.5rem 0;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.trust-feature-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease-out-expo);
}

.trust-feature-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.trust-feature-card i {
    display: block;
    color: var(--secondary);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    transition: transform 0.35s var(--ease-out-expo);
}

.trust-feature-card:hover i {
    transform: scale(1.2);
}

.trust-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-compact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-compact-item i {
    color: var(--secondary);
}

.course-nap-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.course-nap-item {
    color: #fff;
    font-size: 0.9375rem;
}

.course-nap-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.course-nap-item a:hover {
    text-decoration: underline;
}

.enquiry-fab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1rem 0.65rem;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 12px 0 0 12px;
    box-shadow: var(--shadow-md);
    font-size: 0.75rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    transition: background 0.2s, transform 0.3s var(--ease-out-expo);
    animation: pulseRing 3s ease-out infinite;
}

.enquiry-fab i {
    writing-mode: horizontal-tb;
    font-size: 1.1rem;
}

.enquiry-fab:hover {
    background: #0046cc;
    transform: translateY(-50%) translateX(-4px);
}

.enquiry-modal .modal-content {
    border-radius: var(--radius);
    border: none;
}

.scroll-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-out-expo);
}

.scroll-to-top.show {
    display: flex;
    animation: fadeInUp 0.4s var(--ease-out-expo);
}

.scroll-to-top:hover {
    background: var(--primary);
}

.whatsapp-float {
    position: fixed;
    right: 2rem;
    bottom: 5.5rem;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    animation: iconBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #1da851;
    color: #fff;
    transform: scale(1.05);
}

/* 404 */
.not-found-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
}

.not-found-image {
    max-width: 420px;
}

.documentation-page .site-main {
    padding-top: 6rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--slate-50);
    border-radius: var(--radius);
    border: 1px solid var(--slate-200);
}

.process-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(0, 87, 255, 0.08);
    color: var(--secondary);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.table-brand {
    border-color: var(--slate-200);
}

.table-brand thead th {
    background: var(--slate-50);
    color: var(--primary);
    font-weight: 700;
    border-bottom-width: 2px;
}

.testimonial-card-sm,
.project-card-sm {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.project-card-sm i {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    display: block;
}

.project-card-sm p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.blog-read-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.blog-article {
    max-width: 720px;
}

.blog-cta-box {
    background: var(--gradient-hero);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.blog-cta-box h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.blog-cta-box p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 3.5rem 0;
    }

    .hero-premium {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-visual {
        min-height: 320px;
        margin-top: 2rem;
    }

    .hero-float-card.card-1,
    .hero-float-card.card-2 {
        display: none;
    }

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

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .site-logo {
        height: 56px;
        max-width: 200px;
    }

    .site-header .navbar {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .top-bar {
        font-size: 0.8125rem;
    }

    .top-bar-certification {
        flex: 1 1 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.75rem;
    }

    .top-bar-tagline {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-value {
        font-size: 1.375rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        padding: 2rem;
    }

    .careers-box {
        padding: 2rem;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enquiry-fab span {
        display: none;
    }

    .enquiry-fab {
        padding: 0.85rem;
        border-radius: 50% 0 0 50%;
        writing-mode: horizontal-tb;
    }
}

@media (max-width: 991.98px) {
    .trust-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.seo-home-section {
    background: var(--slate-50, #f8fafc);
    padding: 5rem 0;
}

.seo-home-block .content-text {
    max-width: 900px;
}

.seo-keyword-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.seo-keyword-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--slate-200, #e2e8f0);
    border-radius: 999px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.35s var(--ease-out-expo);
}

.seo-keyword-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ── Admin pages ── */
.admin-page .enquiry-fab {
    display: none;
}

.admin-login-section,
.admin-leads-section {
    padding: 8rem 0 4rem;
    min-height: 70vh;
}

.admin-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.admin-login-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.admin-leads-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.admin-leads-tabs .nav-link {
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.admin-leads-tabs .nav-link.active {
    background: var(--secondary);
}

.admin-leads-table th {
    background: var(--slate-50);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.admin-leads-table td {
    vertical-align: middle;
    font-size: 0.95rem;
}

.admin-leads-table .lead-message {
    max-width: 220px;
    white-space: normal;
}

.admin-stat-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .admin-login-section,
    .admin-leads-section {
        padding-top: 7rem;
    }

    .admin-card {
        padding: 1.5rem;
    }
}
