  :root {
            --fa-cl-primary: #6AB800;
            --fa-cl-primary-dark: #5A9C00;
            --fa-cl-primary-light: #8CD630;
            --fa-cl-primary-pale: #f0f7e8;
            --fa-cl-white: #ffffff;
            --fa-cl-dark: #1a1a1a;
            --fa-cl-gray: #6b7280;
            --fa-cl-light-gray: #f8f9fa;
            --fa-cl-border: #e5e7eb;
            --fa-cl-shadow: 0 4px 24px rgba(106, 184, 0, 0.10);
            --fa-cl-shadow-hover: 0 12px 36px rgba(106, 184, 0, 0.18);
            --fa-cl-transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ============ SECTION STYLES ============ */
        .fa-cl-contact-section {
            position: relative;
            padding: 50px 0;
            background-color: #fafbf9;
            overflow: hidden;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        /* Subtle background decorative elements */
        .fa-cl-contact-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -180px;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(106, 184, 0, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .fa-cl-contact-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -140px;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(106, 184, 0, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .fa-cl-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section heading */
        .fa-cl-section-heading {
            text-align: center;
            margin-bottom: 55px;
            animation: fa-cl-fadeInUp 0.7s ease forwards;
        }

        .fa-cl-section-heading .fa-cl-subtitle {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--fa-cl-primary);
            background: var(--fa-cl-primary-pale);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 14px;
        }

        .fa-cl-section-heading .fa-cl-title {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--fa-cl-dark);
            margin: 0;
            line-height: 1.2;
        }

        .fa-cl-section-heading .fa-cl-title span {
            color: var(--fa-cl-primary);
            position: relative;
        }

        .fa-cl-section-heading .fa-cl-title span::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(106, 184, 0, 0.2);
            border-radius: 4px;
            z-index: -1;
        }

        /* ============ INFO CARD (LEFT SIDE) ============ */
        .fa-cl-info-card {
            background: var(--fa-cl-primary);
            border-radius: 20px;
            padding: 40px 32px;
            height: 100%;
            color: var(--fa-cl-white);
            box-shadow: var(--fa-cl-shadow);
            transition: var(--fa-cl-transition);
            animation: fa-cl-fadeInUp 0.7s ease forwards;
            animation-delay: 0.1s;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .fa-cl-info-card::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.07);
            border-radius: 50%;
            pointer-events: none;
            transition: var(--fa-cl-transition);
        }

        .fa-cl-info-card:hover::before {
            transform: scale(1.5);
            background: rgba(255, 255, 255, 0.10);
        }

        .fa-cl-info-card:hover {
            box-shadow: var(--fa-cl-shadow-hover);
            transform: translateY(-6px);
        }

        .fa-cl-info-card .fa-cl-info-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 28px;
            padding-bottom: 18px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.25);
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
            color: #fff;
        }

        .fa-cl-info-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            position: relative;
            z-index: 1;
        }

        .fa-cl-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 18px;
            margin-bottom: 10px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.08);
            transition: var(--fa-cl-transition);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .fa-cl-info-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.06);
            opacity: 0;
            transition: var(--fa-cl-transition);
            border-radius: 14px;
            pointer-events: none;
        }

        .fa-cl-info-item:hover {
            background: rgba(255, 255, 255, 0.16);
            transform: translateX(6px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .fa-cl-info-item:hover::after {
            opacity: 1;
        }

        .fa-cl-icon-box {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: var(--fa-cl-transition);
            position: relative;
            z-index: 1;
        }

        .fa-cl-info-item:hover .fa-cl-icon-box {
            background: rgba(255, 255, 255, 0.35);
            transform: scale(1.08);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
        }

        .fa-cl-info-text {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .fa-cl-info-text .fa-cl-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            opacity: 0.8;
            margin-bottom: 3px;
        }

        .fa-cl-info-text .fa-cl-value {
            font-size: 0.95rem;
            font-weight: 500;
            line-height: 1.5;
            word-break: break-word;
        }

        .fa-cl-info-text .fa-cl-value a {
            color: #ffffff;
            text-decoration: none;
            transition: var(--fa-cl-transition);
            border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
        }

        .fa-cl-info-text .fa-cl-value a:hover {
            border-bottom-color: #ffffff;
            opacity: 0.9;
        }

        /* Map wrapper */
        .fa-cl-map-wrapper {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
            transition: var(--fa-cl-transition);
            position: relative;
            z-index: 1;
            aspect-ratio: 16 / 10;
            min-height: 200px;
            background: rgba(255, 255, 255, 0.1);
        }

        .fa-cl-map-wrapper:hover {
            box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
            transform: translateY(-3px);
        }

        .fa-cl-map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* ============ FORM CARD (RIGHT SIDE) ============ */
        .fa-cl-form-card {
            background: var(--fa-cl-white);
            border-radius: 20px;
            padding: 40px 32px;
            height: 100%;
            box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
            transition: var(--fa-cl-transition);
            animation: fa-cl-fadeInUp 0.7s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
            border: 1px solid var(--fa-cl-border);
        }

        .fa-cl-form-card:hover {
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11);
            border-color: #d1d5db;
        }

        .fa-cl-form-card .fa-cl-form-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--fa-cl-dark);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .fa-cl-form-card .fa-cl-form-subtitle {
            font-size: 0.9rem;
            color: var(--fa-cl-gray);
            margin-bottom: 26px;
            line-height: 1.5;
        }

        /* Form groups */
        .fa-cl-form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .fa-cl-form-group .fa-cl-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--fa-cl-dark);
            margin-bottom: 7px;
            letter-spacing: 0.4px;
            transition: var(--fa-cl-transition);
        }

        .fa-cl-input,
        .fa-cl-textarea {
            display: block;
            width: 100%;
            padding: 13px 16px;
            font-size: 0.95rem;
            font-family: inherit;
            color: var(--fa-cl-dark);
            background: var(--fa-cl-light-gray);
            border: 2px solid transparent;
            border-radius: 12px;
            outline: none;
            transition: var(--fa-cl-transition);
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
        }

        .fa-cl-input::placeholder,
        .fa-cl-textarea::placeholder {
            color: #b0b7c3;
            transition: var(--fa-cl-transition);
        }

        .fa-cl-input:hover,
        .fa-cl-textarea:hover {
            background: #f1f5f0;
            border-color: #d1d5db;
        }

        .fa-cl-input:focus,
        .fa-cl-textarea:focus {
            background: #ffffff;
            border-color: var(--fa-cl-primary);
            box-shadow: 0 0 0 5px rgba(106, 184, 0, 0.08), 0 2px 10px rgba(106, 184, 0, 0.06);
            outline: none;
        }

        .fa-cl-input:focus::placeholder,
        .fa-cl-textarea:focus::placeholder {
            opacity: 0.5;
            transform: translateX(4px);
        }

        /* Floating label animation on focus */
        .fa-cl-form-group:focus-within .fa-cl-label {
            color: var(--fa-cl-primary);
        }

        /* Textarea */
        .fa-cl-textarea {
            min-height: 130px;
            resize: vertical;
            line-height: 1.6;
        }

        /* reCAPTCHA placeholder */
        .fa-cl-recaptcha {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 18px;
            background: #f9fafb;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            margin-bottom: 22px;
            transition: var(--fa-cl-transition);
            cursor: pointer;
            user-select: none;
            max-width: 320px;
        }

        .fa-cl-recaptcha:hover {
            border-color: #cbd5e1;
            background: #f1f5f9;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .fa-cl-recaptcha-checkbox {
            width: 26px;
            height: 26px;
            border: 2px solid #cbd5e1;
            border-radius: 4px;
            background: #fff;
            flex-shrink: 0;
            transition: var(--fa-cl-transition);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fa-cl-recaptcha:hover .fa-cl-recaptcha-checkbox {
            border-color: var(--fa-cl-primary);
            box-shadow: 0 0 0 4px rgba(106, 184, 0, 0.06);
        }

        .fa-cl-recaptcha-text {
            font-size: 0.9rem;
            font-weight: 500;
            color: #374151;
            letter-spacing: 0.3px;
        }

        .fa-cl-recaptcha-badge {
            margin-left: auto;
            font-size: 0.7rem;
            color: #9ca3af;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .fa-cl-recaptcha-badge img {
            width: 28px;
            height: 28px;
            opacity: 0.7;
        }

        /* Submit button */
        .fa-cl-submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 15px 28px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.6px;
            color: var(--fa-cl-white);
            background: var(--fa-cl-primary);
            border: none;
            border-radius: 14px;
            cursor: pointer;
            transition: var(--fa-cl-transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 22px rgba(106, 184, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .fa-cl-submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            pointer-events: none;
        }

        .fa-cl-submit-btn:hover {
            background: var(--fa-cl-primary-dark);
            box-shadow: 0 10px 30px rgba(106, 184, 0, 0.45);
            transform: translateY(-3px);
            letter-spacing: 1.5px;
        }

        .fa-cl-submit-btn:hover::before {
            width: 600px;
            height: 600px;
        }

        .fa-cl-submit-btn:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 14px rgba(106, 184, 0, 0.35);
            transition: 0.1s ease;
        }

        .fa-cl-submit-btn .fa-cl-btn-icon {
            font-size: 1.1rem;
            transition: var(--fa-cl-transition);
            position: relative;
            z-index: 1;
        }

        .fa-cl-submit-btn:hover .fa-cl-btn-icon {
            transform: translateX(5px);
        }

        .fa-cl-submit-btn .fa-cl-btn-text {
            position: relative;
            z-index: 1;
        }

        /* ============ ANIMATIONS ============ */
        @keyframes fa-cl-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(35px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fa-cl-pulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(106, 184, 0, 0.5);
            }
            50% {
                box-shadow: 0 0 0 16px rgba(106, 184, 0, 0);
            }
        }

        @keyframes fa-cl-float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        /* Staggered animation delays */
        .fa-cl-info-card {
            animation-delay: 0.1s;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        .fa-cl-form-card {
            animation-delay: 0.25s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .fa-cl-info-item:nth-child(1) {
            animation: fa-cl-fadeInUp 0.6s ease forwards;
            animation-delay: 0.25s;
            opacity: 0;
        }
        .fa-cl-info-item:nth-child(2) {
            animation: fa-cl-fadeInUp 0.6s ease forwards;
            animation-delay: 0.35s;
            opacity: 0;
        }
        .fa-cl-info-item:nth-child(3) {
            animation: fa-cl-fadeInUp 0.6s ease forwards;
            animation-delay: 0.45s;
            opacity: 0;
        }

        /* ============ RESPONSIVE STYLES ============ */
        @media (max-width: 1199.98px) {
            .fa-cl-contact-section {
                padding: 60px 0;
            }
            .fa-cl-section-heading .fa-cl-title {
                font-size: 2.2rem;
            }
            .fa-cl-info-card {
                padding: 32px 24px;
            }
            .fa-cl-form-card {
                padding: 32px 24px;
            }
            .fa-cl-map-wrapper {
                aspect-ratio: 16 / 9;
                min-height: 180px;
            }
        }

        @media (max-width: 991.98px) {
            .fa-cl-contact-section {
                padding: 50px 0;
            }
            .fa-cl-section-heading {
                margin-bottom: 40px;
            }
            .fa-cl-section-heading .fa-cl-title {
                font-size: 2rem;
            }
            .fa-cl-info-card {
                margin-bottom: 30px;
                border-radius: 18px;
                padding: 30px 22px;
            }
            .fa-cl-form-card {
                border-radius: 18px;
                padding: 30px 22px;
            }
            .fa-cl-info-item {
                padding: 14px 16px;
            }
            .fa-cl-icon-box {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
                border-radius: 12px;
            }
            .fa-cl-info-text .fa-cl-value {
                font-size: 0.9rem;
            }
            .fa-cl-map-wrapper {
                aspect-ratio: 16 / 8;
                min-height: 200px;
                border-radius: 14px;
            }
            .fa-cl-recaptcha {
                max-width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .fa-cl-contact-section {
                padding: 40px 0;
            }
            .fa-cl-section-heading .fa-cl-title {
                font-size: 1.7rem;
            }
            .fa-cl-section-heading .fa-cl-subtitle {
                font-size: 0.78rem;
                padding: 6px 16px;
                letter-spacing: 2px;
            }
            .fa-cl-info-card {
                padding: 24px 18px;
                border-radius: 16px;
                margin-bottom: 24px;
            }
            .fa-cl-info-card .fa-cl-info-title {
                font-size: 1.3rem;
                margin-bottom: 20px;
                padding-bottom: 14px;
            }
            .fa-cl-form-card {
                padding: 24px 18px;
                border-radius: 16px;
            }
            .fa-cl-form-card .fa-cl-form-title {
                font-size: 1.3rem;
            }
            .fa-cl-info-item {
                padding: 12px 14px;
                gap: 12px;
                border-radius: 12px;
                margin-bottom: 8px;
            }
            .fa-cl-info-item:hover {
                transform: translateX(3px);
            }
            .fa-cl-icon-box {
                width: 38px;
                height: 38px;
                font-size: 1rem;
                border-radius: 10px;
            }
            .fa-cl-info-text .fa-cl-label {
                font-size: 0.7rem;
            }
            .fa-cl-info-text .fa-cl-value {
                font-size: 0.85rem;
            }
            .fa-cl-map-wrapper {
                aspect-ratio: 16 / 8;
                min-height: 180px;
                border-radius: 12px;
            }
            .fa-cl-input,
            .fa-cl-textarea {
                padding: 11px 14px;
                font-size: 0.9rem;
                border-radius: 10px;
            }
            .fa-cl-textarea {
                min-height: 110px;
            }
            .fa-cl-submit-btn {
                padding: 13px 22px;
                font-size: 0.9rem;
                border-radius: 12px;
                letter-spacing: 0.8px;
            }
            .fa-cl-recaptcha {
                padding: 14px 16px;
                gap: 10px;
                border-radius: 10px;
            }
            .fa-cl-recaptcha-text {
                font-size: 0.82rem;
            }
            .fa-cl-recaptcha-checkbox {
                width: 22px;
                height: 22px;
            }
        }

        @media (max-width: 575.98px) {
            .fa-cl-contact-section {
                padding: 30px 0;
            }
            .fa-cl-section-heading {
                margin-bottom: 28px;
            }
            .fa-cl-section-heading .fa-cl-title {
                font-size: 1.45rem;
            }
            .fa-cl-section-heading .fa-cl-subtitle {
                font-size: 0.7rem;
                padding: 5px 14px;
                letter-spacing: 1.8px;
            }
            .fa-cl-info-card {
                padding: 20px 14px;
                border-radius: 14px;
                margin-bottom: 20px;
            }
            .fa-cl-info-card .fa-cl-info-title {
                font-size: 1.15rem;
                margin-bottom: 16px;
                padding-bottom: 12px;
            }
            .fa-cl-form-card {
                padding: 20px 14px;
                border-radius: 14px;
            }
            .fa-cl-form-card .fa-cl-form-title {
                font-size: 1.15rem;
            }
            .fa-cl-form-card .fa-cl-form-subtitle {
                font-size: 0.8rem;
                margin-bottom: 18px;
            }
            .fa-cl-info-item {
                padding: 10px 12px;
                gap: 10px;
                border-radius: 10px;
                margin-bottom: 6px;
            }
            .fa-cl-icon-box {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
                border-radius: 9px;
            }
            .fa-cl-info-text .fa-cl-value {
                font-size: 0.8rem;
            }
            .fa-cl-map-wrapper {
                aspect-ratio: 4 / 3;
                min-height: 160px;
                border-radius: 10px;
            }
            .fa-cl-input,
            .fa-cl-textarea {
                padding: 10px 12px;
                font-size: 0.85rem;
                border-radius: 9px;
            }
            .fa-cl-textarea {
                min-height: 100px;
            }
            .fa-cl-form-group {
                margin-bottom: 15px;
            }
            .fa-cl-form-group .fa-cl-label {
                font-size: 0.78rem;
                margin-bottom: 5px;
            }
            .fa-cl-submit-btn {
                padding: 12px 20px;
                font-size: 0.85rem;
                border-radius: 10px;
                letter-spacing: 0.6px;
            }
            .fa-cl-recaptcha {
                padding: 12px 14px;
                gap: 8px;
                border-radius: 9px;
                margin-bottom: 16px;
            }
            .fa-cl-recaptcha-text {
                font-size: 0.76rem;
            }
            .fa-cl-recaptcha-checkbox {
                width: 20px;
                height: 20px;
            }
            .fa-cl-recaptcha-badge {
                font-size: 0.65rem;
            }
        }

        /* Accessibility: reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .fa-cl-info-card,
            .fa-cl-form-card,
            .fa-cl-info-item,
            .fa-cl-submit-btn,
            .fa-cl-input,
            .fa-cl-textarea,
            .fa-cl-recaptcha,
            .fa-cl-map-wrapper,
            .fa-cl-icon-box {
                animation: none !important;
                transition: none !important;
            }
        }







        /* ---------- POPUP OVERLAY ---------- */
        .cd-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .cd-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ---------- POPUP CARD ---------- */
        .cd-popup-card {
            position: relative;
            background: #000;
            border-radius: 15px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
            width: 600px;
            max-width: 95vw;
            transform: scale(0.7);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
        }

        .cd-popup-overlay.active .cd-popup-card {
            transform: scale(1);
        }

        /* ---------- VIDEO CONTAINER ---------- */
        .cd-video-container {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: #000;
        }

        .cd-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ---------- CLOSE BUTTON ---------- */
        .cd-popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 35px;
            height: 35px;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            font-size: 22px;
            color: #fff;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: bold;
            padding: 0;
            line-height: 1;
        }

        .cd-popup-close:hover {
            background: rgba(255, 0, 0, 0.8);
            border-color: #ff0000;
            transform: rotate(90deg);
        }

        /* ---------- MUTE BUTTON ---------- */
        .cd-mute-btn {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 35px;
            height: 35px;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            font-size: 18px;
            color: #fff;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .cd-mute-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: #fff;
        }

        /* ---------- RESPONSIVE DESIGN ---------- */
        @media (max-width: 640px) {
            .cd-popup-card {
                width: 95vw;
                border-radius: 12px;
            }
            
            .cd-video-container {
                height: 200px;
            }
            
            .cd-popup-close,
            .cd-mute-btn {
                width: 30px;
                height: 30px;
                font-size: 18px;
                top: 8px;
            }
            
            .cd-popup-close {
                right: 8px;
            }
            
            .cd-mute-btn {
                left: 8px;
            }
        }

        @media (max-width: 480px) {
            .cd-popup-card {
                width: 98vw;
                border-radius: 10px;
            }
            
            .cd-video-container {
                height: 180px;
            }
            
            .cd-popup-close,
            .cd-mute-btn {
                width: 28px;
                height: 28px;
                font-size: 16px;
                top: 5px;
            }
            
            .cd-popup-close {
                right: 5px;
            }
            
            .cd-mute-btn {
                left: 5px;
            }
        }



