:root {
    --primary: #0B1F3A;
    --secondary: #B8965E;
    --accent: #E63946;
    --light: #F8F9FA;
    --dark: #1A202C;
    --gradient-hero: linear-gradient(135deg, rgba(11, 31, 58, 0.97), rgba(22, 47, 84, 0.95));
    --gradient-accent: linear-gradient(135deg, #B8965E, #D4AF37);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.btn {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    box-shadow: 0 4px 6px rgba(26, 54, 93, 0.1);
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #0d2d5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 56, 113, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: calc(1rem - 2px) calc(2.5rem - 2px);
    font-weight: 500;
    letter-spacing: 0.025em;
    border-radius: 30px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 56, 113, 0.2);
}

.hero-section {
    min-height: 100vh;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(11, 31, 58, 0.92), rgba(22, 47, 84, 0.95)),
        url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-icon {
    margin-right: 0.75rem;
    color: var(--secondary);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-highlight {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.title-highlight:nth-child(1) { animation-delay: 0.2s; }
.title-highlight:nth-child(2) { animation-delay: 0.4s; }
.title-highlight:nth-child(3) { animation-delay: 0.6s; }

.title-suffix {
    color: var(--secondary);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards 0.8s;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-glow:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-glow:hover:before {
    opacity: 0.7;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 150, 94, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.flags-wrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 1rem;
}

.flag-card {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translateX(0);
    flex: 0 1 auto;
    min-width: 160px;
}

.flag-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.flag-image {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.flag-info {
    color: white;
}

.country-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.continent {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.countdown-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    color: white;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-header i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.countdown-item {
    color: white;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        padding: 0 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(1.7rem, 5vw, 2.5rem);
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .feature-box {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .countdown-wrapper {
        padding: 1.5rem;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .offer-form .form-control {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .flags-wrapper {
        padding: 0;
    }

    .flag-card {
        padding: 0.75rem;
        min-width: 140px;
    }

    .country-name {
        font-size: 0.85rem;
    }
    
    .continent {
        font-size: 0.7rem;
    }

    .fixed-bottom-bar {
        padding: 0.5rem;
    }

    .fixed-bottom-bar .btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.flag-container {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    gap: 2rem;
}

.flag {
    width: 100px;
    height: 65px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateY(5deg);
}

.flag:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(184, 150, 94, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.hero-buttons .btn {
    padding: 1.2rem 3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(184, 150, 94, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(184, 150, 94, 0.35);
    background: var(--gradient-accent);
    color: var(--dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.countdown-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(184, 150, 94, 0.1), transparent 70%);
    pointer-events: none;
}

.countdown-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 500;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .language-selector {
        top: 10px !important;}
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .flag {
        width: 80px;
        height: 52px;
    }

    .hero-buttons .btn {
        padding: 1rem 2.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content-wrapper {
        text-align: center;
        order: -1;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }
    .cta-group {
        justify-content: center;
    }
    .flags-wrapper {
        flex-direction: row;
        justify-content: center;
    }
    .flag-card {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 767.98px) {
   
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .flags-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }

    .flag-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        margin-right: 1rem;
    }

    .flag-card:last-child {
        margin-right: 0;
    }

    .cta-group .btn-outline {
        display: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2.75rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-title:after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary) 30%, transparent);
    margin: 1.5rem auto;
    border-radius: 4px;
    position: relative;
    transform: translateX(-30px);
}

.section-title:before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--secondary);
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: 60px;
    border-radius: 4px;
    opacity: 0.5;
    transform: translateX(-30px);
}

.feature-box {
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    color: var(--secondary);
}

.use-case-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    background: white;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.use-case-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.use-case-card:hover .card-img-top {
    transform: scale(1.05);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(1deg);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 32px;
}

.cta-section {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background: url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    opacity: 0.15;
    transform: skewX(-12deg) translateX(10%);
}

footer {
    background-color: var(--dark);
    color: white;
}

.flag-container {
    display: flex;
    margin-bottom: 35px;
    justify-content: center;
    gap: 20px;
}

.flag {
    width: 80px;
    height: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(10deg);
}

.flag:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-box {
    padding: 15px 0;
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #C7A94F, #E5C97A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-form .form-control {
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .feature-box,
    .contact-form {
        padding: 30px;
    }
    
    .flag {
        width: 60px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .video-container {
        transform: none;
    }
    
    .cta-section:before {
        width: 100%;
        transform: none;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .flag-container {
        gap: 10px;
    }
    
    .flag {
        width: 50px;
        height: 35px;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: linear-gradient(135deg, rgba(184, 150, 94, 0.3), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100%) translateX(-50%) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100%) translateX(50%) scale(1);
        opacity: 0;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(15px);
    }
    50% {
        transform: translateY(-15px) translateX(-15px);
    }
    75% {
        transform: translateY(-45px) translateX(10px);
    }
}

/* Enhanced Section Styles */
.section-wrapper {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-accent);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(184, 150, 94, 0.2);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.feature-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3sease;
}

.feature-icon-small {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-small {
    transform: scale(1.1) rotate(10deg);
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary);
}

.content-box {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Video Section Enhancements */
.video-section {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(11, 31, 58, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--primary);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(11, 31, 58, 0.3), transparent);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 0.5;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(184, 150, 94, 0.3);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-accent);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.play-button:hover::before {
    opacity: 0.5;
}

.play-button i {
    color: var(--dark);
    font-size: 2rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 20px 40px rgba(184, 150, 94, 0.4);
}

.video-caption {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.video-badge, .video-duration, .source-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.video-badge i, .video-duration i, .source-badge i {
    color: var(--secondary);
}

.video-badge:hover, .video-duration:hover, .source-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
}

@media (max-width: 768px) {
    .video-caption {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .video-info {
        width: 100%;
        justify-content: center;
    }
    
    .video-source {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }
}

.video-section {
    background: linear-gradient(135deg, #f8f9fa, #f1f5f9);
}

.video-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.video-container {
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--gradient-accent);
    box-shadow: 0 15px 35px rgba(184, 150, 94, 0.3);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-accent);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.play-button:hover::before {
    opacity: 0.5;
}

.video-caption {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.video-badge, .video-duration {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.video-badge:hover, .video-duration:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .feature-grid-mini {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .video-caption {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .content-box {
        padding: 1.5rem;
    }
}

/* Section Background Effects */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    background: var(--gradient-accent);
    opacity: 0.03;
    filter: blur(40px);
    transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -150px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -200px;
    right: -150px;
}

@media (max-width: 991.98px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-content-wrapper {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .flags-wrapper {
        flex-direction: row;
        justify-content: center;
    }

    .flag-card {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 4rem 0;
    }

    .flags-wrapper {
        flex-direction: column;
    }

    .flag-card {
        max-width: none;
    }

    .cta-group {
        flex-direction: column;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-value {
        font-size: 2rem;
    }
}

.offer-form {
    padding: 0;
}

.offer-form .input-group {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.offer-form .input-group:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
}

.offer-form .form-control {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-right: 3rem;
}

.offer-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(184, 150, 94, 0.2);
    outline: none;
}

.offer-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.offer-form .btn {
    background: var(--gradient-accent);
    border: none;
    padding: 1rem 2rem;
    color: var(--dark);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.offer-form .btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(184, 150, 94, 0.3);
}

.offer-form .btn i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.offer-form .btn:hover i {
    transform: translateX(3px);
}

.offer-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.offer-subtitle {
    display: flex;
    gap: 1rem;
    margin: 0.75rem 0;
}

.badge-premium,
.badge-verified {
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-premium {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(184, 150, 94, 0.2);
}

.badge-premium i {
    color: var(--dark);
    font-size: 0.85rem;
}

.badge-verified {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.badge-verified i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.offer-description {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.offer-features {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-features .feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 0;
    background: none;
    border: none;
    white-space: nowrap;
}

.offer-features .feature-item i {
    color: var(--secondary);
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .offer-form .input-group {
        flex-direction: column;
    }
    
    .offer-form .btn {
        width: 100%;
    }

    .offer-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .badge-premium,
    .badge-verified {
        font-size: 0.7rem;
    }
}

.domain-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.domain-title i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.domain-title .offer-title {
    margin: 0;
}

.offer-input {
    position: relative;
    display: flex;
    align-items: center;
}

.number-controls {
    position: absolute;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.control-btn {
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.control-btn:hover {
    color: var(--secondary);
}

.flags-wrapper {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.flag-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translateY(0);
    flex: 0 1 auto;
    max-width: 200px;
}

.flag-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.flag-image {
    width: 40px;
    height: 25px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flag-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.country-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    margin: 0;
}

.continent {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-features .feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 0;
    background: none;
    border: none;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .flags-wrapper {
        flex-wrap: wrap;
    }

    .flag-card {
        flex: 1 1 auto;
    }

    .offer-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-features .feature-item {
        width: 100%;
    }
}

/* Hide number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.why-choose-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 7rem 0;
    overflow: hidden;
}

.why-choose-section .feature-box {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.why-choose-section .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-section .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary);
}

.why-choose-section .feature-box:hover::before {
    opacity: 1;
}

.why-choose-section .feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(184, 150, 94, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-choose-section .feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(184, 150, 94, 0.2), rgba(212, 175, 55, 0.2));
}

.why-choose-section .feature-icon i {
    font-size: 1.75rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.why-choose-section .feature-box:hover .feature-icon i {
    transform: scale(1.1);
}

.why-choose-section h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-choose-section p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.action-card {
    background: linear-gradient(135deg, rgba(184, 150, 94, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(184, 150, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(184, 150, 94, 0.1), transparent 70%);
    pointer-events: none;
}

.action-card h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.action-card p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.action-card .btn-primary {
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(184, 150, 94, 0.2);
}

@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 5rem 0;
    }
    
    .action-card {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .why-choose-section .feature-box {
        padding: 1.5rem;
    }
    
    .action-card {
        padding: 1.5rem;
    }
    
    .action-card h4 {
        font-size: 1.25rem;
    }
    
    .action-card p {
        font-size: 1rem;
    }
}

.ideal-for-section {
    position: relative;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
    padding: 7rem 0;
    overflow: hidden;
}

.ideal-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ideal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 16px rgba(184, 150, 94, 0.2);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--dark);
}

.card-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ideal-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.feature-list li i {
    color: var(--secondary);
    font-size: 1rem;
}

.card-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: auto 0 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(184, 150, 94, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(184, 150, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(184, 150, 94, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-box h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-box .btn-primary {
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(184, 150, 94, 0.2);
}

@media (max-width: 991.98px) {
    .ideal-for-section {
        padding: 5rem 0;
    }
    
    .ideal-card {
        margin-bottom: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon i {
        font-size: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .cta-box h4 {
        font-size: 1.25rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

/* Offer Popup Styles */
.offer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.offer-popup.active {
    display: block;
}

.offer-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}



.popup-close:hover {
    color: #333;
}

.contact-form .form-control {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' 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 1rem center;
    padding-right: 2.5rem;
}

.contact-form .btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.small.text-muted {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .offer-popup-content {
        padding: 1.5rem;
    }
}

/* Enhanced Offer Popup Styles */
.offer-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
}

.offer-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.offer-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.95), rgba(22, 47, 84, 0.97));
    backdrop-filter: blur(8px);
    opacity: .9;
}

.offer-popup-content {
    position: relative;
    width: 98%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.offer-popup.active .offer-popup-content {
    transform: translateY(0);
    opacity: 1;
}

.offer-popup-content::-webkit-scrollbar {
    width: 8px;
}

.offer-popup-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.offer-popup-content::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

.popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--dark);
}

.offer-popup .contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.offer-popup h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 200;
    margin-bottom: 0.5rem;
}

.offer-popup .form-control {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.offer-popup .form-control:focus {
    background: white;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(184, 150, 94, 0.1);
}

.offer-popup select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

.offer-popup textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.offer-popup .btn-primary {
    background: var(--gradient-accent);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(184, 150, 94, 0.2);
}

.offer-popup .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(184, 150, 94, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .offer-popup-content {
        padding: 2rem;
    }

    .offer-popup h3 {
        font-size: 1.5rem;
    }

    .popup-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Error message styling */
.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section {
    position: relative;
    background: linear-gradient(135deg, #1a1f71 0%, #2c3e50 100%);
    color: white;
    overflow: hidden;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem 0.1rem 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    margin-right: 0.5rem;
    color: #ffd700;
}

.cta-features {
    margin: 2rem 0;
}

.cta-feature-item {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    margin: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-feature-item:hover {
    transform: translateY(-5px);
}

.cta-feature-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.cta-feature-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #ffd700;
    border-color: #ffd700;
    color: #1a1f71;
}

.cta-buttons .btn-primary:hover {
    background: #ffed4a;
    border-color: #ffed4a;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Shape decorations */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 15s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: float 12s infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 20px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-wrapper {
        padding: 3rem 1rem;
    }
    
    .cta-feature-item {
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

#contact {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

#contact .section-title {
    color: var(--primary);
}

#contact .countdown-wrapper {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

#contact .countdown-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

#contact .offer-title {
    color: var(--primary);
}

#contact .offer-description {
    color: #64748b;
}

#contact .badge-premium {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(184, 150, 94, 0.2);
}

#contact .badge-verified {
    background: rgba(11, 31, 58, 0.05);
    border: 1px solid rgba(11, 31, 58, 0.1);
    color: var(--primary);
}

#contact .badge-verified i {
    color: var(--secondary);
}

#contact .form-title {
    color: var(--primary);
}

#contact .offer-input .form-control {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    color: var(--primary);
    transition: all 0.3s ease;
}

#contact .offer-input .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(184, 150, 94, 0.1);
}

#contact .offer-input .form-control::placeholder {
    color: #94a3b8;
}

#contact .btn-primary {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 8px 16px rgba(184, 150, 94, 0.15);
}

#contact .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(184, 150, 94, 0.25);
}

#contact .offer-features {
    border-top-color: rgba(0, 0, 0, 0.1);
}

#contact .offer-features .feature-item {
    color: #64748b;
}

#contact .offer-features .feature-item i {
    color: var(--secondary);
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #1a1c2e 0%, #2a2d4a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-brand .gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-brand .domain-suffix {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-link-small {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link-small:hover {
    color: #fff;
}

.social-link-modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-modern:hover {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    transform: translateY(-3px);
}

.contact-icon {
    color: #4ecdc4;
    margin-right: 0.5rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.domain-info {
    margin-top: 1.5rem;
}

.domain-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.domain-link:hover {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    transform: translateY(-3px);
}

.domain-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    padding-top: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

/* Hover effect for footer links */
.hover-effect {
    position: relative;
}

.hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.hover-effect:hover::after {
    width: 100%;
}

.footer-brand .text-muted, .footer-section-content .mt-4 .text-muted{
    --bs-text-opacity: 1;
    color: var(--lighit) !important;
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateX(200%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-popup.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #4BB543;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-content i {
    font-size: 1.5rem;
}

.notification-content p {
    margin: 0;
    font-weight: 500;
}

/* Submit button loading state */
.btn-primary.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Language selector styles */
.language-selector {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 8px;
    background: rgba(11, 31, 58, 0.95);
    padding: 6px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 150, 94, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lang-btn:hover {
    color: var(--secondary);
    background: rgba(184, 150, 94, 0.1);
}

.lang-btn.active {
    background: var(--gradient-accent);
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(184, 150, 94, 0.2);
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}

.lang-btn:hover::before {
    opacity: 0.1;
}

@media (max-width: 768px) {
    .language-selector {
        padding: 4px;
        gap: 4px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* RTL Support for language selector */
[dir="rtl"] .language-selector {
    left: 50%;
    right: auto;
    /* transform: translateX(50%); */
}

@media (max-width: 768px) {
    .language-selector {
        padding: 6px 12px;
        gap: 8px;
    }

    .lang-btn {
        padding: 6px 16px;
        font-size: 13px;
        min-width: 70px;
    }
}

/* RTL Support */
[dir="rtl"] {
    .popup-close {
        left: 1.5rem;
        right: auto;
    }
    input[type="tel" i] {
        text-align: right;
    }
    /* Text alignment */
    .text-md-end {
        text-align: right !important;
    }
    
    /* Margins */
    .me-2, .me-3 {
        margin-right: 0 !important;
        margin-left: 0.5rem !important;
    }
    
    /* Icons */
    .fa-arrow-right:before {
        content: "\f060" !important; /* Font Awesome arrow-left */
    }
    
    
    /* Form icons and badges */
    .badge-icon {
        margin-right: 0;
        margin-left: 0.5rem;
    }
    
    /* Cards and features */
    .feature-item i {
        margin-right: 0;
        margin-left: 0.5rem;
    }
    
    .ideal-card .feature-list i {
        margin-right: 0;
        margin-left: 0.5rem;
    }
    
    /* Footer links */
    .footer-links .footer-link:before {
        margin-right: 0;
        margin-left: 0.5rem;
        transform: rotate(180deg);
    }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}



[dir="rtl"] .hero-title,
[dir="rtl"] .section-title {
    direction: rtl;
}

[dir="rtl"] .feature-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .offer-features .feature-item i {
    margin-left: 8px;
    margin-right: 0;
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
    display: none;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    transition: opacity 0.3s ease, bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, bottom;
}

.fab-button {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab-primary {
    background: var(--gradient-accent);
    color: var(--dark);
}

.fab-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 1px solid rgba(184, 150, 94, 0.2);
}

.fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.fab-label {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.fab-button:hover {
    transform: translateY(-3px);
}

.fab-primary:hover {
    color: var(--dark);
    box-shadow: 0 12px 28px rgba(184, 150, 94, 0.25);
}

.fab-secondary:hover {
    color: var (--primary);
    background: white;
    border-color: var(--secondary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* RTL Support for floating actions */
[dir="rtl"] .floating-actions {
    right: auto;
    left: 2rem;
}

[dir="rtl"] .fab-icon {
    margin-right: 0;
    margin-left: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 1.5rem;
        right: 1rem;
        left: 1rem;
        flex-direction: row;
        justify-content: stretch;
    }

    .fab-button {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .fab-label {
        font-size: 0.8rem;
    }
}

.language-menu {
    position: absolute;
    top: 20px;
    right: 0px;
    z-index: 1000;
}

.language-toggle {
    background: rgba(184, 150, 94, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 30px 0 0 30px;
    padding: 8px 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    min-width: 108px;
}

.language-toggle:hover {
    background: rgba(184, 150, 94, 1);
    /* padding-left: 30px; */
}

.language-toggle i {
    font-size: 16px;
}

.language-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.language-menu.active .fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 15px;
    background: rgba(11, 31, 58, 0.95);
    border-radius: 15px;
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 150, 94, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.language-menu.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Keep existing lang-option, lang-name, and lang-code styles */
.lang-option {
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(184, 150, 94, 0.1);
    color: var(--secondary);
}

.lang-option.active {
    background: var(--gradient-accent);
    color: var(--dark);
}

.lang-name {
    font-size: 14px;
    font-weight: 500;
}

.lang-code {
    font-size: 12px;
    opacity: 0.7;
}

/* RTL Support */
[dir="rtl"] .language-dropdown {
    right: auto;
    left: 20px;
}
[dir="rtl"] .language-toggle {
    border-radius: 0 30px 30px 0;
}
@media (max-width: 768px) {
    .language-menu {
        position: absolute;
        top: 15px;
        right: 0px;
    }

    .language-toggle {
        padding: 6px 12px;
    }

    .language-dropdown {
        min-width: 160px;
    }

    .lang-option {
        padding: 8px 12px;
    }

    .lang-name {
        font-size: 13px;
    }

    .lang-code {
        font-size: 11px;
    }
}

[dir="rtl"] .language-menu {
    right: auto;
    left: 0px;
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    background: linear-gradient(to right, rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0.85));
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.4);
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    content: "‹";
}

/* RTL Support for Breadcrumbs */
[dir="rtl"] .breadcrumb {
    padding-right: 0;
}

[dir="rtl"] .breadcrumb-item {
    text-align: right;
}

.offer-popup-content h4 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 200;
    margin-bottom: 0.5rem;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}
.h1-hidden , .p-hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  