:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #00cec9;
    --background-color: #0f0f1a;
    --card-background: #1a1a2e;
    --text-color: #ffffff;
    --text-secondary: #b8b8b8;
}

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

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo span {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
}

.nav-link i {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-link.active {
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-color);
}

.nav-link.active i {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.mobile-menu:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .nav-link span {
        display: none;
    }

    .nav-link {
        padding: 0.7rem;
    }

    .nav-link i {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .nav-button {
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-link span {
        display: inline;
    }

    .nav-button span {
        display: none;
    }

    .nav-button {
        padding: 0.7rem;
    }

    .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .nav-button {
        padding: 0.6rem;
    }
}

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

.nav-links.active {
    animation: fadeIn 0.3s ease forwards;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5% 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin-top: 2rem;
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-logo i {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 12px;
}

.stat-icon i {
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-info {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(108, 92, 231, 0.15), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 206, 201, 0.15), transparent 50%);
    z-index: 1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
    z-index: 0;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

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

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

@media (max-width: 768px) {
    .hero-logo h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.features {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--background-color) 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.plans {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plans h2 i {
    margin-right: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
        rgba(108, 92, 231, 0.1), 
        transparent 70%);
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 92, 231, 0.3);
    z-index: 1;
}

.plan-card.featured {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.1), 
        rgba(0, 206, 201, 0.1));
    border: 2px solid var(--primary-color);
    transform: none;
}

.plan-card.featured:hover {
    transform: translateY(-10px);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.plan-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.plan-header h3 i {
    color: var(--primary-color);
    font-size: 1.2em;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: normal;
}

.plan-features {
    flex-grow: 1;
    margin: 2rem 0;
}

.plan-features li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.plan-features i {
    color: var(--primary-color);
    font-size: 1.1em;
    flex-shrink: 0;
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem;
    margin-top: auto;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(110.78deg, rgb(118, 230, 80) 0%, rgb(98, 216, 249) 100%);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(98, 216, 249, 0.2);
}

.buy-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(98, 216, 249, 0.4);
}

.buy-button:hover i {
    transform: translateX(3px);
}

.buy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
}

.buy-button:hover::before {
    transform: translateX(100%);
}

/* Featured plan button styling */
.featured .buy-button {
    background: linear-gradient(110.78deg, rgb(255, 126, 95) 0%, rgb(254, 180, 123) 100%);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.2);
}

.featured .buy-button:hover {
    box-shadow: 0 8px 25px rgba(255, 126, 95, 0.4);
}

/* Pro plan button styling */
.plan-card:nth-child(2) .buy-button {
    background: linear-gradient(110.78deg, rgb(120, 115, 245) 0%, rgb(168, 111, 246) 100%);
    box-shadow: 0 5px 15px rgba(120, 115, 245, 0.2);
}

.plan-card:nth-child(2) .buy-button:hover {
    box-shadow: 0 8px 25px rgba(120, 115, 245, 0.4);
}

/* Enterprise plan button styling */
.plan-card:nth-child(3) .buy-button {
    background: linear-gradient(110.78deg, rgb(67, 203, 255) 0%, rgb(151, 8, 204) 100%);
    box-shadow: 0 5px 15px rgba(67, 203, 255, 0.2);
}

.plan-card:nth-child(3) .buy-button:hover {
    box-shadow: 0 8px 25px rgba(67, 203, 255, 0.4);
}

/* Active state for all buttons */
.buy-button:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .plan-container {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .plan-card {
        padding: 1.8rem;
    }
}

@media (max-width: 992px) {
    .plan-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .plan-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-header h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 2.2rem;
    }

    .plan-features li {
        font-size: 0.85rem;
    }
}

.locations {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.locations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.location-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
        rgba(108, 92, 231, 0.1), 
        transparent 70%);
    pointer-events: none;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.location-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.location-card:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.location-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.ping-effect {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 1.5rem;
    right: 1.5rem;
    box-shadow: 0 0 10px var(--primary-color);
}

.ping-effect::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    animation: ping 2s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(2);
        opacity: 0.4;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.more-locations {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.15), 
        rgba(0, 206, 201, 0.15));
    border: 2px solid var(--primary-color);
}

.more-locations i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.more-locations h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.more-locations p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.view-all-btn::before {
    content: '';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
}

/* World map background effect */
.locations::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
    animation: backgroundFloat 60s linear infinite;
}

@keyframes backgroundFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@media (max-width: 1200px) {
    .locations-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .locations-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .location-card {
        padding: 2rem;
    }

    .more-locations h3 {
        font-size: 1.5rem;
    }

    .more-locations p {
        font-size: 1rem;
    }
}

.contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact .section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact .section-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--text-secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.contact-method i:first-child {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
}

.method-details {
    flex: 1;
}

.method-details h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.method-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-method i:last-child {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-method:hover i:last-child {
    transform: translateX(5px);
    color: var(--primary-color);
}

.contact-method.email:hover {
    border-color: #ea4335;
}

.contact-method.email:hover i:first-child {
    color: #ea4335;
}

.contact-method.whatsapp:hover {
    border-color: #25D366;
}

.contact-method.whatsapp:hover i:first-child {
    color: #25D366;
}

.contact-method.telegram:hover {
    border-color: #0088cc;
}

.contact-method.telegram:hover i:first-child {
    color: #0088cc;
}

.support-hours {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 12px;
}

.support-hours i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hours-details h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.hours-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

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

.input-group i {
    position: absolute;
    left: 1rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    padding-top: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form input:focus + i,
.contact-form textarea:focus + i,
.contact-form select:focus + i {
    color: var(--primary-color);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c5ce7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.contact-form select option {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 1rem;
}

.contact-form select option:hover,
.contact-form select option:focus,
.contact-form select option:active {
    background: rgba(108, 92, 231, 0.2);
}

.contact-form .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.contact-form .submit-button i {
    position: static;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-form .submit-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        order: 2;
    }
    
    .contact-form-card {
        order: 1;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-header h3,
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-form .submit-button {
        width: 100%;
    }
}

.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    color: #fff;
}

.footer-section.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #6c63ff;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.2rem;
}

.link-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6c63ff;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #aaa;
}

.contact-info a {
    display: inline;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    gap: 2rem;
}

.footer-badges span {
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-badges i {
    color: #6c63ff;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #1f1f3a);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease-out;
    margin: auto;
}

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

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin: 0;
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.payment-details {
    margin-top: 1.5rem;
}

.payment-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-form .form-group {
    margin-bottom: 1rem;
}

.payment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
}

.payment-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .payment-form {
        gap: 0.8rem;
    }

    .payment-form input {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .payment-details {
        margin-top: 1rem;
    }

    .payment-form {
        margin-top: 1rem;
    }

    .payment-form .form-group {
        margin-bottom: 0.8rem;
    }

    .upi-qr-container img {
        max-width: 180px;
        height: auto;
    }

    .submit-button {
        margin-top: 1rem;
        margin-bottom: 1rem;
        position: relative;
        bottom: 0;
        width: 100%;
    }
}

.upi-qr-container {
    margin-top: 2rem;
}

.upi-qr-container img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.upi-qr-container p {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.payment-instructions {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.payment-instructions p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.payment-instructions i {
    color: var(--primary-color);
}

.services {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.card-header h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

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

.feature-list li span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-showcase {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.tech-icon {
    font-size: 5rem;
    color: var(--primary-color);
    animation: float 6s ease-in-out infinite;
}

.floating-techs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: floatBadge 8s ease-in-out infinite;
}

.tech-badge:nth-child(1) { top: 20%; left: 20%; animation-delay: -1s; }
.tech-badge:nth-child(2) { top: 30%; right: 20%; animation-delay: -2s; }
.tech-badge:nth-child(3) { bottom: 30%; left: 25%; animation-delay: -3s; }
.tech-badge:nth-child(4) { bottom: 20%; right: 25%; animation-delay: -4s; }
.tech-badge:nth-child(5) { top: 50%; left: 30%; animation-delay: -5s; }
.tech-badge:nth-child(6) { bottom: 40%; right: 30%; animation-delay: -6s; }

.tech-badge i {
    color: var(--primary-color);
}

.action-cards {
    display: grid;
    gap: 1.5rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.action-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.action-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.action-btn.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
}

.action-btn:hover {
    transform: translateX(5px);
}

.action-btn i {
    font-size: 1rem;
    margin: 0;
    color: inherit;
}

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

@keyframes floatBadge {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(5px, -5px); }
    50% { transform: translate(0, -10px); }
    75% { transform: translate(-5px, -5px); }
}

@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .feature-list,
    .about-cards-grid,
    .action-cards {
        grid-template-columns: 1fr;
    }

    .tech-showcase {
        min-height: 250px;
    }

    .tech-badge {
        font-size: 0.8rem;
    }
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-title i {
    color: var(--primary-color);
    font-size: 2rem;
}

.custom-vps {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.custom-vps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.custom-vps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-vps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-vps-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.form-group label span {
    color: var(--primary-color);
    font-weight: 600;
}

.slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary-color);
}

.location-select,
.os-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c5ce7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.location-select:hover,
.os-select:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.location-select option,
.os-select option {
    background: #1a1a2e;
    color: var(--text-color);
}

.custom-vps-summary {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 2rem;
}

.custom-vps-summary h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #fff;
}

.custom-vps-summary h3 i {
    color: var(--primary-color);
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 15px;
    text-align: center;
}

.summary-price span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

#custom-buy-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

#custom-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

@media (max-width: 992px) {
    .custom-vps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .custom-vps-summary {
        position: static;
    }
}

@media (max-width: 576px) {
    .custom-vps-form,
    .custom-vps-summary {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .summary-price span {
        font-size: 2rem;
    }
}

/* Remove support section styles */
.support {
    display: none;
}

.support-container {
    display: none;
}

.support-card {
    display: none;
}

.support-link {
    display: none;
}

.payment-form {
    margin-top: 2rem;
}

.payment-form .form-group {
    margin-bottom: 1.5rem;
}

.payment-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.payment-form input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
}

.payment-form input:focus {
    outline: 2px solid var(--primary-color);
}

.success-modal {
    display: none;
}

.success-content {
    text-align: center;
    max-width: 500px;
}

.success-animation {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.order-id {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.success-actions {
    margin-top: 2rem;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

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

.vps-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
}

.vps-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vps-specs {
    display: grid;
    gap: 0.8rem;
}

.vps-specs p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.vps-specs i {
    color: var(--primary-color);
    width: 20px;
}

.screenshot-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.screenshot-note i {
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-tag i {
    color: var(--primary-color);
}

.feature-tag span {
    color: var(--text-color);
    font-weight: 500;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.8s both;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-trust {
    margin-top: 3rem;
    text-align: center;
    animation: fadeInUp 1s ease 1s both;
}

.trust-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 20px;
}

.trust-label i {
    color: var(--primary-color);
}

.trust-label span {
    color: var(--text-color);
    font-weight: 500;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.trust-features i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-features {
        /* justify-content: flex-start; */
        padding: 0 1rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .trust-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
}

.location-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-details span i {
    font-size: 1rem;
    margin: 0;
}

.location-card:hover .location-details span {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
}

.location-card:hover .location-details span i {
    color: var(--accent-color);
    transform: none;
}

.location-details span:last-child {
    color: var(--text-color);
    font-weight: 500;
}

.location-details span:last-child i {
    color: var(--accent-color);
}

.location-card:hover .location-details span:last-child {
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-color);
}

.footer-section.links {
    position: relative;
}

.footer-section .section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-section .section-title i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-section .section-title h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    color: #fff;
    border-color: var(--primary-color);
}

.footer-link i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.1);
}

.footer-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-link.featured {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.1), 
        rgba(0, 206, 201, 0.1));
    border: 1px solid var(--primary-color);
    color: #fff;
}

.footer-link.featured:hover {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.2), 
        rgba(0, 206, 201, 0.2));
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-link {
        padding: 0.7rem;
    }
}

.footer-section.contact-info {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(108, 92, 231, 0.1), 
        rgba(0, 206, 201, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-item .fas.fa-arrow-right {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.contact-item:hover .fas.fa-arrow-right {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* WhatsApp specific styles */
.contact-item.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.1);
}

.contact-item.whatsapp .contact-icon i {
    color: #25D366;
}

.contact-item.whatsapp:hover {
    border-color: #25D366;
}

/* Telegram specific styles */
.contact-item.telegram .contact-icon {
    background: rgba(0, 136, 204, 0.1);
}

.contact-item.telegram .contact-icon i {
    color: #0088cc;
}

.contact-item.telegram:hover {
    border-color: #0088cc;
}

/* Support hours styles */
.contact-item.support {
    background: rgba(108, 92, 231, 0.05);
    cursor: default;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(46, 213, 115, 0.1);
    border-radius: 20px;
    color: #2ed573;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 213, 115, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0);
    }
}

@media (max-width: 768px) {
    .footer-section.contact-info {
        padding: 1rem;
    }

    .contact-item {
        padding: 0.8rem 1rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 0.8rem;
    }
}

/* New Payment Modal Styles */
.payment-modal {
        display: none;
    position: fixed;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-modal .modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #1f1f3a);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease-out;
    margin: auto;
    transform: translateY(0);
}

.payment-modal h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

/* Custom scrollbar for modal content */
.payment-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

.payment-modal .modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.payment-modal .modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.payment-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .payment-modal .modal-content {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .payment-modal .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin: 0;
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.payment-details {
    margin-top: 1.5rem;
}

.payment-form {
    margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
    gap: 1rem;
    }

.payment-form .form-group {
    margin-bottom: 1rem;
    }

.payment-form label {
        display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
}

.payment-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .payment-modal .modal-content {
        padding: 1.5rem;
        width: 95%;
        margin: 20px auto;
    }

    .payment-form {
        gap: 0.8rem;
    }

    .payment-form input {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .payment-modal .modal-content {
        padding: 1rem;
        max-height: 85vh;
    }

    .payment-details {
        margin-top: 1rem;
    }

    .payment-form {
        margin-top: 1rem;
    }

    .payment-form .form-group {
        margin-bottom: 0.8rem;
    }

    .upi-qr-container img {
        max-width: 180px;
        height: auto;
    }

    .submit-button {
        margin-top: 1rem;
        margin-bottom: 1rem;
        position: relative;
        bottom: 0;
        width: 100%;
    }
}

.upi-qr-container {
    margin-top: 2rem;
}

.upi-qr-container img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.upi-qr-container p {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.payment-instructions {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.payment-instructions p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.payment-instructions i {
    color: var(--primary-color);
}

.services {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
}

.services h2 {
    text-align: center;
        font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: flex;
        flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
        gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.card-header h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

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

.feature-list li span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-showcase {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.tech-icon {
    font-size: 5rem;
    color: var(--primary-color);
    animation: float 6s ease-in-out infinite;
}

.floating-techs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: floatBadge 8s ease-in-out infinite;
}

.tech-badge:nth-child(1) { top: 20%; left: 20%; animation-delay: -1s; }
.tech-badge:nth-child(2) { top: 30%; right: 20%; animation-delay: -2s; }
.tech-badge:nth-child(3) { bottom: 30%; left: 25%; animation-delay: -3s; }
.tech-badge:nth-child(4) { bottom: 20%; right: 25%; animation-delay: -4s; }
.tech-badge:nth-child(5) { top: 50%; left: 30%; animation-delay: -5s; }
.tech-badge:nth-child(6) { bottom: 40%; right: 30%; animation-delay: -6s; }

.tech-badge i {
    color: var(--primary-color);
}

.action-cards {
    display: grid;
    gap: 1.5rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.action-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.action-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.action-btn.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
}

.action-btn:hover {
    transform: translateX(5px);
}

.action-btn i {
    font-size: 1rem;
    margin: 0;
    color: inherit;
}

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

@keyframes floatBadge {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(5px, -5px); }
    50% { transform: translate(0, -10px); }
    75% { transform: translate(-5px, -5px); }
}

@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .feature-list,
    .about-cards-grid,
    .action-cards {
        grid-template-columns: 1fr;
    }

    .tech-showcase {
        min-height: 250px;
    }

    .tech-badge {
        font-size: 0.8rem;
    }
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-title i {
    color: var(--primary-color);
    font-size: 2rem;
}

.custom-vps {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.custom-vps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.custom-vps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-vps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-vps-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.form-group label span {
    color: var(--primary-color);
    font-weight: 600;
}

.slider {
        width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary-color);
}

.location-select,
.os-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c5ce7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.location-select:hover,
.os-select:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.location-select option,
.os-select option {
    background: #1a1a2e;
    color: var(--text-color);
}

.custom-vps-summary {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 2rem;
}

.custom-vps-summary h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #fff;
}

.custom-vps-summary h3 i {
    color: var(--primary-color);
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 15px;
    text-align: center;
}

.summary-price span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

#custom-buy-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

#custom-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

@media (max-width: 992px) {
    .custom-vps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .custom-vps-summary {
        position: static;
    }
}

@media (max-width: 576px) {
    .custom-vps-form,
    .custom-vps-summary {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .summary-price span {
        font-size: 2rem;
    }
}

/* Remove support section styles */
.support {
    display: none;
}

.support-container {
    display: none;
}

.support-card {
    display: none;
}

.support-link {
    display: none;
}

.payment-form {
    margin-top: 2rem;
}

.payment-form .form-group {
    margin-bottom: 1.5rem;
}

.payment-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.payment-form input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
}

.payment-form input:focus {
    outline: 2px solid var(--primary-color);
}

.success-modal {
    display: none;
}

.success-content {
    text-align: center;
    max-width: 500px;
}

.success-animation {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.order-id {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.success-actions {
    margin-top: 2rem;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

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

.vps-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
}

.vps-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vps-specs {
    display: grid;
    gap: 0.8rem;
}

.vps-specs p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.vps-specs i {
    color: var(--primary-color);
    width: 20px;
}

.screenshot-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.screenshot-note i {
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-tag i {
    color: var(--primary-color);
}

.feature-tag span {
    color: var(--text-color);
    font-weight: 500;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.8s both;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-trust {
    margin-top: 3rem;
    text-align: center;
    animation: fadeInUp 1s ease 1s both;
}

.trust-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 20px;
}

.trust-label i {
    color: var(--primary-color);
}

.trust-label span {
    color: var(--text-color);
    font-weight: 500;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.trust-features i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-features {
        /* justify-content: flex-start; */
        padding: 0 1rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .trust-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
}

.location-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-details span i {
    font-size: 1rem;
    margin: 0;
}

.location-card:hover .location-details span {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
}

.location-card:hover .location-details span i {
    color: var(--accent-color);
    transform: none;
}

.location-details span:last-child {
    color: var(--text-color);
    font-weight: 500;
}

.location-details span:last-child i {
    color: var(--accent-color);
}

.location-card:hover .location-details span:last-child {
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-color);
}

.footer-section.links {
    position: relative;
}

.footer-section .section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-section .section-title i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-section .section-title h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    color: #fff;
    border-color: var(--primary-color);
}

.footer-link i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.1);
}

.footer-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-link.featured {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.1), 
        rgba(0, 206, 201, 0.1));
    border: 1px solid var(--primary-color);
    color: #fff;
}

.footer-link.featured:hover {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.2), 
        rgba(0, 206, 201, 0.2));
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-link {
        padding: 0.7rem;
    }
}

.footer-section.contact-info {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(108, 92, 231, 0.1), 
        rgba(0, 206, 201, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-item .fas.fa-arrow-right {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.contact-item:hover .fas.fa-arrow-right {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* WhatsApp specific styles */
.contact-item.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.1);
}

.contact-item.whatsapp .contact-icon i {
    color: #25D366;
}

.contact-item.whatsapp:hover {
    border-color: #25D366;
}

/* Telegram specific styles */
.contact-item.telegram .contact-icon {
    background: rgba(0, 136, 204, 0.1);
}

.contact-item.telegram .contact-icon i {
    color: #0088cc;
}

.contact-item.telegram:hover {
    border-color: #0088cc;
}

/* Support hours styles */
.contact-item.support {
    background: rgba(108, 92, 231, 0.05);
    cursor: default;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(46, 213, 115, 0.1);
    border-radius: 20px;
    color: #2ed573;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 213, 115, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0);
    }
}

@media (max-width: 768px) {
    .footer-section.contact-info {
        padding: 1rem;
    }
    
    .contact-item {
        padding: 0.8rem 1rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 0.8rem;
    }
}

/* New Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.payment-modal .modal-content {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(32, 32, 58, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.payment-modal h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-modal h2 i {
    color: var(--primary-color);
}

.selected-plan {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.selected-plan h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.selected-plan p {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.upi-qr-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    text-align: center;
}

.upi-qr-container img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.upi-qr-container p {
    margin-top: 1rem;
    color: #333;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.upi-qr-container i {
    color: var(--primary-color);
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.payment-form .form-group {
    position: relative;
}

.payment-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.payment-form label i {
    color: var(--primary-color);
}

.payment-form input {
    width: 100%;
    padding: 1rem;
    padding-left: 2.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.payment-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.payment-form .form-group i {
    position: absolute;
    left: 1rem;
    top: 2.3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.payment-form .submit-button {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.payment-form .submit-button i {
    font-size: 1.1rem;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

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

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

@media (max-width: 768px) {
    .payment-modal .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }

    .payment-modal h2 {
        font-size: 1.5rem;
    }

    .selected-plan {
        padding: 1rem;
    }

    .upi-qr-container {
        padding: 1rem;
    }

    .upi-qr-container img {
        max-width: 180px;
    }

    .payment-form input {
        padding: 0.9rem;
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .payment-modal .modal-content {
        padding: 1.2rem;
        margin: 0.5rem;
        max-height: 85vh;
    }

    .payment-modal h2 {
        font-size: 1.3rem;
    }

    .selected-plan p {
        font-size: 1.3rem;
    }

    .upi-qr-container {
        padding: 0.8rem;
    }

    .upi-qr-container img {
        max-width: 160px;
    }

    .payment-form {
        gap: 1rem;
    }

    .payment-form input {
        padding: 0.8rem;
        padding-left: 2.3rem;
        font-size: 0.95rem;
    }

    .payment-form .form-group i {
        font-size: 1rem;
        top: 2.2rem;
    }

    .payment-form .submit-button {
        padding: 0.9rem;
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .close {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 1.3rem;
        width: 28px;
        height: 28px;
    }
}

/* Custom scrollbar for modal */
.payment-modal .modal-content::-webkit-scrollbar {
    width: 6px;
}

.payment-modal .modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.payment-modal .modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.payment-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Contact Form Success Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-popup.active {
    display: flex;
    opacity: 1;
}

.success-popup-content {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(32, 32, 58, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: popupSlideIn 0.4s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(46, 213, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: iconScale 0.5s ease 0.2s both;
}

.success-icon i {
    font-size: 2.5rem;
    color: #2ed573;
    animation: iconCheck 0.5s ease 0.4s both;
}

.success-popup h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-popup p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.whatsapp-button {
    background: #25d366;
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.2rem;
}

.close-popup {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

@keyframes iconScale {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes iconCheck {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .success-popup-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }

    .success-icon {
        width: 70px;
        height: 70px;
    }

    .success-icon i {
        font-size: 2rem;
    }

    .success-popup h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .success-popup-content {
        padding: 1.2rem;
        margin: 0.5rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .success-icon i {
        font-size: 1.8rem;
    }

    .success-popup h3 {
        font-size: 1.2rem;
    }

    .success-popup p {
        font-size: 0.9rem;
    }

    .whatsapp-button,
    .close-popup {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
} 