/* Regal Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Regal Primary Colors */
    --royal-purple: #4C1D95;
    --deep-purple: #5B21B6;
    --royal-blue: #1E3A8A;
    --navy-blue: #1E40AF;
    --gold: #D97706;
    --rich-gold: #B45309;
    --champagne: #FDE68A;
    
    /* Sophisticated Neutrals */
    --charcoal: #1F2937;
    --slate: #374151;
    --warm-gray: #6B7280;
    --light-gray: #9CA3AF;
    --cream: #FEF7CD;
    --ivory: #FFFBEB;
    
    /* Text Colors */
    --text-primary: #F9FAFB;
    --text-secondary: #E5E7EB;
    --text-muted: #D1D5DB;
    --text-accent: #FDE68A;
    
    /* Background Colors */
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-card: rgba(30, 41, 59, 0.8);
    --bg-overlay: rgba(15, 23, 42, 0.95);
    
    /* Border Colors */
    --border-primary: #D97706;
    --border-secondary: #4C1D95;
    --border-subtle: #374151;
    
    /* Legacy color mappings for compatibility */
    --primary-purple: var(--royal-purple);
    --primary-cyan: var(--gold);
    --dark-bg: #0F172A;
    --darker-bg: #020617;
    --text-light: var(--text-primary);
    --text-gray: var(--text-muted);
    --accent-gold: #F59E0B;
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --error-red: #EF4444;
    --professional-blue: var(--royal-blue);
    --subtle-gray: #64748B;
    --border-gray: var(--border-subtle);
    --neon-purple: #A020F0;
    --electric-cyan: #00FFFF;
    --charcoal-black: #0D0D0D;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-800: #1F1F1F;
    --gray-900: #0A0A0A;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Crimson Text', serif;
    --font-accent: 'Inter', sans-serif;
    --font-primary: var(--font-body);
    --font-heading: var(--font-display);
    
    /* Regal Shadows */
    --shadow-regal-sm: 0 2px 8px rgba(25, 25, 112, 0.15), 0 1px 3px rgba(138, 43, 226, 0.1);
    --shadow-regal-md: 0 4px 16px rgba(25, 25, 112, 0.2), 0 2px 8px rgba(138, 43, 226, 0.15);
    --shadow-regal-lg: 0 8px 32px rgba(25, 25, 112, 0.25), 0 4px 16px rgba(138, 43, 226, 0.2);
    --shadow-regal-xl: 0 16px 64px rgba(25, 25, 112, 0.3), 0 8px 32px rgba(138, 43, 226, 0.25);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.2), 0 2px 8px rgba(255, 215, 0, 0.1);
    
    /* Regal Borders */
    --border-regal: 1px solid rgba(212, 175, 55, 0.2);
    --border-regal-thick: 2px solid rgba(212, 175, 55, 0.3);
    --border-gradient: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(138, 43, 226, 0.2) 100%);
    
    /* Legacy shadow mappings for compatibility */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25)
    
    /* Borders */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-width: 1px;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    --container-max-width: 1200px;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

/* Regal Base Typography */
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow-x: hidden;
    font-size: 1.125rem;
    letter-spacing: 0.01em;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Regal Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-secondary);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-purple), var(--electric-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Regal Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 100%);
    color: var(--royal-purple);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-regal-lg), var(--shadow-gold);
    background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 100%);
    border-color: rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-regal-sm);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 100%);
    color: var(--royal-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-regal-md);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F97316 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #F97316 0%, var(--accent-gold) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal-black);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-service {
    background: rgba(0, 255, 255, 0.1);
    color: var(--electric-cyan);
    border: 1px solid var(--electric-cyan);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-service:hover {
    background: var(--electric-cyan);
    color: var(--charcoal-black);
}

/* Professional Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: "⚡";
    font-size: 1.2em;
    color: var(--primary-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-cyan);
}

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

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Regal Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, 
        var(--royal-purple) 0%, 
        var(--deep-purple) 25%, 
        var(--royal-blue) 50%, 
        var(--navy-blue) 75%, 
        var(--deep-purple) 100%);
    background-size: 400% 400%;
    animation: royalGradient 20s ease infinite;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(217, 119, 6, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 29, 149, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23d97706" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="%23d97706" opacity="0.08"/><circle cx="50" cy="10" r="0.4" fill="%23d97706" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--charcoal-black) 0%, 
        rgba(160, 32, 240, 0.1) 25%, 
        rgba(0, 255, 255, 0.1) 50%, 
        rgba(160, 32, 240, 0.1) 75%, 
        var(--charcoal-black) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

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

.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--electric-cyan), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--neon-purple), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--electric-cyan), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--neon-purple), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.3;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

/* Regal gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Professional stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Professional feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: var(--primary-cyan);
    font-weight: 600;
}

.lightning {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    color: var(--gray-300);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-ctas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

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

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

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Professional hover transitions */
.btn, .service-card, .portfolio-item, .testimonial-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle entrance animations */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.section-header {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.service-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.service-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.service-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.portfolio-item:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.portfolio-item:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.portfolio-item:nth-child(3) {
    animation: slideInRight 0.6s ease-out 0.4s both;
}

.testimonial-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.testimonial-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.testimonial-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--electric-cyan);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--electric-cyan);
    border-bottom: 2px solid var(--electric-cyan);
    transform: rotate(45deg);
}

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

/* Regal About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        var(--bg-secondary) 50%, 
        var(--bg-primary) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(138, 43, 226, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-200);
}

.about-visual {
    position: relative;
}

.studio-mockup {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.ai-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, var(--neon-purple) 2px, transparent 2px),
        radial-gradient(circle at 70% 70%, var(--electric-cyan) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    animation: aiPulse 4s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Regal Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        var(--bg-card) 50%, 
        var(--bg-secondary) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(25, 25, 112, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Regal Service Cards */
.service-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(25, 25, 112, 0.05) 100%);
    border: var(--border-regal);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-regal-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-regal-xl);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--royal-purple);
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold), var(--shadow-regal-md);
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

/* Lead Magnets Section */
.lead-magnets {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--charcoal-black) 0%, var(--gray-900) 100%);
}

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

.magnet-card {
    background: rgba(160, 32, 240, 0.1);
    border: 1px solid var(--neon-purple);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.magnet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(160, 32, 240, 0.3);
}

.magnet-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
}

.magnet-card p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.magnet-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.magnet-form input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.magnet-form input::placeholder {
    color: var(--gray-300);
}

/* Regal Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        var(--bg-secondary) 100%);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 55, 0.02) 100px,
            rgba(212, 175, 55, 0.02) 101px
        );
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(138, 43, 226, 0.05) 100%);
    border: var(--border-regal);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-regal-md);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: -1;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-regal-xl);
    border-color: rgba(212, 175, 55, 0.4);
}

.portfolio-item:hover::before {
    opacity: 0.1;
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder {
    text-align: center;
}

.portfolio-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.portfolio-category {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.portfolio-metrics .metric {
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary-cyan);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Regal Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        var(--bg-primary) 50%, 
        var(--bg-card) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, rgba(138, 43, 226, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(25, 25, 112, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(25, 25, 112, 0.05) 100%);
    border: var(--border-regal);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-regal-md);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-regal-xl);
    border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-card:hover::before {
    opacity: 0.08;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.7;
    text-shadow: var(--shadow-gold);
    line-height: 1;
    font-family: serif;
}

.testimonial-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card.featured {
    border-color: var(--neon-purple);
    transform: scale(1.05);
    background: rgba(160, 32, 240, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-purple);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--electric-cyan);
}

.price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--electric-cyan);
}

.price .period {
    font-size: 1rem;
    color: var(--gray-400);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Regal Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        var(--bg-card) 0%, 
        var(--bg-primary) 50%, 
        var(--bg-secondary) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(212, 175, 55, 0.02) 90deg, 
            transparent 180deg, 
            rgba(138, 43, 226, 0.02) 270deg, 
            transparent 360deg);
    background-size: 200px 200px;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.credentials-section h3,
.contact-details h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-cyan);
    padding-bottom: 0.5rem;
}

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

.credential-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-cyan);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.1);
}

.credential-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.credential-item h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.credential-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.contact-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
}

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

.contact-item strong {
    color: var(--text-light);
    font-weight: 600;
}

.contact-item span {
    color: var(--primary-cyan);
    font-weight: 500;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

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

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

.form-group label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: var(--gray-400);
    margin-top: 1rem;
}

.footer-column h4 {
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--electric-cyan);
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--electric-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: var(--charcoal-black);
    border: 2px solid var(--neon-purple);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.popup-close:hover {
    color: var(--neon-purple);
}

.popup-content h3 {
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.popup-content p {
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-form input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.popup-form input::placeholder {
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .magnets-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .metrics {
        gap: 2rem;
    }
    
    .carousel-controls {
        gap: 0.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .popup-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--electric-cyan);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --neon-purple: #FF00FF;
        --electric-cyan: #00FFFF;
        --charcoal-black: #000000;
        --white: #FFFFFF;
    }
}