/* Reset and Base Styles */
:root {
    --primary-color: #673DE6;
    --secondary-color: #8B5DFF;
    --accent-color: #5D3FD3;
    --text-color: #1A1A1A;
    --light-text: #6B7280;
    --background: #ffffff;
    --light-background: #FAFAFC;
    --border-color: #E5E7EB;
    --gradient-start: #673DE6;
    --gradient-end: #8B5DFF;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #5d3fd3;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #ffffff;
}

.login-btn {
    background: var(--accent-color);
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background: white !important;
    color: #7c3aed !important;
}

/* Header */
header {
    background: var(--background);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 24px;
    color: var(--text-color);
    text-decoration: none;
}

.logo a {
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.domain-menu,
.hosting-menu,
.marketing-menu {
    position: relative;
}

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

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    border-left: 3px solid transparent;
    width: 100%;
    text-align: left;
}

.dropdown-menu li a:hover {
    background: rgba(255, 102, 0, 0.05);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,255,0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 100;
        padding: 100px 30px 40px 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        overflow-y: auto;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }

    nav ul.show {
        display: flex;
        left: 0;
        animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideInLeft {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }

    nav ul li {
        margin: 8px 0;
        width: 100%;
        max-width: 300px;
        text-align: center;
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    nav ul li:nth-child(1) { animation-delay: 0.1s; }
    nav ul li:nth-child(2) { animation-delay: 0.2s; }
    nav ul li:nth-child(3) { animation-delay: 0.3s; }
    nav ul li:nth-child(4) { animation-delay: 0.4s; }
    nav ul li:nth-child(5) { animation-delay: 0.5s; }
    nav ul li:nth-child(6) { animation-delay: 0.6s; }

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

    nav ul li a {
        font-size: 1.1rem;
        justify-content: center;
        padding: 15px 25px;
        border-radius: 12px;
        background: linear-gradient(145deg, #ffffff, #f8f9ff);
        box-shadow: 0 4px 15px rgba(103, 61, 230, 0.08);
        border: 1px solid rgba(103, 61, 230, 0.1);
        color: var(--text-color);
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        overflow: hidden;
    }

    nav ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        transition: left 0.3s ease;
        z-index: -1;
    }

    nav ul li a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(103, 61, 230, 0.2);
        color: white;
        border-color: var(--primary-color);
    }

    nav ul li a:hover::before {
        left: 0;
    }

    nav ul li a i {
        font-size: 0.9rem;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    nav ul li a:hover i {
        opacity: 1;
        transform: scale(1.1);
    }

    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: linear-gradient(145deg, rgba(103, 61, 230, 0.05), rgba(139, 93, 255, 0.05));
        margin: 12px 0 0 0;
        display: none;
        width: 100%;
        padding: 12px;
        border-radius: 12px;
        border: 1px solid rgba(103, 61, 230, 0.1);
        backdrop-filter: blur(10px);
    }

    .domain-menu.active .dropdown-menu,
    .hosting-menu.active .dropdown-menu,
    .marketing-menu.active .dropdown-menu {
        display: block;
        animation: expandDown 0.3s ease;
    }

    @keyframes expandDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
            max-height: 0;
        }
        to {
            opacity: 1;
            transform: translateY(0);
            max-height: 500px;
        }
    }

    .dropdown-menu li {
        margin: 6px 0;
        width: 100%;
    }

    .dropdown-menu li a {
        padding: 12px 20px;
        justify-content: flex-start;
        text-align: left;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
        color: var(--text-color);
        position: relative;
        overflow: hidden;
    }

    .dropdown-menu li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        transition: left 0.3s ease;
        z-index: -1;
    }

    .dropdown-menu li a:hover {
        transform: translateX(5px);
        background: rgba(255, 255, 255, 0.9);
        color: white;
        box-shadow: 0 4px 15px rgba(103, 61, 230, 0.15);
    }

    .dropdown-menu li a:hover::before {
        left: 0;
    }

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none !important;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border: 2px solid rgba(103, 61, 230, 0.1);
    border-radius: 12px;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    padding: 12px;
    z-index: 101;
    position: relative;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.1);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.2);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
}

.mobile-menu-btn i {
    transition: all 0.3s ease;
    font-size: 18px;
}

.mobile-menu-btn.active {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.mobile-menu-btn.active i::before {
    content: '\f00d';
    font-size: 16px;
}

.mobile-menu-btn.active:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: rotate(90deg) scale(1.05);
}

/* Desktop Media Query - Hide Mobile Menu Button */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

/* Domain Search Bar */
.domain-search-bar {
    background: #FAFAFC;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.domain-search-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.domain-prices-wrapper {
    display: flex;
    gap: 20px;
    flex: 1;
}

.domain-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    border-right: 1px solid var(--border-color);
    flex: 1;
}

.domain-price-item:last-child {
    border-right: none;
}

.domain-price-item .domain {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.domain-price-item .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.domain-search-box {
    flex: 1;
    display: flex;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.domain-search-box input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.domain-search-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 10px;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.domain-search-box button:hover {
    background: var(--secondary-color);
}

.hero {
    padding: 30px 0 0px;
    background: linear-gradient(135deg, #673de6 0%, #7c3aed 100%);
    overflow: hidden;
    position: relative;
    color: white;
    min-height: 35vh;
    display: flex;
    align-items: stretch;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 26px;
}

/* Hostinger-style decorative elements */
.hero-decorative {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-decorative-1 {
    top: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.hero-decorative-2 {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(255,255,255,0.05), transparent);
    border-radius: 20px;
    transform: rotate(45deg);
}

.hero-decorative-3 {
    bottom: 20%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
}

.hero-text {
    flex: 1;
    max-width: 580px;
}

.hero-text h1 {
    font-size: 4.2rem;
    font-weight: 900;
    margin: 25px 0;
    color: white;
    line-height: 1.1;
    text-shadow: 0 8px 20px rgba(0,0,0,0.2);
    letter-spacing: -0.03em;
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.5));
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 -10px 30px rgba(0,0,0,0.15));
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0 0;
    transform: translateY(0px);
    margin-bottom: 0;
    display: block;
}

.hero-image img:hover {
    transform: translateY(0px);
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 12px 40px rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
    text-transform: none;
    position: relative;
    overflow: hidden;
}

.promo-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 2s;
}

.promo-tag:hover::before {
    left: 100%;
}

.get-started-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.terms {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 15px;
}

/* Hosting Plans */
.hosting-plans {
    padding: 140px 0;
    background: linear-gradient(135deg, #FAFAFC 0%, #F8FAFC 50%, #FAFAFC 100%);
    position: relative;
    overflow: hidden;
}

.hosting-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(103, 61, 230, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(139, 93, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hosting-plans h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(0,0,0,0.05);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.subtitle {
    text-align: center;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 50px auto 70px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: fit-content;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(103, 61, 230, 0.1);
}

.toggle-btn {
    border: none;
    background: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 1rem;
}

.toggle-btn.active {
    background: #673de6;
    color: white;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
}

.toggle-btn:hover:not(.active) {
    background: rgba(103, 61, 230, 0.08);
    color: var(--primary-color);
}

.save-badge {
    background: linear-gradient(145deg, #22c55e, #16a34a);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    }
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.plan {
    background: #ffffff;
    border-radius: 28px;
    padding: 52px 36px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #F1F5F9;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 4px 16px rgba(103, 61, 230, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    animation: slideUpFade 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan:nth-child(2) {
    animation-delay: 0.2s;
}

.plan:nth-child(3) {
    animation-delay: 0.4s;
}

.plan:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(103, 61, 230, 0.2), 0 8px 32px rgba(103, 61, 230, 0.1);
    border-color: rgba(103, 61, 230, 0.2);
}

.plan h3 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--text-color);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.plan p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
}

.popular {
    border: 4px solid var(--primary-color);
    transform: scale(1.08);
    z-index: 1;
    background: linear-gradient(135deg, rgba(103, 61, 230, 0.04), rgba(139, 95, 236, 0.04));
    position: relative;
    box-shadow: 0 16px 64px rgba(103, 61, 230, 0.15), 0 8px 32px rgba(103, 61, 230, 0.1);
}

.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 28px;
    opacity: 0.05;
    z-index: -1;
    animation: popularGlow 3s ease-in-out infinite alternate;
}

@keyframes popularGlow {
    0% {
        opacity: 0.05;
    }
    100% {
        opacity: 0.08;
    }
}

.popular:hover {
    transform: translateY(-18px) scale(1.08);
    box-shadow: 0 48px 120px rgba(103, 61, 230, 0.3), 0 12px 48px rgba(103, 61, 230, 0.2);
}

.popular-tag {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 16px 24px 12px 24px;
    border-radius: 40px;
    font-weight: 900;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    margin-top: 10px;
    border: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(103, 61, 230, 0.4);
        transform: translateX(-50%) scale(1.02);
    }
}

.price {
    margin: 8px 0;
    font-size: 1.1rem;
    color: var(--light-text);
}

.price .amount {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(103, 61, 230, 0.1);
}

.price.hidden {
    display: none;
}

.choose-plan {
    display: inline-block;
    background: linear-gradient(135deg, #673de6, #7c3aed);
    color: white;
    font-weight: 800;
    padding: 24px 36px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 48px rgba(103, 61, 230, 0.3);
    width: 100%;
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.choose-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.choose-plan:hover::before {
    left: 100%;
}

.choose-plan:hover {
    background: linear-gradient(135deg, #5d3fd3, #673de6);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 24px 72px rgba(103, 61, 230, 0.5);
}

.choose-plan .button-content {
    display: inline-block;
    transition: transform 0.3s ease;
}

.choose-plan:hover .button-content {
    transform: translateX(5px);
}

.features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    flex-grow: 1;
}

.features li {
    margin: 18px 0;
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.features li:hover {
    transform: translateX(8px);
    color: var(--primary-color);
}

.features i {
    margin-right: 18px;
    color: #22C55E;
    font-size: 1.3rem;
    min-width: 20px;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.see-all-features {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.see-all-features:hover {
    background: var(--primary-color);
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--background);
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-content h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--light-text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(0,0,0,0.1);
    color: var(--text-color);
}

.feature-category {
    background: #f8faff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.feature-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(79, 70, 229, 0.1);
}

#modalFeaturesList li {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#modalFeaturesList li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#modalFeaturesList i {
    color: #00c853;
    margin-right: 15px;
    font-size: 1.2rem;
    background: rgba(0, 200, 83, 0.1);
    padding: 8px;
    border-radius: 50%;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 50%, #f0f4ff 100%);
    position: relative;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(103, 61, 230, 0.1);
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    z-index: 1;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    z-index: 1;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(103, 61, 230, 0.1);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

@keyframes titleGlow {
    0% { text-shadow: 2px 2px 4px rgba(103, 61, 230, 0.1); }
    100% { text-shadow: 2px 2px 8px rgba(103, 61, 230, 0.3); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 35px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.12);
    border: none;
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(103, 61, 230, 0.25);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature:hover h3 {
    color: white;
}

.feature:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.feature:hover a {
    color: rgba(255, 255, 255, 0.9);
}

.feature:hover i {
    color: white;
    transform: scale(1.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.feature p {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.feature a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature:hover a:hover {
    color: white;
    text-decoration: underline;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #6f42c1 0%, #8b5dff 50%, #673de6 100%);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: testimonialTitleGlow 4s ease-in-out infinite alternate;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,1), rgba(255,255,255,0.8));
    border-radius: 2px;
}

@keyframes testimonialTitleGlow {
    0% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); }
    100% { text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.4); }
}

/* Stars styling */
.stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 0.6rem;
}

.stars i {
    margin-right: 2px;
}

.testimonialSwiper {
    padding: 30px 10px;
    overflow: visible;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.testimonial {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,249,255,0.95));
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(255,255,255,0.25), 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 320px;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    border: none;
    backdrop-filter: blur(15px);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255,255,255,0.35), 0 12px 35px rgba(0,0,0,0.12);
    background: linear-gradient(145deg, rgba(255,255,255,1), rgba(248,249,255,1));
}

.testimonial:hover p {
    color: #2d3748;
}

.testimonial:hover .author h4,
.testimonial:hover .author span {
    color: #2d3748;
}

.testimonial p {
    flex-grow: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(139, 95, 236, 0.15);
}

.author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid rgba(139, 95, 236, 0.4);
    transition: all 0.3s ease;
}

.testimonial:hover .author img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.author-info h4 {
    color: #2d3748;
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.author-info span {
    color: #718096;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-pagination-bullet {
    background: var(--primary-color) !important;
}

/* Footer - Enhanced Modern Design */
footer {
    background: 
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(103, 61, 230, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #2D1B69 50%, #1a1a2e 75%, #0f0f23 100%);
    color: #e2e8f0;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), #8B5DFF, var(--secondary-color), var(--primary-color));
    animation: footerGlow 3s ease-in-out infinite alternate;
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 75% 75%, rgba(139, 93, 255, 0.06) 0%, transparent 30%);
    animation: footerPattern 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes footerGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes footerPattern {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-col {
    padding: 25px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.footer-col:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.footer-col:hover::before {
    opacity: 1;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    text-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
    letter-spacing: 0.5px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 15px 0;
    transition: transform 0.3s ease;
}

.footer-col ul li:hover {
    transform: translateX(8px) translateY(-2px);
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-col a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

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

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-col i {
    margin-right: 10px;
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info li i {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(139, 93, 255, 0.15));
    color: var(--primary-color);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.contact-info li i:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(139, 93, 255, 0.25));
}

.contact-info li span {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Bottom Footer with Copyright and Payment Methods */
.footer-bottom {
    background: linear-gradient(135deg, #0a0a15 0%, #1a1a2e 50%, #0a0a15 100%);
    padding: 30px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
}

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

.copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.iso-container {
    display: flex;
    align-items: center;
}

.iso {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.iso:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgba(124, 58, 237, 0.3));
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.payment-methods img {
    height: 30px;
    max-width: 320px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.payment-methods img:hover {
    filter: brightness(1.2) contrast(1.1);
    transform: translateY(-2px);
}

/* Footer Media Queries */
@media (max-width: 768px) {
    footer {
        padding: 50px 0 0;
    }
    
    footer::after {
        animation-duration: 30s; /* Slower animation on mobile */
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 30px;
    }
    
    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .copyright {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .iso-container {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-methods img {
        height: 25px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 0;
    }
    
    footer::after {
        animation: none; /* Disable animation on very small screens for performance */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-col {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info li i {
        margin: 0 auto 10px;
    }
    
    .footer-col ul li:hover {
        transform: none;
    }
    
    .footer-col:hover {
        transform: none;
        box-shadow: none;
    }
    
    .contact-info li i:hover {
        transform: scale(1.05); /* Reduced scale on mobile */
    }
    
    .payment-methods img {
        max-width: 240px;
    }
    
    .iso {
        width: 50px;
        height: 50px;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    /* Top Bar */
    .top-left {
        display: none;
    }

    /* Header & Navigation */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Enhanced mobile menu overlay */
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 99;
        backdrop-filter: blur(5px);
        animation: fadeInOverlay 0.3s ease;
    }
    
    @keyframes fadeInOverlay {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.2rem;
        justify-content: center;
    }

    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 102, 0, 0.05);
        margin: 10px 0;
        display: none;
        width: 100%;
        padding: 0;
    }

    nav ul li.hosting-menu.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 0;
        width: 100%;
    }

    .dropdown-menu li a {
        padding: 12px 30px;
        justify-content: center;
        text-align: center;
        border-left: none;
        border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    }

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

    /* Domain Search Bar */
    .domain-search-bar .container {
        flex-direction: column;
        gap: 20px;
    }

    .domain-prices-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .domain-prices-wrapper::-webkit-scrollbar {
        display: none;
    }

    .domain-prices-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, 
            var(--primary-color) 0%, 
            var(--secondary-color) 50%,
            var(--primary-color) 100%
        );
        opacity: 0.3;
    }

    .domain-price-item {
        flex: 0 0 auto;
        min-width: 80px;
        padding: 10px;
    }

    @keyframes slideHint {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(10px); }
    }

    .domain-price-item:last-child {
        border-right: none;
        padding-right: 20px;
    }

    .domain-search-box {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-top: 10px;
    }

    .domain-search-box input {
        flex: 1;
        min-width: 0;
        height: 40px;
        font-size: 14px;
        padding: 5px 10px;
    }

    .domain-search-box button {
        height: 40px;
        width: auto;
        padding: 0 15px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* Hero Section */
    .hero {
        padding: 15px 0 0px;
        text-align: center;
        min-height: 30vh;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        order: 1;
        max-width: 100%;
    }

    .hero-image {
        display: none !important;
    }

    .hero-image img {
        display: none !important;
    }
    
    /* Hide decorative elements on tablet */
    .hero-decorative,
    .hero-decorative-1,
    .hero-decorative-2,
    .hero-decorative-3 {
        display: none !important;
    }
    
    /* Hide rain effects on tablet */
    .rain-drop {
        display: none !important;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin: 10px 0;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .promo-deal-container {
        justify-content: center;
        gap: 15px;
    }

    .claim-deal-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .countdown-timer {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
        padding: 10px 16px;
    }
    

}

@media (max-width: 480px) {
    .hero {
        padding: 10px 0 0px;
        min-height: 25vh;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-image {
        display: none !important;
    }

    .hero-image img {
        display: none !important;
    }
    
    /* Hide decorative elements on mobile */
    .hero-decorative,
    .hero-decorative-1,
    .hero-decorative-2,
    .hero-decorative-3 {
        display: none !important;
    }
    
    /* Hide rain effects on mobile */
    .rain-drop {
        display: none !important;
    }
    
    
    .promo-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .claim-deal-btn, .countdown-timer {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 768px){
    html,
    body{
    width:100%;
    overflow-x:hidden;
    }
}

/* Existing button styles को बनाये रखने के लिए */
.choose-plan {
    display: inline-block;
    padding: 12px 30px;
    background: #673de6;
    color: white !important;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font: inherit;
}

.choose-plan:hover {
    background: #5d3fd3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(103, 61, 230, 0.2);
}

/* पुराने button elements के लिए backward compatibility */
button.choose-plan {
    display: inline-block;
    padding: 12px 30px;
}

/* Mobile Responsiveness Improvements */
@media screen and (max-width: 768px) {
    /* Top bar improvements */
    .top-bar {
        padding: 5px 0;
    }
    
    .top-left {
        display: none; /* Hide on mobile to save space */
    }
    
    .top-right {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .top-right a {
        margin-right: 5px;
        font-size: 13px;
    }
    
    .login-btn {
        padding: 4px 8px;
        margin-right: 5px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        min-width: 50px;
    }
    
    .login-btn:hover {
        background: white !important;
        color: #7c3aed !important;
    }
    
    /* Domain search improvements */
    .domain-search-bar {
        padding: 15px 0;
    }
    
    .domain-prices-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 10px;
        display: flex;
        justify-content: flex-start;
    }
    
    .domain-price-item {
        padding: 10px;
        min-width: 80px;
        flex: 0 0 auto;
        text-align: center;
    }
    
    .domain-search-box {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-top: 10px;
    }
    
    .domain-search-box input {
        flex: 1;
        min-width: 0;
        height: 45px;
        font-size: 14px;
        padding: 5px 10px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .domain-search-box button {
        height: 45px;
        padding: 0 15px;
        font-size: 14px;
        white-space: nowrap;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

/* Smaller Mobile Devices */
@media screen and (max-width: 480px) {
    .top-right {
        width: 100%;
        justify-content: space-around;
    }
    
    /* Only apply column layout for very small screens */
    .domain-search-box {
        flex-direction: row;
    }
    
    /* Force horizontal price tiles to show fully */
    .domain-price-item {
        min-width: 70px;
        padding: 8px 5px;
    }
    
    .domain-price-item .domain {
        font-size: 14px;
    }
    
    .domain-price-item .price {
        font-size: 15px;
    }
}

/* Promo Deal Styles */
.promo-deal-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.claim-deal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.25);
    text-transform: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    min-width: 180px;
}

.claim-deal-btn:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 16px 50px rgba(255, 255, 255, 0.35);
    color: var(--accent-color);
    scale: 1.02;
}

.claim-deal-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    z-index: -1;
    transition: all 0.6s ease;
}

.claim-deal-btn:hover:after {
    left: 100%;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(16px);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}



@media (max-width: 992px) {
    .hero {
        padding: 50px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.6rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
}

.floating-animation {
    /* Animation disabled for static design */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Rain Effect - Monsoon Season Look */
.hero .rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Monsoon clouds atmosphere - using existing elements */

/* Multiple rain drops */
.rain-drop {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), rgba(255,255,255,0.2), transparent);
    pointer-events: none;
    z-index: 1;
    animation: rainFall linear infinite;
}

.rain-drop:nth-child(1) {
    left: 5%;
    height: 12px;
    animation-duration: 0.9s;
    animation-delay: 0s;
}

.rain-drop:nth-child(2) {
    left: 15%;
    height: 18px;
    animation-duration: 1.1s;
    animation-delay: 0.2s;
}

.rain-drop:nth-child(3) {
    left: 25%;
    height: 14px;
    animation-duration: 0.8s;
    animation-delay: 0.5s;
}

.rain-drop:nth-child(4) {
    left: 35%;
    height: 16px;
    animation-duration: 1.0s;
    animation-delay: 0.1s;
}

.rain-drop:nth-child(5) {
    left: 45%;
    height: 13px;
    animation-duration: 0.9s;
    animation-delay: 0.4s;
}

.rain-drop:nth-child(6) {
    left: 55%;
    height: 17px;
    animation-duration: 1.2s;
    animation-delay: 0.3s;
}

.rain-drop:nth-child(7) {
    left: 65%;
    height: 15px;
    animation-duration: 0.85s;
    animation-delay: 0.6s;
}

.rain-drop:nth-child(8) {
    left: 75%;
    height: 19px;
    animation-duration: 1.1s;
    animation-delay: 0.1s;
}

.rain-drop:nth-child(9) {
    left: 85%;
    height: 12px;
    animation-duration: 0.9s;
    animation-delay: 0.4s;
}

.rain-drop:nth-child(10) {
    left: 95%;
    height: 16px;
    animation-duration: 1.0s;
    animation-delay: 0.2s;
}

@keyframes rainFall {
    0% {
        top: -20px;
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    95% {
        opacity: 0.7;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .plans-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .plan {
        padding: 20px;
    }
    
    .plan h3 {
        font-size: 1.5rem;
    }
    
    .plan .amount {
        font-size: 2.5rem;
    }
    
    .features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hosting-plans {
        overflow-x: hidden;
        padding: 80px 0;
        width: 100%;
    }
    
    .hosting-plans h2 {
        font-size: 2.5rem !important;
    }
    
    .hosting-plans .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px auto;
        width: calc(100% - 30px);
        max-width: 450px;
        padding: 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    
    .plan {
        max-width: 100%;
        width: 100%;
        margin: 0 auto 30px;
        transform: none !important;
        padding: 40px 24px;
        box-sizing: border-box;
        position: relative;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(103, 61, 230, 0.1);
    }
    
    .plan:last-child {
        margin-bottom: 0;
    }
    
    .popular {
        transform: none !important;
        margin: 0 auto 40px;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 0 12px 40px rgba(103, 61, 230, 0.2);
        order: -1; /* Move popular plan to the top */
        border-width: 3px;
    }
    
    .pricing-toggle-container {
        display: flex;
        justify-content: center;
        margin: 30px auto 50px;
    }
    
    .toggle-btn {
        padding: 10px 20px;
    }
    
    .save-badge {
        right: -15px;
    }
    
    .popular-tag {
        top: -20px;
        padding: 14px 22px 10px 22px;
        font-size: 11px;
        margin-top: 8px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 35px;
        font-weight: 900;
        text-transform: uppercase;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
        z-index: 10;
        letter-spacing: 1px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hosting-plans h2 {
        font-size: 1.8rem;
    }
    
    .hosting-plans .subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .choose-plan {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .see-all-features {
        margin-top: 15px;
        padding: 8px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hosting-plans {
        overflow-x: hidden;
        padding: 40px 0;
    }
    
    .hosting-plans .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        overflow-x: hidden;
    }
    
    .plans-container {
        width: calc(100% - 20px);
        max-width: 380px;
        margin: 20px auto;
        padding: 0;
        gap: 40px; /* Increase gap between plans */
        display: flex;
        flex-direction: column;
    }
    
    .plan {
        padding: 25px 15px;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto 20px;
        transform: none !important;
    }
    
    .plan:last-child {
        margin-bottom: 0;
    }
    
    .popular {
        transform: none !important;
        width: 100%;
        margin: 0 auto 30px;
        order: -1; /* Move popular plan to the top */
    }
    
    .popular-tag {
        top: -28px;
        padding: 10px 16px 6px 16px;
        font-size: 9px;
        margin-top: 12px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 25px;
        font-weight: 900;
        text-transform: uppercase;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
        z-index: 10;
        letter-spacing: 1px;
    }
    
    .toggle-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .save-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .modal h2 {
        font-size: 1.3rem;
    }
    
    .feature-category h3 {
        font-size: 1.1rem;
    }
    
    #modalFeaturesList li {
        font-size: 0.85rem;
    }
    
    .popular-tag {
        transform: translateX(-50%);
        font-size: 10px;
        padding: 12px 20px 8px 20px;
        margin-top: 10px;
        top: -25px;
        letter-spacing: 1px;
        position: absolute;
        left: 50%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 30px;
        font-weight: 900;
        text-transform: uppercase;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
        z-index: 10;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 25%, #f8f9ff 50%, #e8ecff 75%, #f0f4ff 100%);
    position: relative;
    box-shadow: 0 -15px 50px rgba(103, 61, 230, 0.1), 0 15px 50px rgba(103, 61, 230, 0.1);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    background-clip: padding-box;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), #8b5dff, var(--secondary-color), var(--primary-color));
    z-index: 1;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), #8b5dff, var(--secondary-color), var(--primary-color));
    z-index: 1;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(103, 61, 230, 0.1);
    position: relative;
    animation: faqTitleGlow 3.5s ease-in-out infinite alternate;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    animation: faqUnderlineGlow 3s ease-in-out infinite alternate;
}

@keyframes faqTitleGlow {
    0% { text-shadow: 2px 2px 4px rgba(103, 61, 230, 0.1); }
    100% { text-shadow: 2px 2px 12px rgba(103, 61, 230, 0.3); }
}

@keyframes faqUnderlineGlow {
    0% { box-shadow: 0 0 10px rgba(103, 61, 230, 0.3); }
    100% { box-shadow: 0 0 20px rgba(103, 61, 230, 0.6); }
}

/* SEO Content Sections */
.seo-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f8f9ff 100%);
    position: relative;
}

.seo-content-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #ffffff 100%);
}

.seo-content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

.seo-content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.seo-content-section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.seo-content-item {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.seo-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(103, 61, 230, 0.15);
}

.seo-content-item h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-content-item p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.seo-content-item .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.seo-statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.seo-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(103, 61, 230, 0.3);
}

.seo-stat-item .number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
}

.seo-stat-item .label {
    font-size: 1rem;
    opacity: 0.9;
}

.seo-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
    margin: 30px 0;
}

.seo-text-content .brand-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.seo-text-content .keyword-highlight {
    background: linear-gradient(135deg, rgba(103, 61, 230, 0.1), rgba(139, 95, 236, 0.1));
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* SEO Content Mobile Responsive */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 60px 0;
    }
    
    .seo-content-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .seo-content-section .subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .seo-content-item {
        padding: 25px 20px;
        border-left: 3px solid var(--primary-color);
    }
    
    .seo-content-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .seo-statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
    
    .seo-stat-item {
        padding: 25px 15px;
    }
    
    .seo-stat-item .number {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .seo-stat-item .label {
        font-size: 0.9rem;
    }
    
    .seo-text-content {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
        margin: 25px 0;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .seo-content-section {
        padding: 50px 0;
    }
    
    .seo-content-section h2 {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .seo-content-section .subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .seo-content-grid {
        gap: 20px;
        margin-top: 35px;
    }
    
    .seo-content-item {
        padding: 20px 15px;
        border-left: 3px solid var(--primary-color);
    }
    
    .seo-content-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .seo-statistics {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 35px 0;
    }
    
    .seo-stat-item {
        padding: 20px 10px;
    }
    
    .seo-stat-item .number {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .seo-stat-item .label {
        font-size: 0.85rem;
    }
    
    .seo-text-content {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 20px 0;
        padding: 0 5px;
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(103, 61, 230, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(103, 61, 230, 0.1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleY(1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(103, 61, 230, 0.2);
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    border-color: rgba(103, 61, 230, 0.3);
}

.faq-item h3 {
    padding: 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-answer a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #4b5563;
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-item h3 {
        padding: 15px;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }

    .faq-item h3::after {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .faq-item h3 {
        padding: 12px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 12px;
    }

    .faq-item.active .faq-answer {
        padding: 0 12px 12px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Enhanced Hero Section Styles */
.trust-indicators {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.trust-item i {
    font-size: 16px;
}

.trust-item span {
    color: white;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.special-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
}

.special-offer i {
    animation: bounce 2s infinite;
}

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

.quick-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 16px;
    min-width: 16px;
}

.benefit-item span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive styles for enhanced hero */
@media (max-width: 768px) {
    .trust-indicators {
        gap: 10px;
        justify-content: center;
    }
    
    .trust-item {
        padding: 6px 12px;
    }
    
    .trust-item span {
        font-size: 12px;
    }
    
    .quick-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-item {
        padding: 10px 12px;
    }
    
    .benefit-item span {
        font-size: 13px;
    }
    
    .special-offer {
        padding: 10px 15px;
        margin-top: 10px !important;
    }
    
    .special-offer span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        flex-direction: column;
        gap: 8px;
    }
    
    .trust-item {
        padding: 8px 15px;
        width: 100%;
        justify-content: center;
    }
    
    .quick-benefits {
        margin-top: 15px !important;
    }
    
    .benefit-item {
        padding: 8px 10px;
    }
}

/* Features & Bonus Section Styles */
.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(103, 61, 230, 0.2) !important;
    border-color: rgba(103, 61, 230, 0.3) !important;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bonus-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(103, 61, 230, 0.3);
}

/* Mobile responsive for bonus section */
@media (max-width: 768px) {
    .features-bonus-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .bonus-card {
        padding: 25px !important;
    }
    
    .bonus-highlight {
        padding: 30px 20px !important;
    }
    
    .bonus-highlight h3 {
        font-size: 1.5rem !important;
    }
    
    .bonus-highlight p {
        font-size: 1rem !important;
    }
}