:root {
    --bg-color: #030014;
    /* Deep dark blue/black */
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    /* Light gray */
    --primary-color: #7000ff;
    /* Purple */
    --secondary-color: #00c6ff;
    /* Cyan */
    --highlight: #ff0055;
    /* Pink/Red accent */

    --gradient-hero: linear-gradient(135deg, #7000ff 0%, #00c6ff 100%);
    --gradient-text: linear-gradient(to right, #00c6ff, #7000ff, #ff0055);

    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: -1;
}

.gradient-bg-1,
.gradient-bg-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    opacity: 0.4;
    animation: drift 10s infinite alternate;
}

.gradient-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    top: -100px;
    left: -100px;
}

.gradient-bg-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(30px, 30px);
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient,
.highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Components */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 0, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

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

.block-btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(3, 0, 20, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nav-list a:hover,
.nav-list a.active {
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: rgba(112, 0, 255, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(112, 0, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

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

/* Hero Visual (Abstract Server) */
.server-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.server-stack {
    position: relative;
    width: 300px;
    height: 300px;
    transform: rotateX(60deg) rotateZ(45deg);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: rotateX(60deg) rotateZ(45deg) translateZ(0);
    }

    50% {
        transform: rotateX(60deg) rotateZ(45deg) translateZ(20px);
    }
}

.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
    transition: var(--transition);
}

.layer-1 {
    transform: translateZ(0);
}

.layer-2 {
    transform: translateZ(40px);
    opacity: 0.8;
}

.layer-3 {
    transform: translateZ(80px);
    opacity: 0.6;
}

.glow-point {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) translateZ(100px);
    box-shadow: 0 0 40px var(--secondary-color), 0 0 80px var(--primary-color);
}

/* Services */
.services {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(112, 0, 255, 0.4);
    box-shadow: 0 10px 40px -10px rgba(112, 0, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(112, 0, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.icon-box svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.feature-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* Stats */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.02);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(112, 0, 255, 0.1), rgba(0, 0, 0, 0));
    border-color: rgba(112, 0, 255, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--highlight);
    color: white;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

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

.pricing-features {
    margin-bottom: 2.5rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
}

/* CTA */
.cta {
    padding: 80px 0;
    margin-bottom: 50px;
}

.cta-container {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.2), rgba(0, 198, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 80px 0 20px;
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-col p {
    color: var(--text-secondary);
    max-width: 300px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

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

.social-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .server-visual {
        height: 300px;
        margin-top: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .nav {
        display: none;
        /* Mobile Menu implementation would go here used with JS toggling */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Detailed Form Styles */
.detailed-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.detailed-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.detailed-form input:focus {
    border-color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.1);
}

.detailed-form input[readonly] {
    background: rgba(255, 255, 255, 0.05);
    cursor: default;
    border-color: rgba(112, 0, 255, 0.3);
    color: var(--secondary-color);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 2rem auto 0;
    display: block;
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-content h3 {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tech Visual (Tri-Core) */
.tech-visual {
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.circles-container {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: slowRotate 20s linear infinite;
}

.circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(112, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.1);
}

.circle-1 {
    transform: rotateX(70deg);
    border-color: var(--primary-color);
}

.circle-2 {
    transform: rotateY(70deg);
    border-color: var(--secondary-color);
}

.circle-3 {
    transform: rotateX(70deg) rotateY(70deg);
    border-color: var(--highlight);
}

.core-symbol {
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #fff, var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 0 50px var(--secondary-color), 0 0 100px var(--primary-color);
    animation: corePulse 3s ease-in-out infinite;
    z-index: 10;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.icon {
    position: absolute;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 10px var(--secondary-color);
    animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    color: var(--primary-color);
}

.icon-2 {
    top: 20%;
    right: 20%;
    animation-delay: 2s;
    color: var(--secondary-color);
}

.icon-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
    color: var(--highlight);
}

@keyframes slowRotate {
    0% {
        transform: rotateY(0) rotateX(0);
    }

    100% {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 50px var(--secondary-color);
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
        box-shadow: 0 0 80px var(--secondary-color);
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

    .about-features {
        justify-content: center;
    }
}

/* Input Wrapper for Clear Button */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding-right: 40px;
    /* Space for clear button */
}

.clear-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    opacity: 0.5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

input:placeholder-shown+.clear-btn {
    display: none;
}

.clear-btn:hover {
    color: var(--highlight);
    opacity: 1;
    transform: scale(1.1);
}

/* Textarea Styling */
textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.2);
}

/* Full Width Utility */
.full-width {
    grid-column: 1 / -1;
}

/* Annual Offer Text */
.annual-offer {
    display: block;
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Phone Input Group */
.phone-input-container {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    align-items: center;
}

.phone-input-container input {
    border: none;
    background: transparent;
    border-radius: 0 12px 12px 0;
    padding-left: 10px;
    box-shadow: none;
    /* Remove default focus shadow from input */
}

.phone-input-container:focus-within {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.2);
}

.country-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.country-select:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px 0 0 12px;
}

.country-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    max-height: 200px;
    overflow-y: auto;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    z-index: 100;
    margin-top: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    max-width: 90vw;
    /* Ensure it doesn't overflow mobile screen */
}

.country-list.hidden {
    display: none;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.country-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.country-option .flag {
    font-size: 1.2rem;
}

.country-option .code {
    color: var(--secondary-color);
    font-weight: 600;
}

.country-option .name {
    margin-left: auto;
    /* Push name to right or keep near? Let's keep near */
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Old Price Strikethrough */
.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    /* or a lighter grey depending on vars */
    font-size: 1.3rem;
    /* Increased size */
    margin-bottom: -5px;
    opacity: 0.8;
    /* Increased opacity */
    font-weight: 600;
}

.price-offer {
    color: #ff3366 !important;
    /* Vibrant Red/Pink for offer */
    text-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0055, #ff3366);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 0, 85, 0.3);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Notification Modal */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.notification-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.notification-modal {
    background: rgba(20, 20, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.notification-overlay.active .notification-modal {
    transform: translateY(0);
}

.modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.modal-icon.success {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.modal-icon.error {
    background: rgba(255, 51, 102, 0.2);
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.notification-modal h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.notification-modal p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modal-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: width 0.3s ease;
}

.modal-btn:hover {
    filter: brightness(1.2);
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
}

.modal-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-btn.wa-btn {
    background: linear-gradient(90deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
}

.modal-btn.wa-btn i {
    font-size: 1.2rem;
}

/* WhatsApp Support Section */
.wa-support-section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.wa-support-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.wa-support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wa-icon-glow {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.wa-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.wa-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.wa-support-btn {
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: white !important;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-left: auto;
    white-space: nowrap;
}

.wa-support-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 992px) {
    .wa-support-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .wa-support-btn {
        margin: 0 auto;
        width: 100%;
        justify-content: center;
    }

    .wa-content h2 {
        font-size: 1.7rem;
    }
}

/* Custom Checkbox */
.terms-group {
    margin-top: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    color: var(--text-secondary);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 22px;
    width: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input~.checkmark {
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-container input:checked~.checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--secondary-color);
    text-decoration: underline;
    margin-left: 5px;
}

/* Terms Modal Specifics */
.terms-modal {
    max-width: 600px;
    text-align: left;
}

.terms-content {
    max-height: 400px;
    overflow-y: auto;
    margin: 1.5rem 0;
    padding-right: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-content h4 {
    color: var(--text-primary);
    margin: 1.2rem 0 0.5rem;
}

.terms-content::-webkit-scrollbar {
    width: 6px;
}

.terms-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.terms-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}