:root {
    --primary-color: #C9A961;
    --secondary-color: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f5;
    --gradient-gold: linear-gradient(135deg, #C9A961 0%, #9d7e3f 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(201, 169, 97, 0.3));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(201, 169, 97, 0.5));
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.genspark.ai/api/files/s/UJXVAaPH') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
    margin-bottom: 3rem;
}

/* Hologram Projection Base */
.hologram-base {
    position: relative;
    width: 300px;
    height: 40px;
    margin-bottom: -20px;
    z-index: 1;
}

.base-ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid rgba(201, 169, 97, 0.6);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(201, 169, 97, 0.4),
        inset 0 0 10px rgba(201, 169, 97, 0.2);
}

.ring-1 {
    width: 280px;
    height: 45px;
    animation-delay: 0s;
}

.ring-2 {
    width: 220px;
    height: 35px;
    animation-delay: 1s;
}

.ring-3 {
    width: 160px;
    height: 25px;
    animation-delay: 2s;
}

.projection-beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 500px;
    background: linear-gradient(
        to top,
        rgba(201, 169, 97, 0.8) 0%,
        rgba(201, 169, 97, 0.5) 30%,
        rgba(201, 169, 97, 0.2) 60%,
        transparent 100%
    );
    animation: beamPulse 1.5s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(201, 169, 97, 0.8),
        0 0 60px rgba(201, 169, 97, 0.6),
        0 0 90px rgba(201, 169, 97, 0.4);
}

/* Spinning Logo Container */
.logo-hologram-container {
    position: relative;
    /* NO rotation - logo stays visible 100% of time */
    animation: none;
    transform-style: preserve-3d;
    z-index: 2;
    perspective: 1500px;
    backface-visibility: visible;
}

.hero-logo-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite, logoPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.8)) brightness(1.3);
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Ensure full visibility and readability */
    backface-visibility: visible;
    opacity: 1;
    /* Prevent any warping */
    image-rendering: crisp-edges;
}

.hero-logo-img:hover {
    animation-play-state: paused;
}

/* Hologram Scan Lines */
.hologram-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(201, 169, 97, 0.05) 0px,
        rgba(201, 169, 97, 0.05) 2px,
        transparent 2px,
        transparent 4px
    );
    animation: scanlines 4s linear infinite;
    pointer-events: none;
    z-index: 10;
    /* Don't obscure the logo text */
    mix-blend-mode: overlay;
}

/* Hologram Glitch Effect */
.hologram-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 169, 97, 0.1) 48%,
        rgba(201, 169, 97, 0.2) 50%,
        rgba(201, 169, 97, 0.1) 52%,
        transparent 100%
    );
    animation: glitchSweep 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 11;
    /* Don't obscure the logo text */
    mix-blend-mode: overlay;
}

/* Animations */
@keyframes hologramSpin {
    0% {
        transform: rotateY(0deg);
    }
    15% {
        transform: rotateY(8deg);
    }
    30% {
        transform: rotateY(0deg);
    }
    45% {
        transform: rotateY(-8deg);
    }
    60% {
        transform: rotateY(0deg);
    }
    70% {
        transform: rotateY(5deg);
    }
    80% {
        transform: rotateY(0deg);
    }
    90% {
        transform: rotateY(-5deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

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

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
        border-color: rgba(201, 169, 97, 0.6);
        box-shadow: 0 0 10px rgba(201, 169, 97, 0.4);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.15);
        border-color: rgba(201, 169, 97, 1);
        box-shadow: 0 0 30px rgba(201, 169, 97, 0.8), 0 0 50px rgba(201, 169, 97, 0.5);
    }
}

@keyframes beamPulse {
    0%, 100% {
        opacity: 0.7;
        width: 4px;
        box-shadow: 
            0 0 30px rgba(201, 169, 97, 0.8),
            0 0 60px rgba(201, 169, 97, 0.6);
    }
    50% {
        opacity: 1;
        width: 8px;
        box-shadow: 
            0 0 50px rgba(201, 169, 97, 1),
            0 0 100px rgba(201, 169, 97, 0.8),
            0 0 150px rgba(201, 169, 97, 0.5);
    }
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

@keyframes glitchSweep {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateX(100%);
    }
}

/* Logo Pulse Animation */
@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(201, 169, 97, 0.9)) drop-shadow(0 0 80px rgba(201, 169, 97, 0.4));
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: -1rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0; top: 20px; }
}

/* 3D Holographic Devices */
.hero-3d-devices {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* Laptop Device */
.device-laptop {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotateX(15deg) rotateY(-20deg);
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
}

.laptop-screen {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    border: 8px solid #333;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(201, 169, 97, 0.3),
        0 0 100px rgba(201, 169, 97, 0.2),
        inset 0 0 50px rgba(201, 169, 97, 0.1);
    transform-style: preserve-3d;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(157, 126, 63, 0.1) 100%);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.laptop-base {
    width: 420px;
    height: 15px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 0 0 15px 15px;
    margin-top: -2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: rotateX(-80deg);
    transform-origin: top;
}

/* iPhone Device */
.device-iphone {
    position: absolute;
    left: 15%;
    bottom: 15%;
    transform: rotateX(10deg) rotateY(15deg) rotateZ(-5deg);
    perspective: 1000px;
    animation: float 8s ease-in-out infinite;
    animation-delay: -2s;
}

.iphone-frame {
    width: 180px;
    height: 360px;
    background: #1a1a1a;
    border-radius: 35px;
    border: 6px solid #333;
    position: relative;
    box-shadow: 
        0 30px 80px rgba(201, 169, 97, 0.3),
        0 0 80px rgba(201, 169, 97, 0.2),
        inset 0 0 30px rgba(201, 169, 97, 0.1);
    transform-style: preserve-3d;
}

.iphone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #0a0a0a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(157, 126, 63, 0.15) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* Holographic Effect */
.hologram-effect {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hologram-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(201, 169, 97, 0.3) 40%,
        rgba(201, 169, 97, 0.5) 50%,
        rgba(201, 169, 97, 0.3) 60%,
        transparent 70%
    );
    animation: hologramScan 4s linear infinite;
}

.hologram-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(201, 169, 97, 0.05) 0px,
            rgba(201, 169, 97, 0.05) 2px,
            transparent 2px,
            transparent 4px
        );
    animation: scanlines 8s linear infinite;
}

/* Floating Icons */
.floating-element {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.6;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
    animation: floatRandom 10s ease-in-out infinite;
}

.chart-icon {
    top: 20%;
    right: 35%;
    animation-delay: 0s;
}

.ai-icon {
    top: 60%;
    left: 25%;
    animation-delay: -3s;
}

.rocket-icon {
    bottom: 25%;
    right: 20%;
    animation-delay: -6s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(-50%) rotateX(15deg) rotateY(-20deg) translateZ(0);
    }
    50% {
        transform: translateY(-55%) rotateX(15deg) rotateY(-20deg) translateZ(20px);
    }
}

@keyframes hologramScan {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

@keyframes floatRandom {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-10px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) translateX(5px) scale(1.05);
        opacity: 0.7;
    }
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

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

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: var(--secondary-color);
    text-align: center;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.quote-text {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.quote-author {
    font-size: 1.2rem;
    color: #999;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-number {
    font-size: 1rem;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Premium Package Section */
.premium-package {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.premium-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.premium-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.premium-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
    }
}

.premium-title {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.premium-title::after {
    background: var(--gradient-gold);
}

.premium-subtitle {
    font-size: 1.5rem;
    color: #999;
    font-weight: 300;
}

.premium-content {
    position: relative;
    z-index: 2;
}

.premium-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    color: var(--text-light);
}

.premium-intro h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.premium-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.premium-feature {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-feature:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.6);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
}

.premium-feature:hover::before {
    opacity: 0.05;
}

.premium-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.premium-feature h4 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.premium-feature > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.premium-feature-list {
    list-style: none;
    padding: 0;
}

.premium-feature-list li {
    color: #ccc;
    padding: 0.7rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.premium-cta {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(157, 126, 63, 0.1) 100%);
    padding: 4rem;
    border-radius: 30px;
    border: 3px solid rgba(201, 169, 97, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.premium-pricing {
    flex: 1;
    min-width: 250px;
}

.premium-price-label {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.premium-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.premium-price-note {
    color: #aaa;
    font-size: 1rem;
    font-style: italic;
}

.premium-actions {
    flex: 1;
    text-align: right;
    min-width: 250px;
}

.premium-btn {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.4);
    margin-bottom: 1rem;
    display: inline-block;
}

.premium-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.6);
}

.premium-guarantee {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.premium-benefits {
    text-align: center;
}

.premium-benefits h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.benefit-item {
    padding: 2rem;
    text-align: center;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h5 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-gold);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: #666;
    font-size: 1rem;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(201, 169, 97, 0.3));
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(201, 169, 97, 0.5));
}

.footer-tagline {
    color: #999;
    font-style: italic;
}

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

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

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

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

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Premium Package Responsive - Tablet */
    .premium-title {
        font-size: 2.5rem;
    }

    .premium-subtitle {
        font-size: 1.2rem;
    }

    .premium-features-grid {
        grid-template-columns: 1fr;
    }

    .premium-cta {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .premium-actions {
        text-align: center;
    }

    .premium-intro h3 {
        font-size: 1.6rem;
    }

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

    /* 3D Devices Responsive - Tablet */
    .device-laptop {
        right: 5%;
        transform: translateY(-50%) rotateX(10deg) rotateY(-15deg) scale(0.7);
    }

    .device-iphone {
        left: 8%;
        bottom: 10%;
        transform: rotateX(5deg) rotateY(10deg) rotateZ(-3deg) scale(0.7);
    }

    .floating-element {
        font-size: 2rem;
        opacity: 0.4;
    }

    .laptop-screen {
        width: 300px;
        height: 190px;
    }

    .laptop-base {
        width: 320px;
    }

    .iphone-frame {
        width: 140px;
        height: 280px;
    }

    /* Logo Responsive - Tablet */
    .hero-logo-img {
        max-width: 350px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hologram-base {
        width: 250px;
    }

    .ring-1 {
        width: 220px;
    }

    .ring-2 {
        width: 170px;
    }

    .ring-3 {
        width: 130px;
    }

    .projection-beam {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Premium Package Responsive - Mobile */
    .premium-title {
        font-size: 2rem;
    }

    .premium-subtitle {
        font-size: 1rem;
    }

    .premium-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-feature {
        padding: 2rem 1.5rem;
    }

    .premium-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .premium-feature h4 {
        font-size: 1.4rem;
    }

    .premium-cta {
        padding: 2rem 1.5rem;
    }

    .premium-price {
        font-size: 2.5rem;
    }

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

    .premium-intro h3 {
        font-size: 1.4rem;
    }

    .premium-benefits h3 {
        font-size: 1.8rem;
    }

    /* 3D Devices Responsive - Mobile */
    .hero-3d-devices {
        opacity: 0.3;
    }

    .device-laptop {
        right: -10%;
        transform: translateY(-50%) rotateX(5deg) rotateY(-10deg) scale(0.4);
    }

    .device-iphone {
        left: -5%;
        bottom: 5%;
        transform: rotateX(3deg) rotateY(5deg) rotateZ(-2deg) scale(0.5);
    }

    .floating-element {
        display: none;
    }

    /* Logo Responsive - Mobile */
    .hero-logo-img {
        max-width: 280px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hologram-base {
        width: 200px;
        height: 30px;
    }

    .ring-1 {
        width: 150px;
        height: 30px;
    }

    .ring-2 {
        width: 120px;
        height: 24px;
    }

    .ring-3 {
        width: 90px;
        height: 18px;
    }

    .projection-beam {
        height: 350px;
    }
}

/* Utility Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}
