    /* ===================================================
       CSS RESET & BASE STYLES
    =================================================== */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --primary: #1A3C6E;
        --secondary: #2E6DB4;
        --accent: #C9A84C;
        --accent-light: #e8c96a;
        --bg: #F8F9FA;
        --bg-dark: #EEF2F7;
        --text: #2D3748;
        --text-light: #718096;
        --white: #FFFFFF;
        --shadow-sm: 0 2px 8px rgba(26, 60, 110, 0.10);
        --shadow-md: 0 6px 24px rgba(26, 60, 110, 0.14);
        --shadow-lg: 0 16px 48px rgba(26, 60, 110, 0.18);
        --radius: 12px;
        --radius-lg: 20px;
        --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text);
        background: var(--bg);
        line-height: 1.7;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    main,
    header,
    section,
    footer,
    .wave-divider {
        max-width: 100%;
        overflow-x: clip;
    }


    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-pad {
        padding: 90px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header .eyebrow {
        display: inline-block;
        font-family: 'Inter', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 12px;
    }

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 700;
        color: var(--primary);
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .section-header p {
        max-width: 620px;
        margin: 0 auto;
        color: var(--text-light);
        font-size: 1.05rem;
    }

    .divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 18px auto 0;
    }

    .divider span {
        display: block;
        height: 3px;
        border-radius: 2px;
    }

    .divider .line {
        width: 48px;
        background: var(--secondary);
    }

    .divider .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
    }

    /* Scroll animations */
    .fade-in {
        opacity: 0;
        transform: translateY(36px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in-left {
        opacity: 0;
        transform: translate3d(-24px, 0, 0);
        transition: opacity 0.7s ease, transform 0.7s ease;
        will-change: opacity, transform;
    }

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* ===================================================
       NAVBAR
    =================================================== */
    #navbar {
        /* position: fixed; */
        top: 0;
        background: #1A3C6E;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0;
        transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    }

    #navbar.scrolled {
        background: rgba(26, 60, 110, 0.97);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    }

    #navbar.top {
        background: #1A3C6E;
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .nav-logo .logo-icon {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, #ffffff, #ffffff);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
        box-shadow: 0 3px 12px rgba(201, 168, 76, 0.4);
    }

    .nav-logo .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }

    .nav-logo .logo-text span:first-child {
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.5px;
    }

    .nav-logo .logo-text span:last-child {
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--accent);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.88rem;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 8px;
        transition: color var(--transition), background var(--transition);
        letter-spacing: 0.3px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.12);
    }

    .nav-links a.active {
        color: var(--accent);
    }

    .nav-cta {
        background: var(--accent) !important;
        color: var(--primary) !important;
        font-weight: 700 !important;
        padding: 9px 20px !important;
        border-radius: 8px !important;
    }

    .nav-cta:hover {
        background: var(--accent-light) !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
        border: none;
        background: none;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        background: rgba(26, 60, 110, 0.98);
        backdrop-filter: blur(12px);
        padding: 16px 0 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.95rem;
        font-weight: 500;
        padding: 12px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: color var(--transition), background var(--transition);
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.05);
    }

    /* ===================================================
       HERO SECTION
    =================================================== */
    #home {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: linear-gradient(135deg, #0d2444 0%, #1A3C6E 40%, #1e5490 70%, #163360 100%);
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 80% 60% at 70% 40%, rgba(46, 109, 180, 0.3) 0%, transparent 60%),
            radial-gradient(circle at 10% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 40%);
        z-index: 0;
    }

    /* Animated background shapes */
    .hero-shapes {
        position: absolute;
        inset: 0;
        overflow: hidden;
        z-index: 0;
    }

    .shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.06;
        animation: floatShape 8s ease-in-out infinite;
    }

    .shape-1 {
        width: 600px;
        height: 600px;
        background: var(--accent);
        top: -200px;
        right: -150px;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 350px;
        height: 350px;
        background: var(--secondary);
        bottom: -100px;
        left: -80px;
        animation-delay: 3s;
        opacity: 0.08;
    }

    .shape-3 {
        width: 200px;
        height: 200px;
        background: var(--white);
        top: 30%;
        left: 20%;
        animation-delay: 5s;
        opacity: 0.03;
    }

    @keyframes floatShape {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(10deg);
        }
    }

    /* Grid lines decorative */
    .hero-grid {
        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: 60px 60px;
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        padding: 120px 0 80px;
    }

    .hero-text .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(201, 168, 76, 0.18);
        border: 1px solid rgba(201, 168, 76, 0.35);
        color: var(--accent-light);
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 7px 16px;
        border-radius: 50px;
        margin-bottom: 24px;
    }

    .hero-text .badge i {
        font-size: 0.7rem;
    }

    .hero-text h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.2rem, 4.5vw, 3.8rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.15;
        margin-bottom: 22px;
    }

    .hero-text h1 .highlight {
        color: var(--accent);
        position: relative;
        display: inline-block;
    }

    .hero-text h1 .highlight::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--accent);
        opacity: 0.4;
        border-radius: 2px;
    }

    .hero-text p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.80);
        max-width: 500px;
        margin-bottom: 36px;
        line-height: 1.75;
    }

    .hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 14px 28px;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: var(--transition);
    }

    .btn-primary {
        background: var(--accent);
        color: var(--primary);
    }

    .btn-primary:hover {
        background: var(--accent-light);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.45);
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.75);
        transform: translateY(-3px);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stat .number {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--accent);
        line-height: 1;
    }

    .hero-stat .label {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.65);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 4px;
    }

    /* Hero visual side */
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-card-stack {
        position: relative;
        width: 100%;
        max-width: 420px;
    }

    .hero-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: 28px;
        backdrop-filter: blur(8px);
    }

    .hero-card.main {
        position: relative;
        z-index: 2;
    }

    .hero-card.back {
        position: absolute;
        top: -14px;
        left: 20px;
        right: -20px;
        height: 100%;
        z-index: 1;
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .hc-logo-area {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 24px;
    }

    .hc-logo-icon {
        width: 52px;
        height: 52px;
        background: white;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    }

    .hc-logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.2;
    }

    .hc-logo-text small {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--accent);
    }

    .hero-service-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-service-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .hero-service-item .icon {
        font-size: 1.1rem;
        width: 32px;
        text-align: center;
    }

    .hero-service-item span {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 500;
    }

    .hero-service-item .check {
        margin-left: auto;
        color: #4ade80;
        font-size: 0.8rem;
    }

    /* Floating badge on hero */
    .hero-float-badge {
        position: absolute;
        bottom: -16px;
        left: -24px;
        background: var(--white);
        border-radius: 14px;
        padding: 14px 20px;
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: 12px;
        animation: floatBadge 4s ease-in-out infinite;
        z-index: 3;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    .hero-float-badge .badge-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.1rem;
    }

    .hero-float-badge .badge-text strong {
        display: block;
        font-size: 0.9rem;
        color: var(--primary);
        font-weight: 700;
    }

    .hero-float-badge .badge-text small {
        font-size: 0.72rem;
        color: var(--text-light);
    }

    /* ===================================================
       ABOUT SECTION
    =================================================== */
    #about {
        background: var(--white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: center;
    }

    .about-text .eyebrow {
        display: inline-block;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
    }

    .about-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 700;
        color: var(--primary);
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .about-text p {
        color: var(--text-light);
        font-size: 1rem;
        margin-bottom: 18px;
        line-height: 1.8;
    }

    .vm-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 32px;
        text-align: center;
    }

    .vm-card {
        padding: 22px 20px;
        border-radius: var(--radius);
        border: 1px solid #e2e8f0;
        background: var(--bg);
        transition: var(--transition);
        text-align: -webkit-center;
    }

    .vm-card:hover {
        border-color: var(--secondary);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

    .vm-card .vm-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .vm-card.vision .vm-icon {
        background: rgba(26, 60, 110, 0.1);
        color: var(--primary);
    }

    .vm-card.mission .vm-icon {
        background: rgba(46, 109, 180, 0.1);
        color: var(--secondary);
    }

    .vm-card h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .vm-card p {
        font-size: 0.88rem;
        color: var(--text-light);
        line-height: 1.65;
        margin: 0;
    }

    /* Values side */
    .values-side .values-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 30px;
        text-align: center;
    }

    .values-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .value-card {
        /* display: flex; */
        /* align-items: flex-start; */
        /* text-align: center; */
        text-align: -webkit-center;
        gap: 20px;
        padding: 24px 22px;
        background: var(--bg);
        border-radius: var(--radius);
        border: 1px solid #e2e8f0;
        transition: var(--transition);
    }

    .value-card:hover {
        border-color: var(--accent);
        box-shadow: var(--shadow-md);
        transform: translateX(6px);
    }

    .value-icon {
        width: 54px;
        margin-bottom: 10px;
        height: 54px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .value-card:nth-child(1) .value-icon {
        background: rgba(26, 60, 110, 0.1);
        color: var(--primary);
    }

    .value-card:nth-child(2) .value-icon {
        background: rgba(201, 168, 76, 0.15);
        color: #9a7a20;
    }

    .value-card:nth-child(3) .value-icon {
        background: rgba(46, 109, 180, 0.1);
        color: var(--secondary);
    }

    .value-content h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 6px;
    }

    .value-content p {
        font-size: 0.88rem;
        color: var(--text-light);
        line-height: 1.65;
    }

    /* ===================================================
       SERVICES SECTION
    =================================================== */
    #services {
        background: var(--bg);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .service-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        border: 1px solid #e2e8f0;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        cursor: default;
        text-align: -webkit-center;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transform: scaleX(0);
        transition: transform var(--transition);
        transform-origin: left;
    }

    .service-card:hover {
        border-color: transparent;
        box-shadow: var(--shadow-lg);
        transform: translateY(-8px);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon-wrap {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.9rem;
        margin-bottom: 22px;
        transition: var(--transition);
    }

    .service-card:nth-child(1) .service-icon-wrap {
        background: rgba(26, 60, 110, 0.08);
        color: var(--primary);
    }

    .service-card:nth-child(2) .service-icon-wrap {
        background: rgba(201, 168, 76, 0.12);
        color: #8a6e1e;
    }

    .service-card:nth-child(3) .service-icon-wrap {
        background: rgba(46, 109, 180, 0.1);
        color: var(--secondary);
    }

    .service-card:nth-child(4) .service-icon-wrap {
        background: rgba(26, 60, 110, 0.08);
        color: var(--primary);
    }

    .service-card:nth-child(5) .service-icon-wrap {
        background: rgba(201, 168, 76, 0.12);
        color: #8a6e1e;
    }

    .service-card:nth-child(6) .service-icon-wrap {
        background: rgba(46, 109, 180, 0.1);
        color: var(--secondary);
    }

    .service-card:hover .service-icon-wrap {
        background: var(--primary);
        color: var(--white);
        transform: scale(1.08) rotate(-4deg);
    }

    .service-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.18rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--secondary);
        transition: gap var(--transition), color var(--transition);
    }

    .service-card:hover .service-link {
        gap: 10px;
        color: var(--primary);
    }

    /* ===================================================
       OUR PROCESS SECTION
    =================================================== */
    #process {
        background: linear-gradient(160deg, #0f2545 0%, var(--primary) 50%, #1a4f8a 100%);
        position: relative;
        overflow: hidden;
    }

    #process::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
        background-size: 60px 60px;
    }

    #process .section-header h2 {
        color: var(--white);
    }

    #process .section-header p {
        color: rgba(255, 255, 255, 0.7);
    }

    .process-steps {
        display: flex;
        gap: 0;
        position: relative;
        z-index: 1;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 48px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
        z-index: 0;
    }

    .process-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 16px;
        position: relative;
        z-index: 1;
    }

    .step-num {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--primary);
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
        transition: var(--transition);
    }

    .process-step:hover .step-num {
        transform: scale(1.15);
        box-shadow: 0 10px 30px rgba(201, 168, 76, 0.55);
    }

    .step-icon {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .process-step h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 10px;
    }

    .process-step p {
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.65;
    }

    /* ===================================================
       CLIENTS / TESTIMONIALS SECTION
    =================================================== */
    #clients {
        background: var(--white);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-bottom: 60px;
    }

    .testimonial-card {
        background: var(--bg);
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        border: 1px solid #e2e8f0;
        position: relative;
        transition: var(--transition);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 18px;
        right: 24px;
        font-family: 'Playfair Display', serif;
        font-size: 5rem;
        color: var(--secondary);
        opacity: 0.1;
        line-height: 1;
    }

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-6px);
        border-color: rgba(46, 109, 180, 0.25);
    }

    .stars {
        display: flex;
        gap: 3px;
        margin-bottom: 16px;
    }

    .stars i {
        color: var(--accent);
        font-size: 0.9rem;
    }

    .testimonial-card p {
        font-size: 0.93rem;
        color: var(--text-light);
        line-height: 1.75;
        margin-bottom: 22px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 14px;
        padding-top: 18px;
        border-top: 1px solid #e2e8f0;
    }

    .author-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--white);
        flex-shrink: 0;
    }

    .testimonial-card:nth-child(1) .author-avatar {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

    .testimonial-card:nth-child(2) .author-avatar {
        background: linear-gradient(135deg, #7c3aed, #a855f7);
    }

    .testimonial-card:nth-child(3) .author-avatar {
        background: linear-gradient(135deg, #0891b2, #06b6d4);
    }

    .author-info strong {
        display: block;
        font-size: 0.92rem;
        color: var(--primary);
        font-weight: 700;
    }

    .author-info span {
        font-size: 0.78rem;
        color: var(--text-light);
    }

    /* Client logos section */
    .clients-logos-section {
        background: var(--bg);
        border-radius: var(--radius-lg);
        padding: 48px;
        text-align: center;
    }

    .clients-logos-section h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 36px;
    }

    .logos-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        align-items: center;
    }

    .logo-placeholder {
        height: 72px;
        background: var(--white);
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        gap: 8px;
    }

    .logo-placeholder:hover {
        border-color: var(--secondary);
        box-shadow: var(--shadow-sm);
        transform: translateY(-3px);
    }

    .logo-placeholder span {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-light);
        letter-spacing: 0.5px;
        text-align: center;
        padding: 8px;
    }

    .logo-placeholder i {
        color: var(--secondary);
        font-size: 1.2rem;
    }

    /* ===================================================
       CONTACT SECTION
    =================================================== */
    #contact {
        background: var(--bg);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        gap: 50px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.7rem;
        font-weight: 700;
        color: var(--primary);
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .contact-info>p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        background: var(--white);
        border-radius: var(--radius);
        border: 1px solid #e2e8f0;
        transition: var(--transition);
    }

    .contact-item:hover {
        border-color: var(--secondary);
        box-shadow: var(--shadow-sm);
    }

    .contact-item-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .contact-item:nth-child(3) .contact-item-icon {
        background: rgba(26, 60, 110, 0.1);
        color: var(--primary);
    }

    .contact-item:nth-child(4) .contact-item-icon {
        background: rgba(201, 168, 76, 0.15);
        color: #8a6e1e;
    }

    .contact-item:nth-child(5) .contact-item-icon {
        background: rgba(46, 109, 180, 0.1);
        color: var(--secondary);
    }

    .contact-item:nth-child(6) .contact-item-icon {
        background: rgba(74, 222, 128, 0.15);
        color: #16a34a;
    }

    .contact-item-text strong {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 2px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    .contact-item-text span,
    .contact-item-text a {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.5;
        display: block;
    }

    .contact-item-text a:hover {
        color: var(--secondary);
    }

    /* Contact Form */
    .contact-form-wrap {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px;
        border: 1px solid #e2e8f0;
        box-shadow: var(--shadow-sm);
    }

    .contact-form-wrap h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 28px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 7px;
    }

    .form-group label .req {
        color: #e53e3e;
        margin-left: 2px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 13px 16px;
        border: 1.5px solid #e2e8f0;
        border-radius: 10px;
        font-family: 'Inter', sans-serif;
        font-size: 0.92rem;
        color: var(--text);
        background: var(--bg);
        transition: border-color var(--transition), box-shadow var(--transition);
        outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #b0bac8;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 3px rgba(46, 109, 180, 0.12);
        background: var(--white);
    }

    .form-group input.error,
    .form-group textarea.error {
        border-color: #e53e3e;
        box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.10);
    }

    .form-group .error-msg {
        display: none;
        font-size: 0.78rem;
        color: #e53e3e;
        margin-top: 5px;
    }

    .form-group .error-msg.show {
        display: block;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .btn-submit {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: var(--white);
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: var(--transition);
    }

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(26, 60, 110, 0.35);
    }

    .form-success {
        display: none;
        text-align: center;
        padding: 28px;
    }

    .form-success.show {
        display: block;
    }

    .form-success .success-icon {
        font-size: 3rem;
        margin-bottom: 14px;
    }

    .form-success h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .form-success p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* Map */
    .map-container {
        margin-top: 60px;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        border: 1px solid #e2e8f0;
    }

    .map-container iframe {
        display: block;
        width: 100%;
        height: 380px;
        border: none;
    }

    /* ===================================================
       FOOTER
    =================================================== */
    footer {
        background: #0d2444;
        color: rgba(255, 255, 255, 0.75);
        padding: 64px 0 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand .logo-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .footer-brand .logo-icon {
        width: 44px;
        height: 44px;
        background: white;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }

    .footer-brand .logo-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--white);
    }

    .footer-brand .logo-tagline {
        font-size: 0.62rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--accent);
    }

    .footer-brand p {
        font-size: 0.88rem;
        line-height: 1.75;
        margin-bottom: 22px;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-social {
        display: flex;
        gap: 10px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.9rem;
        transition: var(--transition);
    }

    .footer-social a:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--primary);
        transform: translateY(-3px);
    }

    .footer-col h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul li a {
        font-size: 0.87rem;
        color: rgba(255, 255, 255, 0.6);
        transition: color var(--transition), padding-left var(--transition);
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .footer-col ul li a i {
        font-size: 0.7rem;
        opacity: 0.5;
    }

    .footer-col ul li a:hover {
        color: var(--accent);
        padding-left: 4px;
    }

    .footer-col ul li a:hover i {
        opacity: 1;
    }

    .footer-contact-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-contact-list li i {
        color: var(--accent);
        font-size: 0.85rem;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .footer-bottom {
        text-align: center;
        padding: 22px 0;
    }

    .footer-bottom p {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.45);
    }

    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }

    .footer-bottom-links a {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.45);
        transition: color var(--transition);
    }

    .footer-bottom-links a:hover {
        color: var(--accent);
    }

    /* ===================================================
       WHATSAPP FLOATING BUTTON
    =================================================== */
    .whatsapp-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: #25D366;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.7rem;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
        transition: var(--transition);
        text-decoration: none;
    }

    .whatsapp-btn:hover {
        background: #1ebe5c;
        transform: scale(1.12) translateY(-3px);
        box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
    }

    .whatsapp-btn::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid rgba(37, 211, 102, 0.4);
        animation: pulse 2.5s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.25);
            opacity: 0;
        }
    }

    .whatsapp-tooltip {
        position: absolute;
        right: calc(100% + 14px);
        top: 50%;
        transform: translateY(-50%);
        background: #25D366;
        color: var(--white);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 7px 14px;
        border-radius: 8px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-left-color: #25D366;
    }

    .whatsapp-btn:hover .whatsapp-tooltip {
        opacity: 1;
    }

    /* Scroll to top button */
    #scrollTop {
        position: fixed;
        bottom: 30px;
        right: 100px;
        z-index: 9998;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--primary);
        color: var(--white);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
    }

    #scrollTop.show {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    #scrollTop:hover {
        background: var(--secondary);
        transform: translateY(-3px);
    }

    /* ===================================================
       SECTION DIVIDERS
    =================================================== */
    .wave-divider {
        display: block;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .wave-divider svg {
        display: block;
        width: 100%;
    }

    /* ===================================================
       RESPONSIVE — TABLET (≤ 1024px)
    =================================================== */
    @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 120px 0 60px;
        }

        .hero-text p {
            max-width: 100%;
        }

        .hero-btns {
            justify-content: center;
        }

        .hero-stats {
            grid-template-columns: repeat(3, 1fr);
        }

        .hero-visual {
            display: none;
        }

        .about-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .testimonials-grid {
            grid-template-columns: 1fr 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 36px;
        }

        .logos-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .contact-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ===================================================
       RESPONSIVE — TABLET SMALL (≤ 768px)
    =================================================== */
    @media (max-width: 768px) {
        .section-pad {
            padding: 64px 0;
        }

        .container {
            width: 94%;
        }

        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .hero-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .hero-stat .number {
            font-size: 1.7rem;
        }

        .process-steps {
            flex-direction: column;
            gap: 0;
            align-items: flex-start;
            padding-left: 30px;
        }

        .process-steps::before {
            display: none;
        }

        .process-step {
            flex-direction: row;
            text-align: left;
            gap: 20px;
            padding: 0 0 36px 0;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            left: 27px;
            top: 56px;
            bottom: 0;
            width: 2px;
            background: rgba(201, 168, 76, 0.4);
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-num {
            flex-shrink: 0;
            margin-bottom: 0;
        }

        .step-icon {
            display: none;
        }

        .vm-cards {
            grid-template-columns: 1fr;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .contact-form-wrap {
            padding: 28px 22px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .logos-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .clients-logos-section {
            padding: 32px 22px;
        }
    }

    /* ===================================================
       RESPONSIVE — MOBILE (≤ 480px)
    =================================================== */
    @media (max-width: 480px) {
        .container {
            width: 94%;
        }

        .hero-text h1 {
            font-size: 1.9rem;
        }

        .hero-btns {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            justify-content: center;
        }

        .hero-stats {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .hero-stat:last-child {
            grid-column: span 2;
            text-align: center;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .footer-bottom-links {
            justify-content: center;
        }

        .whatsapp-btn {
            bottom: 20px;
            right: 20px;
        }

        #scrollTop {
            right: 84px;
            bottom: 20px;
        }
    }

    /* Delay utilities for staggered animations */
    .delay-1 {
        transition-delay: 0.1s !important;
    }

    .delay-2 {
        transition-delay: 0.2s !important;
    }

    .delay-3 {
        transition-delay: 0.3s !important;
    }

    .delay-4 {
        transition-delay: 0.4s !important;
    }

    .delay-5 {
        transition-delay: 0.5s !important;
    }

    .delay-6 {
        transition-delay: 0.6s !important;
    }