/* ========================================
   FUTURISTIC PORTFOLIO - PRIME 17
   Next-Gen Web Design Stylesheet
======================================== */

/* ========== GLOBAL RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-purple: #8b5cf6;
    --electric-blue: #3b82f6;
    --dark-bg: #0a0a0f;
    --darker-bg: #05050a;
    --card-bg: rgba(20, 20, 35, 0.7);
    --white: #ffffff;
    --light-gray: #e5e7eb;
    --text-secondary: #9ca3af;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.2);
    --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.3);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.4);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ========== ANIMATED STARS BACKGROUND (FIXED - WHOLE WEBSITE) ========== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1b1b2f 0%, #05050a 100%);
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

.star.large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.star.purple {
    background: #c084fc;
    box-shadow: 0 0 12px #c084fc;
    animation: twinkleGlow 2.5s infinite ease-in-out;
}

.star.blue {
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
    animation: twinkleGlow 3.5s infinite ease-in-out;
}

.star.gold {
    background: #fbbf24;
    box-shadow: 0 0 10px #fbbf24;
    animation: twinkleGlow 2s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes twinkleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
        filter: blur(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
        filter: blur(0.5px);
    }
}
/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo i {
    color: var(--primary-purple);
    font-size: 1.8rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--gradient-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: rgba(139, 92, 246, 0.1);
    color: var(--white);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 35, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.floating-card i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation: float 5s ease-in-out infinite;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation: float 4.5s ease-in-out infinite;
}

/* ========== SECTION STYLES ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== FEATURES SECTION ========== */
.features {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== SPECIALIZATION SECTION ========== */
.specialization {
    background: var(--darker-bg);
}

.specialization-content {
    display: grid;
    gap: 2rem;
}

.spec-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateX(10px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.spec-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.spec-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.spec-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== PACKAGES SECTION ========== */
.packages {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.3);
}

.package-card.featured {
    border: 2px solid var(--primary-purple);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.package-card.elite {
    border: 2px solid var(--electric-blue);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.popular-badge,
.elite-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.elite-badge {
    background: var(--gradient-blue);
}

.package-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.package-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-purple);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

/* ========== ADD-ONS SECTION ========== */
.addons {
    background: var(--dark-bg);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.addon-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

.addon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.addon-icon i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.addon-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.addon-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 🔥 PRICE TAG (TOP RIGHT) */
.addon-card {
    position: relative;
    /* IMPORTANT */
}

.price-tag {
    position: absolute;
    top: 12px;
    right: 12px;

    padding: 6px 12px;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
font-size: 0.85rem;

    color: white;
    border-radius: 20px;

    background: linear-gradient(135deg, #ff00cc, #8a2be2, #00f0ff);
    background-size: 200% 200%;

    box-shadow: 0 0 10px rgba(255, 0, 204, 0.6);

    animation: priceGlow 3s linear infinite;
}

/* 🔥 GRADIENT ANIMATION */
@keyframes priceGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .price-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
        top: 10px;
        right: 10px;
    }
}

/* ========== COMPARISON SECTION ========== */
.comparison {
    background: var(--darker-bg);
}

.comparison-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.comparison-card.prime17 {
    border: 2px solid var(--primary-purple);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.comparison-card.prime17:hover {
    transform: scale(1.05);
}

.comparison-card.others {
    opacity: 0.7;
}

.comparison-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.comparison-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.winner-badge i {
    color: #fbbf24;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.comparison-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.comparison-card.prime17 .fa-check-circle {
    color: #10b981;
}

.comparison-card.others .fa-times-circle {
    color: #ef4444;
}

.comparison-item span {
    color: var(--light-gray);
    line-height: 1.6;
}

/* ========== SAMPLES SECTION - PERMANENT GLOW EDITION ========== */
.samples {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background glow effect - always active */
.samples::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: breatheGlow 6s ease-in-out infinite;
}

@keyframes breatheGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.sample-card-link {
    text-decoration: none;
    display: block;
}

/* PERMANENT GLOW EFFECTS - Always ON */
.sample-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    
    /* PERMANENT GLOW SHADOW */
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.4),
        0 10px 30px rgba(139, 92, 246, 0.2);
    
    /* Slight permanent lift */
    transform: translateY(-4px);
}

/* Permanent animated border gradient */
.sample-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #8b5cf6, #3b82f6, #ec4899, #8b5cf6, #3b82f6);
    border-radius: calc(var(--radius-lg) + 2px);
    opacity: 0.6;
    z-index: -1;
    background-size: 200% 200%;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Permanent inner glow */
.sample-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.2), transparent 70%);
    opacity: 1;
    pointer-events: none;
}

.sample-image {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    overflow: hidden;
}

/* PERMANENT IMAGE ZOOM - Always slightly zoomed */
.sample-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.05);
}

/* Permanent shimmer overlay - always visible */
.sample-image::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.08) 50%, 
        transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translate(-30%, -30%) rotate(25deg); }
    100% { transform: translate(30%, 30%) rotate(25deg); }
}

.sample-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-placeholder i {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sample-content {
    padding: 2rem;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.08));
    flex: 1;
}

/* PERMANENT GRADIENT TEXT - Always colored */
.sample-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #e0d4ff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sample-content p {
    color: #a0aec0;
    line-height: 1.6;
}

/* Permanent pulsing dot - always visible */
.sample-card::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 10px;
    height: 10px;
    background: #8b5cf6;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 0 12px #8b5cf6;
    animation: pulse 2s infinite;
    z-index: 2;
}

/* Small enhancement - different glow color variation on each card */
.sample-card-link:nth-child(1) .sample-card {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5), 0 10px 30px rgba(139, 92, 246, 0.3);
}
.sample-card-link:nth-child(2) .sample-card {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5), 0 10px 30px rgba(59, 130, 246, 0.3);
}
.sample-card-link:nth-child(3) .sample-card {
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5), 0 10px 30px rgba(236, 72, 153, 0.3);
}
.sample-card-link:nth-child(4) .sample-card {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5), 0 10px 30px rgba(139, 92, 246, 0.3);
}
.sample-card-link:nth-child(5) .sample-card {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5), 0 10px 30px rgba(59, 130, 246, 0.3);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
        box-shadow: 0 0 8px #8b5cf6;
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.7;
        box-shadow: 0 0 20px #8b5cf6;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .samples-grid {
        gap: 1.5rem;
    }
    
    .sample-image {
        height: 200px;
    }
    
    .sample-content {
        padding: 1.5rem;
    }
    
    .sample-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .samples-grid {
        gap: 1.2rem;
    }
    
    .sample-image {
        height: 180px;
    }
    
    .sample-content {
        padding: 1.2rem;
    }
    
    .sample-card {
        transform: translateY(-2px);
    }
}

/* Performance optimization */
.sample-card {
    will-change: transform;
}

/* Smooth hover effect - slight extra lift on hover, but glow remains always */
.sample-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 0 25px rgba(139, 92, 246, 0.7),
        0 20px 40px rgba(139, 92, 246, 0.4);
}

/* ========== INCLUSIVES SECTION ========== */
.inclusives {
    background: var(--dark-bg);
}

.inclusives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.inclusive-item {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.inclusive-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.inclusive-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.inclusive-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
}

/* ========== CTA SECTION ========== */
.cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 6rem 2rem;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
}

.cta-button i.fab {
    font-size: 1.5rem;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--darker-bg);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-purple);
}

.footer-column ul li a i {
    margin-right: 0.5rem;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-bottom i {
    color: #ef4444;
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.6);
}

/* ========== ANIMATION ON SCROLL ========== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .packages-grid,
    .features-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .spec-card {
        flex-direction: column;
        text-align: center;
    }

    .spec-number {
        margin-bottom: 1rem;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Animated Gradient Text for Digital Presence */
.animated-gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #ec489a, #8b5cf6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    display: inline-block;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Neon Blue Text for Saatvik Arora */
.neon-blue-text {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5),
        0 0 20px rgba(59, 130, 246, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
    animation: neonPulse 1.5s ease-in-out infinite;
    font-weight: 700;
    display: inline-block;
}

@keyframes neonPulse {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(59, 130, 246, 0.5),
            0 0 10px rgba(59, 130, 246, 0.3),
            0 0 15px rgba(59, 130, 246, 0.2);
    }

    50% {
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.8),
            0 0 30px rgba(59, 130, 246, 0.5),
            0 0 45px rgba(59, 130, 246, 0.3);
    }
}

.hero-trust {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .9rem;
    border: 1px solid var(--glass-border);
    background: rgba(9, 234, 241, 0.03);
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: all .3s;
}

.trust-text {
    background: linear-gradient(135deg, #00f0ff, #0260f8, #9100b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.trust-item:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 245, 255, .08);
}

.trust-icon {
    font-size: .9rem;
}
/* ========== POLICY PAGE STYLES ========== */
.policy-page {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.policy-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

.policy-card i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}

.policy-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.policy-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== REFER & EARN PAGE STYLES ========== */
.refer-earn {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 6rem 0;
}

.refer-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.refer-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-purple);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
}

.refer-icon i {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.refer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.refer-card p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.refer-highlight {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.refer-highlight i {
    color: #fbbf24;
    font-size: 1.3rem;
}

.refer-highlight span {
    font-weight: 600;
    color: var(--white);
}

.refer-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.refer-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
}

@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .refer-card {
        padding: 2rem;
    }
    
    .refer-card h3 {
        font-size: 1.8rem;
    }
}
/* ========== SPECIAL REFER & EARN NAV LINK ========== */
.nav-link.refer-nav-link {
    background: linear-gradient(135deg, #f59e0b, #f97316, #ec489a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    animation: navReferGlow 2s ease infinite;
}

@keyframes navReferGlow {
    0% {
        text-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(245, 158, 11, 0.8), 0 0 5px rgba(236, 72, 153, 0.5);
    }
    100% {
        text-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
    }
}

.nav-link.refer-nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #f97316, #ec489a);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link.refer-nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link.refer-nav-link:hover {
    background: linear-gradient(135deg, #fbbf24, #f97316, #f43f5e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-2px);
}

/* Mobile ke liye bhi maintain */
@media (max-width: 968px) {
    .nav-link.refer-nav-link {
        font-size: 1rem;
        text-align: center;
    }
}
/* ========== FEATURES SECTION (Beyond Website) ========== */
.features {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

.beyond-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.beyond-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
}

.beyond-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d946ef, #a855f7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradient 4s ease infinite;
}

@keyframes titleGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.beyond-struggle {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.struggle-item {
    background: rgba(139, 92, 246, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--text-secondary);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.beyond-solution {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white);
}

.beyond-solution .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.beyond-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.beyond-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

.beyond-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.beyond-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.beyond-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.beyond-punchline {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
}

.beyond-punchline i {
    color: var(--primary-purple);
    font-size: 1.5rem;
    opacity: 0.5;
    position: absolute;
}

.beyond-punchline i:first-child {
    top: 1rem;
    left: 1rem;
}

.beyond-punchline i:last-child {
    bottom: 1rem;
    right: 1rem;
}

.beyond-punchline p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.beyond-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.beyond-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .beyond-title {
        font-size: 2rem;
    }
    
    .beyond-solution {
        font-size: 1.5rem;
    }
    
    .beyond-struggle {
        gap: 1rem;
    }
    
    .struggle-item {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .beyond-punchline p {
        font-size: 1rem;
    }
    
    .beyond-card {
        text-align: center;
    }
}
/* ===== ENQUIRY POPUP FORM STYLES ===== */
.enquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: var(--primary-purple);
}

.popup-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--white);
}

.submit-enquiry-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}