:root {
    --primary-purple: #9B2D93;
    --primary-blue: #00A9E0;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
}

/* Welcome Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.popup-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.popup-overlay.show .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    transform: rotate(90deg);
}

.popup-content {
    padding: 30px;
    text-align: center;
}

.popup-header {
    margin-bottom: 25px;
}

.gift-box-icon {
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.popup-header h2 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.popup-header h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.popup-header p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.popup-form {
    text-align: left;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 169, 224, 0.1);
    transform: translateY(-2px);
}

.popup-form select {
    cursor: pointer;
}

.popup-form textarea {
    resize: vertical;
    min-height: 80px;
}

.popup-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.popup-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(155, 45, 147, 0.3);
}

.popup-submit-btn:active {
    transform: translateY(-1px);
}

.popup-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    background: rgba(0, 169, 224, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 169, 224, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 16px;
    margin-bottom: 5px;
}

.benefit-item span:last-child {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

.popup-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.popup-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.popup-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.popup-form input.error,
.popup-form select.error,
.popup-form textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-container {
        max-width: 95%;
        margin: 10px;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 15px;
    }
    
    .benefit-item {
        padding: 8px 4px;
        background: rgba(0, 169, 224, 0.05);
        border-radius: 8px;
    }
    
    .benefit-icon {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .benefit-item span:last-child {
        font-size: 10px;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .popup-header h2 {
        font-size: 20px;
    }
    
    .popup-header h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        max-height: 95vh;
    }
    
    .popup-content {
        padding: 15px;
    }
    
    .popup-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
    
    .popup-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        margin-top: 12px;
    }
    
    .benefit-item {
        padding: 6px 2px;
        text-align: center;
    }
    
    .benefit-icon {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .benefit-item span:last-child {
        font-size: 9px;
        font-weight: 500;
        line-height: 1.1;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* This accounts for the fixed header */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
}

/* Main Navigation */
.main-nav {
    background-color: var(--white);
    padding: 20px 48px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: var(--black);
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-item > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover > a {
    color: var(--primary-purple);
}

/* Active navigation item styles */
.nav-item.active > a {
    color: var(--primary-purple);
    font-weight: 600;
}

/* .nav-item.active > a::after {
    transform: rotate(180deg);
} */
.nav-item:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--black);
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(155, 45, 147, 0.05);
    color: var(--primary-purple);
    padding-left: 20px;
}

.nav-links .phone-link {
    color: var(--primary-purple);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links .phone-link:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.login-btn {
    background-color: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6B2C94 0%, #00A9E0 100%);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 48px;
    min-height: 500px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.hero-content {
    grid-column: 1 / 2;
    text-align: left;
    z-index: 2;
    padding-left: 32px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    line-height: 1.2;
    max-width: 500px;
}

.hero-images {
    grid-column: 2 / 3;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding-right: 32px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
}

.hero-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.cta-button {
    padding: 15px 36px;
    font-size: 17px;
    background: linear-gradient(to right, #9B2D93, #7B2C94);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 45, 147, 0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    border-radius: 50%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 45, 147, 0.3);
    background: linear-gradient(to right, #8a2684, #6B2C94);
    text-decoration: none;
}

.cta-button:hover::before {
    transform: scale(1);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(155, 45, 147, 0.2);
}

.countdown-container {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    min-width: 120px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-value {
    font-size: 36px;
    font-weight: 700;
    color: white;
    display: block;
}

.countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
    letter-spacing: 1px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        margin: 0;
        padding: 32px 20px;
        border-radius: 0;
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 32px;
    }

    .hero-content {
        grid-column: 1 / -1;
        text-align: center;
        padding: 0;
        order: 2;
    }

    .hero-content h1 {
        font-size: 32px;
        margin: 0 auto 24px;
        max-width: 100%;
    }

    .hero-images {
        grid-column: 1 / -1;
        justify-content: center;
        padding: 0;
        order: 1;
    }

    .hero-image {
        margin: 0 auto;
    }

    .hero-image img {
        max-height: 280px;
        max-width: 90%;
    }

    .hero-content-bottom {
        align-items: center;
        gap: 20px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .countdown-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 0;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }

    .countdown-value {
        font-size: 24px;
    }

    .countdown-label {
        font-size: 12px;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 24px 16px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-image img {
        max-height: 220px;
        max-width: 85%;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }

    .countdown-container {
        gap: 8px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 12px 8px;
    }

    .countdown-value {
        font-size: 20px;
    }

    .countdown-label {
        font-size: 11px;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-purple);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links a {
        width: 100%;
        padding: 12px 16px;
        text-align: left;
    }

    .nav-links .phone-link {
        border-top: 1px solid #eee;
        margin-top: 8px;
        padding-top: 16px;
    }
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--primary-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links .phone-link {
    color: var(--primary-purple);
    font-weight: 600;
}

.nav-links .phone-link::after {
    display: none;
}

@media (max-width: 768px) {
    .nav-links a::after {
        left: 0;
        right: 0;
    }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.authorized-text {
    font-size: 12px;
    color: var(--black);
    margin-top: 4px;
    font-weight: 500;
    margin-left: -27px;
}

.services {
    padding: 60px 48px;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(155, 45, 147, 0.1) 25%,
        rgba(0, 169, 224, 0.1) 75%,
        transparent 100%
    );
}

.services h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 25px;
    color: #333;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    border-radius: 2px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(155, 45, 147, 0.2) 20%,
        rgba(0, 169, 224, 0.2) 80%,
        transparent 100%
    );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(155, 45, 147, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 45, 147, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 45, 147, 0.1), rgba(0, 169, 224, 0.1));
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon::after {
    transform: scale(1.1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon svg {
    transform: scale(1.1);
}

.service-item h3 {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.service-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    transition: width 0.3s ease;
}

.service-item:hover h3::after {
    width: 40px;
}

/* Universal plan card styling */
.plan-card {
    width: 350px;
    max-width: 350px;
    min-width: 350px;
    margin: 0 auto;
}

/* 3-card grid layout */
.plans-grid-3 {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Changed from flex-start to stretch */
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* 2-card centered grid layout */
.plans-grid-2-centered {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Changed from flex-start to stretch */
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Ensure all plan cards have consistent dimensions */
.plan-card {
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    flex: 1 1 350px;
    max-width: 380px;
    min-width: 300px;
    min-height: 700px; /* Set minimum height for consistency */
}

/* Ensure plan content uses available space properly */
.plan-card .plan-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

/* Make plan benefits section flexible */
.plan-benefits {
    flex: 1;
    margin-bottom: 20px;
}

/* Ensure all benefit items have consistent spacing */
.plan-benefits p {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Make sure price section stays at bottom */
.plan-card .plan-price {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

/* Ensure select plan button is consistent */
.select-plan-btn {
    margin: 0 auto 20px auto;
    padding: 12px 24px;
    text-align: center;
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
    width: 80%;
    max-width: 200px;
}

.select-plan-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .plans-grid-3,
    .plans-grid-2-centered {
        gap: 20px;
        max-width: 1000px;
        padding: 0 15px;
    }
    
    .plan-card {
        flex: 1 1 300px;
        max-width: 320px;
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .plans-grid-3 {
        justify-content: center;
    }
    
    .plans-grid-2-centered {
        justify-content: center;
    }
    
    .plan-card {
        flex: 1 1 280px;
        max-width: 300px;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .plans-grid-3,
    .plans-grid-2-centered {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        gap: 20px;
        padding: 0 15px;
    }
    
    .plan-card {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        flex: none;
    }
}

@media (max-width: 480px) {
    .plans-grid-3,
    .plans-grid-2-centered {
        padding: 0 10px;
        gap: 15px;
    }
    
    .plan-card {
        max-width: 100%;
        margin: 0;
    }
}

/* Responsive Styles for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .services h2 {
        font-size: 36px;
    }

    .service-item {
        padding: 25px 15px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 40px 20px;
    }

    .services h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 10px;
    }

    .service-item {
        padding: 20px 15px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 30px 15px;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .services-grid {
        gap: 12px;
    }

    .service-item {
        padding: 15px 12px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-item h3 {
        font-size: 14px;
        padding-bottom: 6px;
    }
}

.corporate-internet {
    padding: 60px 80px;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    position: relative;
    overflow: hidden;
}

.corporate-internet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(155, 45, 147, 0.1) 25%,
        rgba(0, 169, 224, 0.1) 75%,
        transparent 100%
    );
}

.corporate-internet::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.corporate-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.features-column {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
}

.features-column h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #333;
    font-weight: 600;
}

.price {
    color: #E6007E;
    font-weight: 600;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.feature-text h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
    font-weight: 600;
    display: inline;
}

.feature-text p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
    display: inline;
    margin-left: 4px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-outline, 
.btn-outline-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid #00A9E0;
    color: #00A9E0;
    background: white;
}

.btn-outline-secondary {
    border: 2px solid #E6007E;
    color: #E6007E;
    background: white;
}

.btn-outline:hover {
    background-color: #00A9E0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 169, 224, 0.2);
}

.btn-outline-secondary:hover {
    background-color: #E6007E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 126, 0.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .corporate-content {
        max-width: 1000px;
        grid-template-columns: 1.6fr 1fr;
        gap: 25px;
    }
    
    .features-column {
        padding: 25px;
    }
}

@media (max-width: 1024px) {
    .corporate-internet {
        padding: 50px 60px;
    }
    
    .features-column {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .corporate-internet {
        padding: 40px 20px;
    }
    .corporate-content {
        grid-template-columns: 1fr;
    }
    .features-column {
        padding: 20px;
    }
    .contact-form {
        padding: 24px;
    }
    .features-column h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .feature-item {
        gap: 12px;
    }
    .feature-text h3 {
        font-size: 15px;
    }
    .feature-text p {
        font-size: 13px;
    }
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn-outline, 
    .btn-outline-secondary {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .corporate-internet {
        padding: 30px 15px;
    }

    .features-column h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .feature-text h3 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 12px;
    }
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(155, 45, 147, 0.1);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
    font-size: 15px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #E6007E;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #cc0070;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 126, 0.2);
}

.btn-submit:active {
    transform: translateY(0);
}

.best-offers {
    padding: 60px 48px;
    background-color: white;
}

.best-offers h2 {
        text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.best-offers h2::before {
    content: '';
    position: absolute;
    bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    border-radius: 2px;
}

.best-offers h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(155, 45, 147, 0.2) 20%,
        rgba(155, 45, 147, 0.2) 80%,
        transparent 100%
    );
}

.best-offers h2 span {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.offer-card {
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.gradient-purple {
    background: linear-gradient(135deg, #9B2D93 0%, #5D2E8E 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
}

.gradient-sky {
    background: linear-gradient(135deg, #2196F3 0%, #4A148C 100%);
}

.offer-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
        font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.offer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.offer-content h3 {
    color: white;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

.offer-image {
    width: 100%;
    height: auto;
    margin-top: auto;
    object-fit: contain;
    max-height: 250px;
}

.offer-logo {
    position: absolute;
    bottom: 24px;
    left: 24px;
    height: 40px;
    width: auto;
}

@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .best-offers {
        padding: 40px 20px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offer-card {
        min-height: 350px;
    }

    .offer-content h3 {
        font-size: 20px;
    }
}

/* Help Banner Section */
.help-banner {
    padding: 20px 48px;
    margin: 40px auto;
    background-color: white;
    max-width: 1000px;
}

.help-content {
    margin: 0 auto;
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.help-icon {
    display: flex;
    align-items: center;
    color: var(--primary-blue);
}

.help-content h3 {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
}

.call-back-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.call-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--white);
}

.specific-areas{
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    margin-top: 60px;
    margin-bottom: 60px;
}

.specific-areas:hover{
     transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--white);
}

@media (max-width: 768px) {
    .help-banner {
        padding: 20px;
    }

    .help-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .help-content h3 {
        font-size: 18px;
    }

    .help-icon {
        justify-content: center;
    }
}

/* Internet Plans Section */
.internet-plans {
    padding: 80px 48px;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.internet-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(155, 45, 147, 0.1) 25%,
        rgba(0, 169, 224, 0.1) 75%,
        transparent 100%
    );
}

.internet-plans h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 25px;
    width: fit-content;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.internet-plans h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    border-radius: 2px;
}

.internet-plans h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(155, 45, 147, 0.2) 20%,
        rgba(0, 169, 224, 0.2) 80%,
        transparent 100%
    );
}

.plans-subtitle {
    text-align: center;
    color: #E6007E;
    font-size: 20px;
    margin-bottom: 50px;
    width: 100%;
    font-weight: 500;
    position: relative;
    padding-bottom: 30px;
}

.plans-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        #E6007E 0%,
        rgba(230, 0, 126, 0.3) 100%
    );
    border-radius: 1px;
}

.plans-grid {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 60px auto;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 20px;
    flex-wrap: wrap;
}

.plan-card {
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    flex: 1 1 350px;
    max-width: 380px;
    min-width: 300px;
}

/* Ensure plan content fills available space and price/CTA align at bottom */
.plan-card .plan-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
}

.plan-card .plan-price {
    margin-top: auto;
}

.plan-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.plan-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(155, 45, 147, 0.1),
        rgba(0, 169, 224, 0.1)
    );
    z-index: 1;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.plan-card:hover .plan-image img {
    transform: scale(1.05);
}

.plan-badge {
   
    top: 20px;
    left: 20px;
   
    color: rgb(4, 120, 197);
    padding: 8px 16px;
    border-radius: 20px;
   
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.plan-badge-round {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E6007E, #9B2D93);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(230, 0, 126, 0.3);
    animation: pulse 2s infinite;
    border: 3px solid white;
}

.plan-badge-round .offer-percent {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.plan-badge-round .offer-text {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(230, 0, 126, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(230, 0, 126, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(230, 0, 126, 0.3);
    }
}

.plan-content {
    padding: 24px;
}

.plan-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
}

.plan-type {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.speed-indicator {
    margin-bottom: 24px;
}

.speed-indicator h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.speed-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 8px;
}

.speed-progress {
    height: 100%;
    width: 70%;
    background: linear-gradient(to right, #00A9E0, #E6007E);
    border-radius: 3px;
}

.speed-label {
    color: #666;
        font-size: 14px;
    }

.plan-benefits {
    /* padding: 24px 0; */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.plan-benefits h5 {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.benefit-item, .streaming-services {
    display: flex;
    align-items: center;
        gap: 12px;
    margin-bottom: 16px;
}

.benefit-item img, .streaming-services img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.exclusive-offer {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.unlimited {
    color: #E6007E;
    font-weight: 500;
    margin-bottom: 8px;
}

.plan-benefits p {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

.plan-price {
    padding: 24px 0;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.amount {
    font-size: 32px;
    color: #333;
    font-weight: 600;
}

.currency {
    color: #666;
    font-size: 16px;
}

.original-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.was-price {
    background: #E6007E;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.vat {
    color: #666;
    font-size: 14px;
}

.select-plan-btn {
    width: 80%;
    max-width: 200px;
    margin: 0 auto 20px auto;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.select-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--white);
}

@media (max-width: 1200px) {
    .internet-plans {
        padding: 60px 40px;
    }

    .internet-plans h2 {
        font-size: 36px;
    }

    .plans-subtitle {
        font-size: 18px;
    }

    .plans-grid {
        max-width: 100%;
        gap: 25px;
        padding: 15px;
        justify-content: center;
    }
    
    .plan-card {
        flex: 1 1 300px;
        max-width: 350px;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .internet-plans {
        padding: 40px 20px;
    }

    .internet-plans h2 {
        font-size: 32px;
        padding-bottom: 20px;
    }

    .plans-subtitle {
        font-size: 16px;
        padding-bottom: 25px;
    }
    
    .plans-grid {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        gap: 20px;
        padding: 10px;
    }
    
    .plan-card {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        flex: none;
    }
    
    .plan-badge-round {
        width: 60px;
        height: 60px;
        top: -30px;
        right: -30px;
        font-size: 8px;
        border: 2px solid white;
    }
    
    .plan-badge-round .offer-percent {
        font-size: 12px;
        margin-bottom: 1px;
    }
    
    .plan-badge-round .offer-text {
        font-size: 6px;
        line-height: 1;
    }
}

/* Responsive styles for plan buttons */
@media (max-width: 768px) {
    .internet-plans button {
        font-size: 14px !important;
        padding: 10px 20px !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .internet-plans button {
        font-size: 12px !important;
        padding: 8px 16px !important;
        margin-bottom: 10px !important;
    }
}

/* Plan content responsive adjustments */
@media (max-width: 768px) {
    .plan-content {
        padding: 20px 15px !important;
    }
    
    .plan-header h3 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
    
    .plan-benefits {
        font-size: 13px !important;
    }
    
    .plan-benefits h5 {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    .plan-price .amount {
        font-size: 28px !important;
    }
    
    .plan-price .currency {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .plan-content {
        padding: 15px 12px !important;
    }
    
    .plan-header h3 {
        font-size: 16px !important;
    }
    
    .plan-benefits {
        font-size: 12px !important;
    }
    
    .plan-benefits p {
        margin-bottom: 6px !important;
    }
    
    .plan-price .amount {
        font-size: 24px !important;
    }
    
    .select-plan-btn {
        padding: 12px !important;
        font-size: 14px !important;
        width: 90% !important;
        margin: 0 auto 20px auto !important;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    color: #333;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(155, 45, 147, 0.2) 25%,
        rgba(0, 169, 224, 0.2) 75%,
        transparent 100%
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: -60px;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 45, 147, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.footer-column h3 {
    color: var(--primary-purple);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    border-radius: 1px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: none;
    max-width: 100px;
    object-fit: contain;
}

.footer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
        justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    color: white;
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    box-shadow: 0 4px 12px rgba(155, 45, 147, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-purple);
    transform: translateX(4px);
}

.footer-links a:hover::after {
    width: 100%;
}

.contact-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info strong {
    color: #333;
    min-width: 70px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0;
    background: rgba(248, 249, 250, 0.9);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-purple);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-content {
        padding: 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 24px;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
        max-width: 400px;
    }

    .hero-image img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin: 8px;
        padding: 20px 16px;
        border-radius: 8px;
    }

    .hero h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-image img {
        max-height: 250px;
        max-width: 100%;
    }

    .cta-button {
    width: 100%;
        max-width: 280px;
        padding: 12px 24px;
    font-size: 15px;
    }

    .countdown-container {
        gap: 12px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 8px;
    }

    .countdown-value {
        font-size: 20px;
    }

    .countdown-label {
        font-size: 12px;
    }
}

/* Section headers with dot grids - responsive styles */
.section-title-ultimate,
.section-title-essential {
    overflow-x: auto;
    padding: 0 10px;
}

.section-title-ultimate > div,
.section-title-essential > div {
    min-width: fit-content;
}

@media (max-width: 768px) {
    .section-title-ultimate,
    .section-title-essential {
        margin: 30px 0 20px 0 !important;
        padding: 0 5px;
    }
    
    .section-title-ultimate > div,
    .section-title-essential > div {
        gap: 12px !important;
    }
    
    .section-title-ultimate svg,
    .section-title-essential svg {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0;
    }
    
    .section-title-ultimate .gradient-bar,
    .section-title-essential .gradient-bar {
        min-width: 280px !important;
        height: 40px !important;
        padding: 0 20px !important;
    }
    
    .section-title-ultimate span,
    .section-title-essential span {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
    }
}

@media (max-width: 480px) {
    .section-title-ultimate,
    .section-title-essential {
        margin: 25px 0 15px 0 !important;
    }
    
    .section-title-ultimate > div,
    .section-title-essential > div {
        gap: 8px !important;
        flex-wrap: nowrap;
    }
    
    .section-title-ultimate svg,
    .section-title-essential svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    .section-title-ultimate .gradient-bar,
    .section-title-essential .gradient-bar {
        min-width: 200px !important;
        height: 36px !important;
        padding: 0 15px !important;
    }
    
    .section-title-ultimate span,
    .section-title-essential span {
        font-size: 1.4rem !important;
        letter-spacing: 0.5px !important;
    }
}
