        .bg-visa-soft {
            background: var(--light);
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            color: var(--gold-dark);
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .section-kicker::before {
            width: 30px;
            height: 2px;
            content: "";
            border-radius: var(--radius-pill);
            background: currentColor;
        }

        .visa-hero {
            position: relative;
            min-height: 680px;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: var(--white);
        }

        .visa-hero::before {
            position: absolute;
            inset: 0;
            content: "";
            background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px,
                    transparent 1px),
                linear-gradient(90deg,
                    rgba(255, 255, 255, 0.045) 1px,
                    transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(90deg, #000, transparent 76%);
            pointer-events: none;
        }

        .visa-hero::after {
            position: absolute;
            inset: auto 0 0;
            height: 130px;
            content: "";
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0),
                    var(--white));
            pointer-events: none;
        }

        .visa-hero .container {
            position: relative;
            z-index: 2;
        }

        .visa-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            margin-bottom: 22px;
            border: 1px solid rgba(216, 183, 90, 0.34);
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.1);
            color: var(--gold-light);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .visa-hero h1 {
            max-width: 820px;
            margin-bottom: 24px;
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 700;
            line-height: 0.94;
            letter-spacing: 0;
        }

        .visa-hero p {
            max-width: 700px;
            margin-bottom: 34px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 17px;
            line-height: 1.82;
        }

        .visa-hero-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .btn-visa,
        .btn-visa-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 52px;
            padding: 13px 24px;
            border-radius: var(--radius-pill);
            font-family: var(--font-body);
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
                background 0.28s var(--ease), color 0.28s var(--ease),
                border-color 0.28s var(--ease);
        }

        .btn-visa {
            border: 1px solid rgba(216, 183, 90, 0.8);
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: var(--dark);
            box-shadow: var(--shadow-gold);
        }

        .btn-visa:hover,
        .btn-visa:focus {
            color: var(--dark);
            background: linear-gradient(135deg, #ffe9a8, #cfa33d);
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 22px 50px rgba(216, 183, 90, 0.36);
        }

        .btn-visa-outline {
            border: 1px solid rgba(255, 255, 255, 0.34);
            color: var(--white);
            background: rgba(255, 255, 255, 0.08);
        }

        .btn-visa-outline:hover,
        .btn-visa-outline:focus {
            color: var(--dark);
            background: var(--white);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        .visa-hero-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            max-width: 760px;
            margin-top: 48px;
        }

        .visa-stat {
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .visa-stat strong {
            display: block;
            color: var(--gold-light);
            font-size: 1.6rem;
            line-height: 1;
        }

        .visa-stat span {
            display: block;
            margin-top: 8px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.92rem;
        }

        .visa-service-card p {
            margin-bottom: 1rem !important;
        }

        .visa-service-card .btn-visa {
            /* margin-top: 1rem; */
            padding: 0.5rem 1rem;
            font-size: 14px;
            display: inline;
            /* background: #071225 !important; */
            /* color: #eeeeee; */
            border: none;
            /* border-radius: 5px; */
        }

        .visa-service-card {
            position: relative;
            height: 100%;
            padding: 30px;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: var(--white);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
                border-color 0.28s var(--ease);
        }

        .visa-service-card::after {
            position: absolute;
            inset: auto 0 0;
            height: 4px;
            content: "";
            background: linear-gradient(90deg,
                    var(--gold-light),
                    var(--gold),
                    var(--gold-dark));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.28s var(--ease);
        }

        .visa-service-card:hover {
            border-color: rgba(216, 183, 90, 0.5);
            transform: translateY(-7px);
            box-shadow: var(--shadow-md);
        }

        .visa-service-card:hover::after {
            transform: scaleX(1);
        }

        .visa-icon {
            width: 58px;
            height: 58px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: var(--dark);
            font-size: 1.5rem;
            box-shadow: 0 14px 28px rgba(216, 183, 90, 0.24);
        }

        .visa-service-card h3,
        .process-step h3,
        .why-card h3,
        .visa-form-card h3,
        .faq-item h3 {
            color: var(--heading);
            font-family: var(--font-heading);
            font-weight: 700;
            letter-spacing: 0;
        }

        .visa-service-card h3 {
            margin-bottom: 12px;
            font-size: 1.55rem;
        }

        .visa-service-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.72;
        }

        .process-wrap {
            position: relative;
        }

        .process-step {
            position: relative;
            height: 100%;
            padding: 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            background: linear-gradient(145deg, var(--dark), var(--dark-2));
            color: var(--white);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
        }

        .process-step::before {
            position: absolute;
            top: -60px;
            right: -50px;
            width: 130px;
            height: 130px;
            content: "";
            border-radius: 50%;
            background: rgba(216, 183, 90, 0.14);
        }

        .process-step:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .process-number {
            position: relative;
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: var(--dark);
            font-weight: 900;
            box-shadow: var(--shadow-gold);
        }

        .process-step h3 {
            position: relative;
            margin-bottom: 10px;
            color: var(--white);
            font-size: 1.35rem;
        }

        .process-step p {
            position: relative;
            margin: 0;
            color: rgba(255, 255, 255, 0.76);
            line-height: 1.68;
        }

        .checklist-panel,
        .coverage-panel,
        .enquiry-panel {
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .checklist-panel {
            padding: 38px;
        }

        .visa-check-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .visa-check-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--cream);
            color: var(--text);
            font-weight: 600;
        }

        .visa-check-list i {
            flex: 0 0 auto;
            color: var(--green);
            font-size: 1.15rem;
        }

        .coverage-panel {
            overflow: hidden;
        }

        .coverage-content {
            padding: 44px;
        }

        .country-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 24px;
        }

        .country-chip {
            display: flex;
            align-items: center;
            gap: 9px;
            min-height: 50px;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--white);
            color: var(--dark);
            font-weight: 700;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
        }

        .country-chip i {
            color: var(--gold-dark);
        }

        .why-section {
            position: relative;
            background: radial-gradient(circle at 12% 8%,
                    rgba(216, 183, 90, 0.14),
                    transparent 30%),
                linear-gradient(145deg, var(--dark), #071225);
            color: var(--white);
            overflow: hidden;
        }

        .why-section .section-title,
        .why-section .section-kicker {
            color: var(--white);
        }

        .why-section .section-kicker::before {
            background: var(--gold-light);
        }

        .why-section .section-copy,
        .why-card p {
            color: rgba(255, 255, 255, 0.74);
        }

        .why-card {
            height: 100%;
            padding: 26px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.06);
            color: var(--white);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform 0.28s var(--ease), background 0.28s var(--ease),
                border-color 0.28s var(--ease);
        }

        .why-card:hover {
            border-color: rgba(216, 183, 90, 0.34);
            background: rgba(255, 255, 255, 0.09);
            transform: translateY(-6px);
        }

        .why-card i {
            width: 52px;
            height: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: var(--dark);
            font-size: 1.45rem;
        }

        .why-card h3 {
            margin-bottom: 10px;
            color: var(--white);
            font-size: 1.28rem;
        }

        .why-card p {
            margin: 0;
            line-height: 1.68;
        }

        .enquiry-panel {
            padding: 38px;
        }

        .visa-form-card {
            padding: 36px;
            border-radius: var(--radius-lg);
            background: radial-gradient(circle at top right,
                    rgba(216, 183, 90, 0.18),
                    transparent 36%),
                linear-gradient(145deg, var(--dark), var(--dark-2));
            color: var(--white);
        }

        .visa-form-card h3 {
            margin-bottom: 12px;
            color: var(--white);
            font-size: 1.65rem;
        }

        .visa-form-card p {
            color: rgba(255, 255, 255, 0.74);
            line-height: 1.72;
        }

        .visa-form-card .info-line {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-top: 22px;
        }

        .visa-form-card .info-line i {
            color: var(--gold-light);
        }

        #visaForm .form-control,
        #visaForm .form-select {
            min-height: 54px;
            border-radius: 16px;
            border-color: var(--border);
            color: var(--text);
            font-size: 15px;
        }

        #visaForm .form-control:focus,
        #visaForm .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(216, 183, 90, 0.15);
        }

        #visaForm textarea.form-control {
            min-height: 124px;
        }

        .faq-item h3 {
            margin-bottom: 10px;
            font-size: 1.38rem;
        }

        .faq-answer {
            color: var(--muted);
            line-height: 1.78;
        }

        .whatsapp-float {
            position: fixed;
            right: 22px;
            bottom: 82px;
            z-index: 999;
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            font-size: 1.7rem;
            box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
            text-decoration: none;
        }

        .whatsapp-float:hover {
            color: #fff;
        }

        @media (max-width: 991.98px) {
            .visa-hero {
                min-height: 620px;
                padding: 90px 0 120px;
            }

            .visa-hero-stats,
            .visa-check-list,
            .country-grid {
                grid-template-columns: 1fr;
            }

            .coverage-img {
                min-height: 300px;
            }
        }

        @media (max-width: 575.98px) {
            .visa-hero {
                min-height: auto;
                padding: 86px 0 120px;
            }

            .visa-hero h1 {
                font-size: 3rem;
            }

            .visa-hero-actions,
            .btn-visa,
            .btn-visa-outline {
                width: 100%;
            }

            .checklist-panel,
            .coverage-content,
            .enquiry-panel,
            .visa-form-card {
                padding: 24px;
            }
        }