  
        /* ----- MODERN RESET – PERFECTLY BALANCED ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #9e5a4b;
            --primary-light: #f4e9e6;
            --primary-dark: #6d3f35;
            --secondary: #e3b08c;
            --secondary-light: #fbeee6;
            --gold: #c49664;
            --gold-light: #f3e4d6;
            --charcoal: #2a363b;
            --gray-soft: #fbf9f7;
            --gray-mid: #ebe1d9;
            --gray-dark: #6b6b6b;
            --white: #ffffff;
            --success: #2a7a5c;
            --error: #c45a5a;
            --error-light: #fee9e9;
            --shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 25px 45px -12px rgba(157, 90, 75, 0.15);
            --transition: all 0.25s ease;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #fffdfa;
            color: var(--charcoal);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 24px;
            position: relative;
        }

        /* ===== LANGUAGE TOGGLE CLASSES - FIXED ===== */
        .lang-tamil,
        .lang-english {
            transition: all 0.2s ease;
        }

        body.english-active .lang-tamil {
            display: none !important;
        }

        body.tamil-active .lang-english {
            display: none !important;
        }

        /* ===== FIXED: TRANSLATE ICON - ALWAYS RIGHT, DEVICE-BASED SIZE ===== */
        /* .translate-scroll-container {
            position: fixed;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            pointer-events: auto;
        }

        .translate-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 40px;
            padding: 20px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            box-shadow: var(--shadow-hover);
            border: 1px solid rgba(196, 150, 100, 0.3);
            width: 70px;
            transition: all 0.2s ease;
        }

        .translate-card:hover {
            background: white;
            border-color: var(--gold);
            width: 75px;
        }

        .lang-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 50px;
            padding: 12px 0;
            border-radius: 40px;
            background: white;
            border: 1px solid rgba(196, 150, 100, 0.15);
            transition: var(--transition);
            cursor: pointer;
        }

        .lang-btn:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            width: 54px;
        }

        .lang-btn.active {
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            border-color: var(--primary);
        }

        .lang-btn i {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .lang-btn.active i {
            color: white;
        }

        .lang-btn span {
            font-size: 13px;
            font-weight: 700;
            color: var(--charcoal);
        }

        .lang-btn.active span {
            color: white;
        }

        .lang-btn .tamil-text {
            font-family: 'Cormorant', serif;
            font-size: 16px;
            font-weight: 800;
        } */


        /* ===== FIXED: TRANSLATE ICON - ALWAYS RIGHT, STABLE SIZE ===== */
.translate-scroll-container {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    pointer-events: auto;
}

.translate-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(196, 150, 100, 0.3);
    width: 70px;
    transition: box-shadow 0.2s ease, background 0.2s ease; /* Removed width transition */
}

.translate-card:hover {
    background: white;
    border-color: var(--gold);
    /* width: 75px; REMOVED - this was causing expansion */
}

.lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px; /* Fixed width */
    height: 70px; /* Fixed height for consistency */
    padding: 8px 0;
    border-radius: 40px;
    background: white;
    border: 1px solid rgba(196, 150, 100, 0.15);
    transition: background 0.2s ease, border-color 0.2s ease; /* Removed width transition */
    cursor: pointer;
    box-sizing: border-box;
}

.lang-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    /* width: 50px; REMOVED - this was causing expansion */
}

.lang-btn.active {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    /* width: 46px; Keep same as non-active */
}

.lang-btn i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.lang-btn.active i {
    color: white;
}

.lang-btn span {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    transition: color 0.2s ease;
}

.lang-btn.active span {
    color: white;
}

.lang-btn .tamil-text {
    font-family: 'Cormorant', serif;
    font-size: 16px;
    font-weight: 800;
}

/* ===== DEVICE-BASED TRANSLATE ICON SIZES ===== */
@media (max-width: 1200px) {
    .translate-scroll-container {
        right: 8px;
    }
    .translate-card {
        width: 65px;
        padding: 18px 10px;
        gap: 14px;
    }
    .lang-btn {
        width: 43px;
        height: 65px;
        padding: 7px 0;
    }
    .lang-btn i {
        font-size: 22px;
    }
    .lang-btn span {
        font-size: 12px;
    }
    .lang-btn .tamil-text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .translate-scroll-container {
        right: 6px;
    }
    .translate-card {
        width: 60px;
        padding: 16px 8px;
        gap: 12px;
    }
    .lang-btn {
        width: 40px;
        height: 60px;
        padding: 6px 0;
    }
    .lang-btn i {
        font-size: 20px;
    }
    .lang-btn span {
        font-size: 11px;
    }
    .lang-btn .tamil-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .translate-scroll-container {
        right: 5px;
    }
    .translate-card {
        width: 55px;
        padding: 14px 6px;
        gap: 10px;
    }
    .lang-btn {
        width: 38px;
        height: 55px;
        padding: 5px 0;
    }
    .lang-btn i {
        font-size: 18px;
    }
    .lang-btn span {
        font-size: 10px;
    }
    .lang-btn .tamil-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .translate-scroll-container {
        right: 4px;
    }
    .translate-card {
        width: 50px;
        padding: 12px 5px;
        gap: 8px;
    }
    .lang-btn {
        width: 35px;
        height: 50px;
        padding: 4px 0;
    }
    .lang-btn i {
        font-size: 16px;
    }
    .lang-btn span {
        font-size: 9px;
    }
    .lang-btn .tamil-text {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .translate-scroll-container {
        right: 3px;
    }
    .translate-card {
        width: 45px;
        padding: 10px 4px;
        gap: 6px;
    }
    .lang-btn {
        width: 32px;
        height: 45px;
        padding: 3px 0;
    }
    .lang-btn i {
        font-size: 14px;
    }
    .lang-btn span {
        font-size: 8px;
    }
    .lang-btn .tamil-text {
        font-size: 10px;
    }
}



        /* ===== DEVICE-BASED TRANSLATE ICON SIZES ===== */
        @media (max-width: 1200px) {
            .translate-scroll-container {
                right: 8px;
            }

            .translate-card {
                width: 65px;
                padding: 18px 10px;
                gap: 14px;
            }

            .lang-btn {
                width: 45px;
                padding: 10px 0;
            }

            .lang-btn i {
                font-size: 22px;
            }

            .lang-btn span {
                font-size: 12px;
            }

            .lang-btn .tamil-text {
                font-size: 14px;
            }
        }

        @media (max-width: 992px) {
            .translate-scroll-container {
                right: 6px;
            }

            .translate-card {
                width: 60px;
                padding: 16px 8px;
                gap: 12px;
            }

            .lang-btn {
                width: 42px;
                padding: 9px 0;
            }

            .lang-btn i {
                font-size: 20px;
            }

            .lang-btn span {
                font-size: 11px;
            }

            .lang-btn .tamil-text {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .translate-scroll-container {
                right: 5px;
            }

            .translate-card {
                width: 55px;
                padding: 14px 6px;
                gap: 10px;
            }

            .lang-btn {
                width: 38px;
                padding: 8px 0;
            }

            .lang-btn i {
                font-size: 18px;
            }

            .lang-btn span {
                font-size: 10px;
            }

            .lang-btn .tamil-text {
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .translate-scroll-container {
                right: 4px;
            }

            .translate-card {
                width: 50px;
                padding: 12px 5px;
                gap: 8px;
            }

            .lang-btn {
                width: 35px;
                padding: 7px 0;
            }

            .lang-btn i {
                font-size: 16px;
            }

            .lang-btn span {
                font-size: 9px;
            }

            .lang-btn .tamil-text {
                font-size: 11px;
            }
        }

        @media (max-width: 400px) {
            .translate-scroll-container {
                right: 3px;
            }

            .translate-card {
                width: 45px;
                padding: 10px 4px;
                gap: 6px;
            }

            .lang-btn {
                width: 32px;
                padding: 6px 0;
            }

            .lang-btn i {
                font-size: 14px;
            }

            .lang-btn span {
                font-size: 8px;
            }

            .lang-btn .tamil-text {
                font-size: 10px;
            }
        }

        /* ===== 3D ANIMATED BACKGROUND ===== */
        .scene-3d {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            pointer-events: none;
        }

        .floating-3d-object {
            position: absolute;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(196, 150, 100, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float3d 20s infinite alternate;
        }

        .floating-3d-object:nth-child(1) {
            top: 10%;
            left: 5%;
            width: 180px;
            height: 180px;
        }

        .floating-3d-object:nth-child(2) {
            bottom: 10%;
            right: 5%;
            width: 220px;
            height: 220px;
            animation-delay: -5s;
        }

        .floating-3d-object:nth-child(3) {
            top: 30%;
            right: 15%;
            width: 150px;
            height: 150px;
            animation-delay: -2s;
        }

        @keyframes float3d {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }

            100% {
                transform: translateY(-30px) rotate(10deg);
                opacity: 0.5;
            }
        }

        /* ----- HEADER – FULLY RESPONSIVE ----- */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 1px solid var(--gray-mid);
            margin-bottom: 30px;
            margin-right: 80px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            font-weight: 700;
            font-family: 'Cormorant', serif;
            box-shadow: 0 10px 20px rgba(157, 90, 75, 0.2);
            transform: rotate(-2deg);
            flex-shrink: 0;
        }

        .logo-text h1 {
            font-family: 'Cormorant', serif;
            font-size: clamp(22px, 4vw, 28px);
            font-weight: 800;
            color: var(--charcoal);
            letter-spacing: -0.5px;
            margin-bottom: 2px;
        }

        .logo-text span {
            font-size: clamp(10px, 2vw, 12px);
            color: var(--gray-dark);
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: clamp(10px, 2vw, 20px);
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: clamp(11px, 2vw, 13px);
            color: var(--charcoal);
            white-space: nowrap;
        }

        .trust-item i {
            color: var(--gold);
            font-size: clamp(14px, 2vw, 16px);
        }

        /* ===== TWO-COLUMN LAYOUT – FULLY RESPONSIVE ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 0;
            margin-right: 80px;
        }

        @media (min-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr 1.2fr;
                gap: 40px;
            }
        }

        /* ----- LEFT COLUMN - 3D COUPLE CARD ----- */
        .left-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
            order: 2;
        }

        @media (min-width: 900px) {
            .left-content {
                order: 1;
            }
        }

        .premium-card {
            background: white;
            border-radius: 40px 40px 40px 16px;
            padding: clamp(20px, 3vw, 30px);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(196, 150, 100, 0.1);
            transition: var(--transition);
        }

        .premium-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .premium-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold));
            border-radius: 40px 40px 0 0;
        }

        .card-badge {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .legacy-badge {
            background: linear-gradient(145deg, #fef6f0, #fff9f5);
            color: var(--primary-dark);
            padding: 8px 18px;
            border-radius: 40px;
            font-size: clamp(11px, 2vw, 13px);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(157, 90, 75, 0.1);
        }

        .gem-icon {
            color: var(--gold);
            font-size: clamp(24px, 4vw, 28px);
        }

        .photo-section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 20px 0 15px 0;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--gold-light);
            flex-wrap: wrap;
        }

        .photo-section-header i {
            font-size: clamp(24px, 4vw, 28px);
            color: var(--primary);
            background: var(--primary-light);
            padding: clamp(8px, 2vw, 12px);
            border-radius: 16px;
        }

        .photo-section-header h3 {
            font-family: 'Cormorant', serif;
            font-size: clamp(22px, 4vw, 26px);
            font-weight: 800;
            color: var(--charcoal);
        }

        /* ===== FIXED: INCREASED IMAGE HEIGHT TO SHOW FULL PHOTO ===== */
        .image-3d-container {
            position: relative;
            width: 100%;
            height: auto;
            aspect-ratio: 1.2/1;
            border-radius: 28px 28px 28px 12px;
            overflow: hidden;
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
            transform: rotateY(1deg) rotateX(1deg);
            transition: var(--transition);
            border: 4px solid white;
            margin-bottom: 20px;
        }

        .image-3d-container:hover {
            transform: rotateY(0deg) rotateX(0deg) scale(1.01);
        }

        .image-3d-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-3d-container::after {
            content: '✨ 7 years';
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 40px;
            color: var(--primary-dark);
            font-weight: 600;
            font-size: clamp(11px, 2vw, 13px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 10px;
        }

        @media (min-width: 600px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .stat-card-premium {
            background: #fbf9f7;
            padding: clamp(12px, 2vw, 16px);
            border-radius: 24px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--gray-mid);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 80px;
        }

        .stat-card-premium .english {
            font-size: clamp(14px, 2vw, 16px);
            color: var(--gray-dark);
            color: var(--primary);
            font-weight: 600;
            line-height: 1.4;
        }

        .stat-card-premium .tamil {
            font-family: 'Cormorant', serif;
            font-size: clamp(14px, 2.2vw, 16px);
            font-weight: 700;
            color: var(--primary);
            line-height: 1.4;
            margin-top: 4px;
        }

        /* ===== SAMBANDHI PANEL ===== */
        .sambandhi-premium {
            background: linear-gradient(145deg, #1a2529, #0c1317);
            border-radius: 40px 40px 40px 16px;
            padding: clamp(20px, 3vw, 30px);
            color: white;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(196, 150, 100, 0.15);
            box-shadow: var(--shadow);
        }

        .sambandhi-premium::before {
            content: '॥ தமிழ் ॥';
            position: absolute;
            bottom: 10px;
            right: 15px;
            font-size: clamp(30px, 6vw, 50px);
            color: rgba(227, 176, 140, 0.05);
            font-family: 'Cormorant', serif;
            font-weight: 800;
            transform: rotate(-8deg);
            pointer-events: none;
        }

        .sambandhi-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .sambandhi-icon-premium {
            width: 60px;
            height: 60px;
            background: rgba(227, 176, 140, 0.12);
            border-radius: 20px 20px 20px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--secondary);
            border: 1px solid rgba(227, 176, 140, 0.2);
            flex-shrink: 0;
        }

        .sambandhi-header h3 {
            font-family: 'Cormorant', serif;
            font-size: clamp(26px, 4vw, 32px);
            font-weight: 800;
            color: var(--secondary-light);
        }

        .sambandhi-details {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        @media (min-width: 600px) {
            .sambandhi-details {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .sambandhi-detail-item {
            background: rgba(255, 255, 255, 0.04);
            padding: 15px;
            border-radius: 20px;
            border-left: 4px solid var(--secondary);
        }

        .sambandhi-detail-item .label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .sambandhi-detail-item .value {
            font-family: 'Cormorant', serif;
            font-size: clamp(18px, 3vw, 20px);
            font-weight: 700;
            color: var(--secondary-light);
        }

        .sambandhi-detail-item .sub {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        .quote-box {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 24px;
            border-left: 6px solid var(--secondary);
            margin-bottom: 20px;
        }

        .quote-box .tamil {
            font-family: 'Cormorant', serif;
            font-size: clamp(16px, 3vw, 20px);
            font-weight: 700;
            color: var(--secondary-light);
            display: block;
            margin-bottom: 8px;
        }

        .quote-box .english {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
        }

        .service-mini-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .service-mini-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 16px 12px;
            border-radius: 20px;
            text-align: center;
            font-size: 13px;
            border: 1px solid rgba(255, 255, 255, 0.02);
        }

        .service-mini-item i {
            color: var(--secondary);
            margin-right: 6px;
            font-size: 16px;
        }

        .family-details {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 30px;
            flex-wrap: wrap;
        }

        .family-icon {
            width: 50px;
            height: 50px;
            background: rgba(227, 176, 140, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--secondary);
            flex-shrink: 0;
        }

        .family-text .tamil {
            font-family: 'Cormorant', serif;
            font-size: clamp(16px, 3vw, 18px);
            font-weight: 700;
            color: var(--secondary-light);
            display: block;
            margin-bottom: 2px;
        }

        .family-text .english {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ===== RIGHT COLUMN: FORM CARD ===== */
        .right-column-wrapper {
            display: flex;
            flex-direction: column;
            gap: 25px;
            order: 1;
        }

        @media (min-width: 900px) {
            .right-column-wrapper {
                order: 2;
            }
        }

        .form-card-premium {
            background: white;
            border-radius: 48px 48px 48px 20px;
            padding: clamp(25px, 4vw, 35px);
            box-shadow: var(--shadow);
            border: 1px solid rgba(196, 150, 100, 0.15);
            position: relative;
            height: fit-content;
            transition: var(--transition);
            margin-bottom: 0;
        }

        .form-card-premium:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .form-card-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold));
            border-radius: 48px 48px 0 0;
        }

        .form-header-premium {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
        }

        @media (min-width: 600px) {
            .form-header-premium {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .form-header-premium h3 {
            font-family: 'Cormorant', serif;
            font-size: clamp(26px, 5vw, 32px);
            font-weight: 800;
            color: var(--charcoal);
            line-height: 1.1;
        }

        .form-header-premium h3 span {
            color: var(--primary);
            border-bottom: 3px solid var(--gold-light);
            padding-bottom: 4px;
        }

        .free-badge-premium {
            background: linear-gradient(145deg, #fef6f0, #fffdfa);
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 700;
            border: 1px solid rgba(157, 90, 75, 0.1);
            white-space: nowrap;
        }

        .form-subhead-premium {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray-dark);
            font-size: clamp(13px, 2.2vw, 14px);
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ece5df;
            flex-wrap: wrap;
        }

        .input-group-premium {
            margin-bottom: 18px;
        }

        .input-field-premium {
            position: relative;
            display: flex;
            align-items: center;
            background: #fbf9f7;
            border: 2px solid transparent;
            border-radius: 30px;
            transition: all 0.25s ease;
            min-height: 65px;
        }

        .input-field-premium:focus-within {
            background: white;
            border-color: var(--primary);
            box-shadow: 0 0 0 5px rgba(157, 90, 75, 0.05);
        }

        .input-field-premium.error {
            border-color: var(--error) !important;
            background: var(--error-light);
        }

        .input-field-premium.success {
            border-color: var(--success) !important;
            background: #f0f9f0;
        }

        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        input:-webkit-autofill:active {
            -webkit-background-clip: text;
            -webkit-text-fill-color: var(--charcoal);
            transition: background-color 5000s ease-in-out 0s;
            box-shadow: inset 0 0 20px 20px #fbf9f7;
            caret-color: var(--charcoal);
        }

        .input-icon-premium {
            position: absolute;
            left: 18px;
            color: var(--gray-dark);
            font-size: 20px;
            opacity: 0.7;
            z-index: 2;
            pointer-events: none;
        }

        .input-field-premium input,
        .input-field-premium .dropdown-selected {
            width: 100%;
            height: 65px;
            padding: 0 20px 0 55px;
            border: none;
            background: transparent;
            font-size: clamp(15px, 2.5vw, 17px);
            font-family: 'Inter', sans-serif;
            outline: none;
            color: var(--charcoal);
            font-weight: 500;
        }

        .input-field-premium input {
            cursor: text;
        }

        .input-field-premium input::placeholder {
            color: transparent;
        }

        .dropdown-selected {
            display: flex;
            align-items: center;
            cursor: pointer;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .dropdown-arrow-premium {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-dark);
            font-size: 20px;
            pointer-events: none;
            opacity: 0.7;
        }

        .floating-label-premium {
            position: absolute;
            left: 55px;
            top: 50%;
            transform: translateY(-50%);
            font-size: clamp(14px, 2.2vw, 16px);
            color: #9a8a80;
            pointer-events: none;
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            z-index: 5;
            background: transparent;
            padding: 0 4px;
            white-space: nowrap;
            max-width: calc(100% - 70px);
            overflow: hidden;
            text-overflow: ellipsis;
            transform-origin: left center;
        }

        .floating-label-premium .tamil {
            font-family: 'Cormorant', serif;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: clamp(15px, 2.5vw, 17px);
            line-height: 1.2;
        }

        .floating-label-premium .english {
            font-size: clamp(14px, 2vw, 16px);
            color: #6d3f35;
            letter-spacing: 0.3px;
            font-weight: 700;
            line-height: 1.2;
        }

        .input-field-premium.input-filled .floating-label-premium,
        .input-field-premium:focus-within .floating-label-premium {
            top: 0;
            transform: translateY(-50%) scale(0.85);
            background: white;
            padding: 4px 12px;
            left: 45px;
            border-radius: 30px;
            border: 1px solid rgba(157, 90, 75, 0.15);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            font-size: clamp(12px, 2vw, 13px);
            white-space: nowrap;
            max-width: none;
            z-index: 10;
        }

        .custom-dropdown {
            position: relative;
            width: 100%;
        }

        .dropdown-options {
            position: absolute;
            top: 72px;
            left: 0;
            width: 100%;
            max-height: 300px;
            overflow-y: auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--gray-mid);
            z-index: 50;
            display: none;
            list-style: none;
            padding: 0;
        }

        .dropdown-options.show {
            display: block;
        }

        .dropdown-options li {
            padding: 14px 20px 14px 55px;
            font-size: clamp(14px, 2.2vw, 16px);
            color: var(--charcoal);
            cursor: pointer;
            transition: background 0.1s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid var(--gray-soft);
        }

        .dropdown-options li:last-child {
            border-bottom: none;
        }

        .dropdown-options li:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        .dropdown-options li i {
            width: 20px;
            color: var(--primary);
            font-size: 16px;
        }

        .dropdown-options .no-results {
            padding: 20px;
            text-align: center;
            color: var(--gray-dark);
            font-style: italic;
        }

        .dropdown-search-box {
            padding: 12px 15px;
            border-bottom: 1px solid var(--gray-mid);
            background: white;
            position: sticky;
            top: 0;
            z-index: 51;
        }

        .dropdown-search-box input {
            width: 100%;
            padding: 12px 15px 12px 40px;
            border: 2px solid var(--gray-mid);
            border-radius: 30px;
            font-size: 14px;
            outline: none;
            background: white;
        }

        .dropdown-search-box input:focus {
            border-color: var(--primary);
        }

        .dropdown-search-box i {
            position: absolute;
            left: 28px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-dark);
            font-size: 14px;
        }

        .error-message {
            display: none;
            font-size: 13px;
            color: var(--error);
            margin-top: 8px;
            margin-left: 20px;
            font-weight: 600;
            align-items: center;
            gap: 8px;
            background: rgba(196, 90, 90, 0.05);
            padding: 6px 16px;
            border-radius: 30px;
            border-left: 4px solid var(--error);
            flex-wrap: wrap;
        }

        .error-message.show {
            display: flex;
        }

        .form-row-premium {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        @media (min-width: 600px) {
            .form-row-premium {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .checkbox-wrapper-premium {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 20px 0 20px;
            flex-wrap: wrap;
        }

        .checkbox-wrapper-premium input {
            width: 22px;
            height: 22px;
            accent-color: var(--primary);
            flex-shrink: 0;
        }

        .checkbox-label-premium {
            font-size: clamp(13px, 2.2vw, 15px);
            color: var(--charcoal);
            font-weight: 500;
        }

        .btn-submit-premium {
            width: 100%;
            height: 65px;
            background: linear-gradient(105deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 40px;
            font-size: clamp(16px, 2.5vw, 19px);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: var(--transition);
            cursor: pointer;
            margin-top: 20px;
            box-shadow: 0 15px 30px -8px rgba(157, 90, 75, 0.4);
        }

        .btn-bilingual-premium {
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1.2;
        }

        .btn-bilingual-premium .tamil {
            font-family: 'Cormorant', serif;
            font-size: clamp(16px, 3vw, 20px);
            font-weight: 800;
        }

        .btn-bilingual-premium .english {
            font-size: clamp(14px, 2vw, 16px);
            opacity: 0.9;
        }

        .secure-badge-premium {
            text-align: center;
            margin-top: 18px;
            font-size: 14px;
            color: var(--gray-dark);
            font-weight: 500;
        }

        /* ===== RIGHT COLUMN CONTACT SECTION ===== */
        .right-column-contact {
            margin-top: 25px;
            background: white;
            border-radius: 40px;
            padding: clamp(20px, 3vw, 30px);
            box-shadow: var(--shadow);
            border: 1px solid rgba(196, 150, 100, 0.1);
            width: 100%;
        }

        .contact-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .contact-header i {
            font-size: 24px;
            color: var(--primary);
        }

        .contact-header h3 {
            font-family: 'Cormorant', serif;
            font-size: 22px;
            margin: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        @media (min-width: 600px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .contact-card {
            background: linear-gradient(145deg, #fffaf5, #fff5ef);
            border-radius: 24px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid rgba(196, 150, 100, 0.15);
            transition: var(--transition);
            flex-wrap: wrap;
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: var(--gold);
        }

        .contact-icon-large {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--gold-light);
            flex-shrink: 0;
        }

        .contact-details {
            flex: 1;
            min-width: 120px;
        }

        .contact-details .service {
            font-size: 12px;
            color: var(--gray-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .contact-details .value {
            font-size: clamp(13px, 2.2vw, 16px);
            font-weight: 700;
            color: var(--charcoal);
            word-break: break-word;
        }

        .contact-social-right {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid rgba(196, 150, 100, 0.15);
            flex-wrap: wrap;
            gap: 15px;
        }

        .social-icons-right {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .social-icons-right a {
            color: var(--gray-dark);
            font-size: 22px;
            transition: var(--transition);
        }

        .social-icons-right a:hover {
            color: var(--primary);
            transform: translateY(-4px) scale(1.15);
        }

        /* ===== TRUST SHOWCASE SECTION ===== */
        .trust-showcase-section {
            margin-top: 30px;
            margin-bottom: 30px;
            background: white;
            border-radius: 40px;
            padding: clamp(25px, 4vw, 35px);
            box-shadow: var(--shadow);
            border: 1px solid rgba(196, 150, 100, 0.1);
            width: 100%;
            margin-right: 80px;
        }

        .section-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        @media (min-width: 600px) {
            .section-header {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .section-title i {
            font-size: 28px;
            color: var(--primary);
            background: var(--primary-light);
            padding: 12px;
            border-radius: 16px;
        }

        .section-title h3 {
            font-family: 'Cormorant', serif;
            font-size: clamp(22px, 4vw, 26px);
            font-weight: 800;
            color: var(--charcoal);
        }

        .section-badge {
            background: var(--gold-light);
            color: var(--primary-dark);
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .trust-badges-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        @media (min-width: 600px) {
            .trust-badges-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 900px) {
            .trust-badges-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .trust-badge-item {
            background: var(--primary-light);
            padding: 20px 15px;
            border-radius: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            transition: var(--transition);
            border: 1px solid rgba(157, 90, 75, 0.1);
        }

        .trust-badge-item:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--gold);
        }

        .trust-badge-item i {
            font-size: 32px;
            color: var(--primary);
            background: white;
            padding: 16px;
            border-radius: 20px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
        }

        .trust-badge-text .tamil {
            font-family: 'Cormorant', serif;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: clamp(15px, 2.5vw, 18px);
        }

        .trust-badge-text .english {
            font-size: 16px;
            color: var(--gray-dark);
        }

        .badge-stat {
            font-size: clamp(16px, 3vw, 20px);
            font-weight: 800;
            color: var(--primary);
            margin-top: 4px;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        @media (min-width: 600px) {
            .stories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .success-story-card {
            background: linear-gradient(145deg, #fffaf5, #fff5ef);
            border-radius: 28px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 18px;
            border: 1px solid rgba(196, 150, 100, 0.15);
            transition: var(--transition);
            flex-wrap: wrap;
        }

        .story-icon-large {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--primary);
            border: 2px solid var(--gold-light);
            flex-shrink: 0;
        }

        .story-content .couple {
            font-family: 'Cormorant', serif;
            font-weight: 800;
            color: var(--primary-dark);
            font-size: clamp(16px, 2.8vw, 22px);
        }

        .match-statistics {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: var(--gray-soft);
            border-radius: 30px;
            border: 1px solid var(--gray-mid);
            margin-top: 10px;
        }

        @media (min-width: 600px) {
            .match-statistics {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .stat-left {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            flex-wrap: wrap;
        }

        .stat-left i {
            font-size: 32px;
            color: var(--gold);
        }

        .stat-text .tamil {
            font-family: 'Cormorant', serif;
            font-size: clamp(18px, 3vw, 22px);
            font-weight: 800;
            color: var(--primary);
        }

        .stat-text .english {
            font-size: 16px;
            color: var(--gray-dark);
        }

        .stat-badge {
            background: var(--primary-light);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: clamp(13px, 2.2vw, 16px);
            font-weight: 700;
            color: var(--primary-dark);
            border: 1px solid rgba(157, 90, 75, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            width: 100%;
            justify-content: center;
        }

        @media (min-width: 600px) {
            .stat-badge {
                width: auto;
            }
        }

        /* ===== HERO BANNER ===== */
        .hero-banner-premium {
            background: linear-gradient(145deg, #fffaf5, #fff5ef);
            border-radius: 40px;
            padding: clamp(25px, 4vw, 35px);
            margin: 30px 0 50px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            align-items: center;
            border: 1px solid rgba(196, 150, 100, 0.1);
            margin-right: 80px;
        }

        @media (min-width: 900px) {
            .hero-banner-premium {
                grid-template-columns: 1.5fr 1fr;
                gap: 40px;
            }
        }

        .hero-content-premium h2 {
            font-family: 'Cormorant', serif;
            font-size: clamp(28px, 5vw, 36px);
            font-weight: 800;
            color: var(--charcoal);
            line-height: 1.1;
            margin-bottom: 15px;
        }

        .hero-content-premium h2 span {
            color: var(--primary);
            border-bottom: 3px solid var(--gold-light);
            padding-bottom: 4px;
        }

        .hero-stats-premium {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 20px;
        }

        @media (min-width: 600px) {
            .hero-stats-premium {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .hero-stat-premium {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: rgba(255, 255, 255, 0.7);
            padding: 15px;
            border-radius: 32px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(196, 150, 100, 0.15);
            transition: var(--transition);
        }

        .hero-stat-premium:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--gold);
        }

        .hero-stat-premium i {
            font-size: clamp(24px, 4vw, 32px);
            color: var(--primary);
            margin-bottom: 8px;
            background: white;
            padding: 12px;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(157, 90, 75, 0.1);
            border: 1px solid var(--gold-light);
        }

        .hero-stat-premium .tamil {
            font-family: 'Cormorant', serif;
            font-size: clamp(15px, 2.5vw, 18px);
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .hero-stat-premium .english {
            font-size: clamp(14px, 2vw, 16px);
            color: var(--gray-dark);
            font-weight: 600;
        }

        .hero-tagline-premium {
            background: white;
            padding: 25px;
            border-radius: 32px;
            border: 1px solid var(--gray-mid);
        }

        .hero-tagline-premium .tamil {
            font-family: 'Cormorant', serif;
            font-size: clamp(15px, 2.5vw, 18px);
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
            display: block;
        }

        .badge-group-premium {
            display: flex;
            gap: 12px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .badge-premium {
            background: var(--primary-light);
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(157, 90, 75, 0.1);
        }

        /* ===== AUTO-RUNNING THIRUMANAM MEMORIES GALLERY ===== */
        .gallery-premium {
            margin: 40px 0 40px;
            margin-right: 80px;
            overflow: hidden;
        }

        .gallery-title-premium {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .gallery-title-premium h3 {
            font-family: 'Cormorant', serif;
            font-size: clamp(22px, 4vw, 28px);
            font-weight: 800;
            color: var(--charcoal);
        }

        .gallery-track-container {
            overflow: hidden;
            width: 100%;
        }

        .gallery-track {
            display: flex;
            gap: 20px;
            width: fit-content;
            animation: scrollGallery 40s linear infinite;
        }

        .gallery-track.paused {
            animation-play-state: paused;
        }

        @keyframes scrollGallery {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .gallery-item-premium {
            flex: 0 0 200px;
            aspect-ratio: 1.2/1;
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
            border: 4px solid white;
        }

        @media (min-width: 600px) {
            .gallery-item-premium {
                flex: 0 0 220px;
            }
        }

        @media (min-width: 900px) {
            .gallery-item-premium {
                flex: 0 0 240px;
            }
        }

        @media (min-width: 1200px) {
            .gallery-item-premium {
                flex: 0 0 260px;
            }
        }

        .gallery-item-premium:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 35px -12px rgba(157, 90, 75, 0.2);
            border-color: var(--gold);
        }

        .gallery-item-premium img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-caption-premium {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px 15px 10px;
            font-family: 'Cormorant', serif;
            font-size: 14px;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s ease;
            text-align: center;
        }

        .gallery-item-premium:hover .gallery-caption-premium {
            opacity: 1;
        }

        /* ===== FOOTER ===== */
        .footer-premium {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 25px 0 20px;
            border-top: 1px solid var(--gray-mid);
            color: var(--gray-dark);
            font-size: clamp(11px, 2vw, 13px);
            margin-right: 80px;
            text-align: center;
        }

        @media (min-width: 600px) {
            .footer-premium {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .footer-links-premium {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links-premium a {
            color: var(--gray-dark);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links-premium a .tamil {
            font-family: 'Cormorant', serif;
            font-weight: 700;
            color: var(--primary);
            font-size: 14px;
        }

        .social-links-premium {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .social-links-premium a {
            color: var(--gray-dark);
            font-size: 20px;
            transition: var(--transition);
        }

        .social-links-premium a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* ===== RESPONSIVE MARGIN ADJUSTMENTS FOR TRANSLATE ICON ===== */
        @media (max-width: 1200px) {

            .header,
            .main-grid,
            .hero-banner-premium,
            .gallery-premium,
            .footer-premium,
            .trust-showcase-section {
                margin-right: 70px;
            }
        }

        @media (max-width: 992px) {

            .header,
            .main-grid,
            .hero-banner-premium,
            .gallery-premium,
            .footer-premium,
            .trust-showcase-section {
                margin-right: 60px;
            }
        }

        @media (max-width: 768px) {

            .header,
            .main-grid,
            .hero-banner-premium,
            .gallery-premium,
            .footer-premium,
            .trust-showcase-section {
                margin-right: 50px;
            }
        }

        @media (max-width: 576px) {

            .header,
            .main-grid,
            .hero-banner-premium,
            .gallery-premium,
            .footer-premium,
            .trust-showcase-section {
                margin-right: 45px;
            }
        }

        @media (max-width: 400px) {

            .header,
            .main-grid,
            .hero-banner-premium,
            .gallery-premium,
            .footer-premium,
            .trust-showcase-section {
                margin-right: 40px;
            }
        }

        /* ===== MODAL ===== */
        .modal-premium {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 20px;
        }

        .modal-premium.active {
            display: flex;
        }

        .modal-content-premium {
            background: white;
            border-radius: 48px;
            padding: 30px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
        }

        .modal-icon-premium {
            font-size: 70px;
            color: var(--success);
            margin-bottom: 20px;
        }

        .modal-content-premium h3 {
            font-family: 'Cormorant', serif;
            font-size: clamp(24px, 5vw, 32px);
            margin-bottom: 15px;
            color: var(--charcoal);
        }

        .modal-ref-number {
            background: var(--primary-light);
            padding: 15px;
            border-radius: 30px;
            margin: 20px 0;
            font-family: 'Inter', monospace;
            font-size: clamp(14px, 2.5vw, 16px);
            color: var(--primary-dark);
            border: 1px dashed var(--primary);
            word-break: break-word;
        }

        .modal-btn-premium {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            margin-top: 25px;
            transition: var(--transition);
        }

        .modal-btn-premium:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
