#explore {
    --theme-red: #e40414;
    --theme-dark: #0a0a0a;
    --theme-light: #f8f5f2;
    --theme-gold: #d4af37;
    --theme-gray: #2a2a2a;
    --gradient-red: linear-gradient(135deg, #e40414 0%, #ff2b3e 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    
    padding: 100px 0;
    background: radial-gradient(circle at 20% 50%, rgba(228, 4, 20, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                var(--theme-dark);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #fff;
    line-height: 1.6;
}

#explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--theme-red), transparent);
}

#explore .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#explore .about-inline {
    margin-bottom: 70px;
    position: relative;
}

#explore .about-inline h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--theme-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

#explore .about-inline h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 3px;
}

#explore .about-inline p {
    font-size: 1.9rem;
    max-width: 700px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

#explore .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

#explore .col-md-4 {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

#explore .card-product {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
}

#explore .card-product:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(228, 4, 20, 0.2), 0 0 0 1px rgba(228, 4, 20, 0.1);
    border-color: rgba(228, 4, 20, 0.3);
}

#explore .card-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-red);
    z-index: 1;
}

#explore .img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

#explore .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

#explore .card-product:hover .img-wrap img {
    transform: scale(1.05);
}

#explore .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#explore .badge-popular {
    background: var(--gradient-red);
    color: white;
}

#explore .badge-elite {
    background: linear-gradient(135deg, var(--theme-gold) 0%, #f7d46a 100%);
    color: var(--theme-dark);
}

#explore .info-wrap {
    padding: 25px;
    text-align: center;
}

#explore .title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    font-family: 'Playfair Display', serif;
}

#explore .desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#explore .desc strong {
    color: var(--theme-gold);
}

#explore .info-wrap ul {
    margin: 20px 0;
    text-align: left;
}

#explore .info-wrap ul li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

#explore .info-wrap ul li:last-child {
    border-bottom: none;
}

#explore .info-wrap ul li i {
    color: var(--theme-red);
    margin-right: 12px;
    font-size: 0.9rem;
}

#explore .price-wrap {
    margin: 25px 0;
    padding: 15px;
    background: rgba(228, 4, 20, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(228, 4, 20, 0.1);
}

#explore .price-new {
    color: white;
    font-weight: 800;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

#explore .price-new::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--theme-red);
    opacity: 0.5;
}

#explore .bottom-wrap {
    padding: 0 25px 25px;
}

#explore .btn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

#explore .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

#explore .btn:hover {
    box-shadow: 0 10px 20px rgba(228, 4, 20, 0.4);
    transform: translateY(-3px);
}

#explore .btn:hover::before {
    left: 100%;
}

/* Apply theme-gray to specific elements */
#explore .card-product {
    background: rgba(42, 42, 42, 0.9); /* Using theme-gray with opacity */
}

#explore .price-wrap {
    background: rgba(42, 42, 42, 0.5); /* Using theme-gray with opacity */
    border: 1px solid rgba(42, 42, 42, 0.7); /* Using theme-gray */
}

@media (max-width: 992px) {
    #explore .row {
        gap: 20px;
    }
    
    #explore .col-md-4 {
        min-width: 280px;
    }
    
    #explore .about-inline h3 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    #explore {
        padding: 60px 0;
    }
    
    #explore .about-inline {
        margin-bottom: 50px;
    }
    
    #explore .about-inline h3 {
        font-size: 2.3rem;
    }
    
    #explore .col-md-4 {
        max-width: 100%;
    }
}


#enroll {
    --theme-red: #e40414;
    --theme-gold: #d4af37;
    --theme-dark: #1a1a1a;
    --theme-light: #f8f5f2;
    --theme-gray: #f5f5f5;
    --gradient-red: linear-gradient(135deg, #e40414 0%, #ff2b3e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7d46a 100%);
    
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--theme-dark);
}

#enroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-red);
}

#enroll .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#enroll .section-header {
    margin-bottom: 70px;
}

#enroll .section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--theme-dark);
    position: relative;
    display: inline-block;
}

#enroll .section-header p {
    font-size: 2.2rem;
}

#enroll .section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 3px;
}

#enroll .section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 25px auto 0;
    color: #666;
    line-height: 1.7;
}

#enroll .row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

#enroll .col-md-6 {
    flex: 1;
    min-width: 300px;
}

/* Benefits Section */
#enroll .enroll-benefits {
    height: 100%;
    padding-right: 30px;
}

#enroll .enroll-benefits h4 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--theme-dark);
    font-family: 'Playfair Display', serif;
}

#enroll .benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

#enroll .benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#enroll .benefits-list li:last-child {
    border-bottom: none;
}

#enroll .benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

#enroll .benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

#enroll .benefit-content h5 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--theme-dark);
}

#enroll .benefit-content p {
    font-size: 1.5rem;
    color: #666;
    margin: 0;
}

#enroll select:focus option:checked {
    color: #000 !important;
}

#enroll select option:checked {
    color: #000 !important;
}

#enroll .contact-info {
    background: var(--theme-gray);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--theme-red);
}

#enroll .contact-info h5 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--theme-dark);
}

#enroll .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 1.5rem;
}

#enroll .contact-info p i {
    color: var(--theme-red);
    margin-right: 12px;
    width: 20px;
}

/* Form Styles */
#enroll .enroll-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

#enroll .enroll-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-red);
}

#enroll .form-header {
    text-align: center;
    margin-bottom: 30px;
}

#enroll .form-header h4 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--theme-dark);
    font-family: 'Playfair Display', serif;
}

#enroll .form-header p {
    color: #666;
    font-size: 2.2rem;
}

#enroll .enroll-form {
    width: 100%;
}

#enroll .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#enroll .form-group {
    flex: 1;
}

#enroll .full-width {
    flex: 100%;
}

#enroll .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

#enroll .form-control:focus {
    outline: none;
    border-color: var(--theme-red);
    box-shadow: 0 0 0 3px rgba(228, 4, 20, 0.1);
    background: white;
}

#enroll select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

#enroll textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

#enroll .form-check {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

#enroll .form-check-input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#enroll .form-check-input:checked {
    background-color: var(--theme-red);
    border-color: var(--theme-red);
}

#enroll .form-check-label {
    font-size: 1.4rem;
    color: #555;
    cursor: pointer;
}

#enroll .btn-enroll {
    width: 100%;
    padding: 18px;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#enroll .btn-enroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(228, 4, 20, 0.3);
}

#enroll .form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 2.0rem;
    color: #888;
    font-style: italic;
}

/* Stats Section */
#enroll .enrollment-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#enroll .stat-item {
    text-align: center;
    min-width: 120px;
}

#enroll .stat-number {
    font-size: 2.9rem;
    font-weight: 800;
    color: var(--theme-red);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

#enroll .stat-label {
    font-size: 2.2rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    #enroll .row {
        gap: 40px;
    }
    
    #enroll .enroll-benefits {
        padding-right: 0;
    }
    
    #enroll .section-header h3 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    #enroll {
        padding: 60px 0;
    }
    
    #enroll .section-header {
        margin-bottom: 50px;
    }
    
    #enroll .section-header h3 {
        font-size: 2.2rem;
    }
    
    #enroll .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    #enroll .enrollment-stats {
        gap: 30px;
    }
    
    #enroll .stat-item {
        min-width: 100px;
    }
    
    #enroll .enroll-form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    #enroll .enrollment-stats {
        gap: 20px;
    }
    
    #enroll .stat-item {
        min-width: 45%;
    }
}

.hero-video-cta {
    position: relative;
    padding: 140px 20px;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.85), rgba(20, 20, 20, 0.9)),
        radial-gradient(circle at 30% 30%, rgba(228, 4, 20, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        url('../new_images/cocktails_banner.webp') center/cover no-repeat fixed !important;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Animated gradient overlay */
.hero-video-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            rgba(228, 4, 20, 0.08) 0%, 
            transparent 25%,
            rgba(212, 175, 55, 0.05) 50%,
            transparent 75%,
            rgba(228, 4, 20, 0.08) 100%);
    animation: gradientShift 20s ease-in-out infinite;
    z-index: 1;
}

/* Subtle moving particles effect */
.hero-video-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(228, 4, 20, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(3px 3px at 80px 40px, rgba(228, 4, 20, 0.2), transparent),
        radial-gradient(2px 2px at 60px 90px, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(3px 3px at 90px 60px, rgba(228, 4, 20, 0.1), transparent);
    background-size: 200px 200px;
    animation: particles 20s linear infinite;
    z-index: 2;
    opacity: 0.3;
}

.hero-video-cta .container {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 70px 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.quote-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #e40414, 
        #d4af37, 
        #e40414, 
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-video-cta h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    position: relative;
    padding-bottom: 30px;
}

.hero-video-cta h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #e40414, 
        #d4af37, 
        #e40414, 
        transparent);
    border-radius: 2px;
    filter: drop-shadow(0 0 8px rgba(228, 4, 20, 0.5));
}

.hero-video-cta .lead-text {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 60px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 50px;
    background: linear-gradient(135deg, 
        rgba(228, 4, 20, 0.9) 0%, 
        rgba(228, 4, 20, 0.7) 100%);
    color: white;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 
        0 15px 35px rgba(228, 4, 20, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.video-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.9) 0%, 
        rgba(228, 4, 20, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.video-cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.video-cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(228, 4, 20, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-cta-btn:hover::before {
    opacity: 1;
}

.video-cta-btn:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.video-cta-btn .btn-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-cta-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.video-cta-btn .btn-text {
    position: relative;
    letter-spacing: 1px;
    font-size: 1.9rem;
}

.video-cta-btn .btn-text::after {
    content: '→';
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.video-cta-btn:hover .btn-text::after {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes particles {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-200px) translateX(100px); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Floating animation for button */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        box-shadow: 0 15px 35px rgba(228, 4, 20, 0.3);
    }
    50% { 
        transform: translateY(-10px) scale(1.02); 
        box-shadow: 0 25px 45px rgba(228, 4, 20, 0.4);
    }
}

.video-cta-btn {
    animation: float 5s ease-in-out infinite;
}

/* Responsive design */
@media (max-width: 992px) {
    .hero-video-cta {
        padding: 100px 20px;
        min-height: 70vh;
    }
    
    .hero-video-cta h1 {
        font-size: 2.8rem;
    }
    
    .quote-content {
        padding: 50px 30px;
    }
    
    .video-cta-btn {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-video-cta {
        padding: 80px 20px;
        background-attachment: scroll;
    }
    
    .hero-video-cta h1 {
        font-size: 2.2rem;
        padding-bottom: 20px;
    }
    
    .hero-video-cta .lead-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .quote-content {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .video-cta-btn {
        flex-direction: column;
        gap: 15px;
        padding: 18px 30px;
        border-radius: 40px;
    }
    
    .video-cta-btn .btn-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-video-cta {
        padding: 60px 15px;
    }
    
    .hero-video-cta h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-video-cta .lead-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .video-cta-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .video-cta-btn .btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    outline: none;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.custom-select:focus {
    border-color: #e40414;
    box-shadow: 0 0 0 3px rgba(228, 4, 20, 0.1);
    background: #fff;
}

.custom-select:hover {
    border-color: #b0b0b0;
}

.custom-select option {
    color: #333;
    background: #fff;
    padding: 12px;
    font-size: 1.5rem;
}

.custom-select option:checked {
    background: #e40414;
    color: white;
}

.custom-select option:disabled {
    color: #999;
    background: #f5f5f5;
}

.select-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: #666;
    transition: transform 0.3s ease;
}

.custom-select:focus + .select-arrow {
    color: #e40414;
}

.custom-select:focus + .select-arrow i {
    transform: rotate(180deg);
}

/* For Firefox */
@-moz-document url-prefix() {
    .custom-select {
        text-indent: 0.01px;
        text-overflow: '';
        padding-right: 20px;
    }
}

/* For dark theme compatibility */
.dark-mode .custom-select {
    background: #2a2a2a;
    border-color: #444;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dark-mode .custom-select:focus {
    border-color: #e40414;
    background: #2a2a2a;
    box-shadow: 0 0 0 3px rgba(228, 4, 20, 0.2);
}

.dark-mode .custom-select option {
    color: #fff;
    background: #2a2a2a;
}

.dark-mode .custom-select option:checked {
    background: #e40414;
    color: white;
}

.dark-mode .select-arrow {
    color: #aaa;
}

.dark-mode .custom-select:focus + .select-arrow {
    color: #e40414;
}