/* 
   --------------------------------------------------------------------------
   Rocket Records Lab - Luxurious Gold Edition
   Theme: "Golden Hour" (Premium Gold Aesthetic with Advanced Features)
   --------------------------------------------------------------------------
*/

:root {
    /* Gold Color Palette */
    --color-bg: #000000;
    --color-surface: #0a0a0a;
    --color-surface-elevated: #151515;
    --color-primary: #FFD700;
    /* Pure Gold */
    --color-primary-dark: #B8860B;
    /* Dark Goldenrod */
    --color-primary-light: #FFA500;
    /* Amber Gold */
    --color-accent: #F4C430;
    /* Saffron Gold */
    --color-primary-glow: rgba(255, 215, 0, 0.4);
    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(255, 215, 0, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-metallic: linear-gradient(135deg, #FFD700 0%, #F4C430 50%, #B8860B 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.05) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

/* Animated Background with Gold Particles */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(244, 196, 48, 0.03) 0%, transparent 60%);
    animation: backgroundFloat 25s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-5%, -5%) rotate(120deg);
    }

    66% {
        transform: translate(5%, 5%) rotate(240deg);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {

    0%,
    100% {
        filter: hue-rotate(0deg) brightness(1);
    }

    50% {
        filter: hue-rotate(15deg) brightness(1.2);
    }
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    margin: var(--spacing-sm) auto 0;
    border-radius: 10px;
    box-shadow: 0 0 30px var(--color-primary-glow);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 30px var(--color-primary-glow);
    }

    50% {
        box-shadow: 0 0 50px var(--color-primary-glow);
    }
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 800;
    padding: 1.3rem 3.5rem;
    box-shadow: 0 10px 40px -10px var(--color-primary-glow);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px -10px var(--color-primary-glow);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 700;
    padding: 1.3rem 3.5rem;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition-fast);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.header.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-mobile-cta {
    display: none !important;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    opacity: 0.8;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 950;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    width: min(100%, 900px);
    z-index: 10;
    position: relative;
    padding: 0 var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.hero-subtitle::after {
    display: none;
}

.hero-description {
    font-size: 1.3rem !important;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-actions .btn {
    justify-content: center;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 100;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

.slider-arrow i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.slider-arrow:hover i {
    color: #000;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow:
        0 30px 80px rgba(255, 215, 0, 0.4),
        0 15px 40px rgba(255, 215, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.service-image {
    width: 100%;
    height: auto;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: var(--spacing-lg);
}

.service-content h3 {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.5rem;
}

.service-content i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* Services Carousel */
.services-carousel {
    position: relative;
    margin-top: var(--spacing-lg);
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.5s ease;
    padding: var(--spacing-sm) 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.carousel-arrow:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
}

.carousel-arrow.left {
    left: 0;
}

.carousel-arrow.right {
    right: 0;
}

/* Product Grid (WooCommerce) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow:
        0 30px 80px rgba(255, 215, 0, 0.35),
        0 15px 40px rgba(255, 215, 0, 0.25),
        0 5px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-image {
    width: 100%;
    height: auto;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
}

.product-info {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--color-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
    font-weight: 700;
}

.product-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-family: 'Montserrat', sans-serif;
}

.product-price .currency {
    font-size: 1.2rem;
}

/* Process Timeline */
.process-timeline {
    max-width: 1200px;
    margin: var(--spacing-lg) auto;
    position: relative;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 1024px) {
    .timeline-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .timeline-container {
        grid-template-columns: 1fr;
    }
}

.timeline-step {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 215, 0, 0.04);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 24px;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.timeline-step:hover::before {
    opacity: 1;
}

.timeline-step:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow:
        0 25px 70px rgba(255, 215, 0, 0.3),
        0 12px 35px rgba(255, 215, 0, 0.2),
        0 4px 12px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-metallic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #000;
    box-shadow:
        0 10px 30px rgba(255, 215, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 2rem auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    text-align: center;
    font-weight: 800;
}

.step-description {
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-wrapper {
    display: grid;
    gap: var(--spacing-md);
    grid-template-columns: repeat(3, 1fr);
    margin-top: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }
}

.pricing-column {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 28px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-column::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.pricing-column:hover::before {
    opacity: 0.2;
}

.pricing-column:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(255, 215, 0, 0.3),
        0 15px 40px rgba(255, 215, 0, 0.2),
        0 5px 15px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pricing-column h3 {
    border-bottom: 2px solid var(--color-border);
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    font-size: 1.8rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px dashed rgba(255, 215, 0, 0.1);
    transition: var(--transition-fast);
}

.price-item:hover {
    padding-left: var(--spacing-xs);
    border-bottom-color: var(--color-primary);
}

.price-label {
    color: var(--color-text-muted);
    flex: 1;
}

.price-value {
    font-weight: 700;
    color: var(--color-text-main);
    font-family: 'Montserrat', sans-serif;
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #0a0a0a 25%, #151515 50%, #0a0a0a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Contact Section */
.contact-section {
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.contact-box {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    display: block;
    padding: var(--spacing-xl);
    border-radius: 32px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    opacity: 0.5;
    pointer-events: none;
}

.social-links {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    transition: var(--transition-bounce);
    border: 1px solid var(--color-border);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: #000;
    transform: scale(1.2) rotate(360deg);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px var(--color-primary-glow);
}

/* Footer */
.footer {
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.9rem;
    color: #444;
    margin-top: var(--spacing-xl);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(255, 215, 0, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    z-index: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.cta-title::after {
    display: none;
}

.cta-copy {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-button {
    font-size: 1.1rem;
    padding: 1.5rem 3.5rem;
}

.contact-copy {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-email {
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-content {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .header {
        padding: 1rem 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        top: 5.5rem;
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 1rem;
        background: rgba(10, 10, 10, 0.97);
        border: 1px solid rgba(255, 215, 0, 0.14);
        border-radius: 24px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(18px);
        opacity: 0;
        transform: translateY(-1rem);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1200;
    }

    .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        padding: 0.95rem 1rem;
        border-radius: 16px;
        background: rgba(255, 215, 0, 0.04);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(255, 215, 0, 0.12);
    }

    .nav-mobile-cta {
        display: flex !important;
        justify-content: center;
        margin-top: 0.25rem;
        background: var(--gradient-primary) !important;
        color: #000 !important;
        font-weight: 800;
        box-shadow: 0 12px 32px rgba(255, 215, 0, 0.18);
    }

    .nav-cta {
        display: none;
    }

    .nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.5rem, 10vw, 3.6rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.75rem);
        margin-bottom: var(--spacing-md);
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .hero-slide {
        min-height: 100svh;
        padding: 7rem 0 5.5rem;
        align-items: flex-start;
    }

    .hero-content {
        min-height: calc(100svh - 13rem);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.24em;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1.05rem !important;
        line-height: 1.7;
    }

    .services-grid,
    .products-grid,
    .pricing-wrapper,
    .timeline-container {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }

    .hero-actions {
        width: 100%;
        margin-top: auto;
        padding-top: 1.5rem;
    }

    .hero-actions .btn,
    .cta-button,
    .contact-email {
        width: 100%;
    }

    .service-image,
    .product-image {
        min-height: 200px;
    }

    .service-content,
    .product-info,
    .pricing-column,
    .timeline-step,
    .contact-box {
        padding: 1.5rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-copy {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .slider-arrow {
        display: none;
    }

    .slider-dots {
        bottom: 2.5rem;
        gap: 0.75rem;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-content {
        padding: 0 0.25rem;
    }

    .slider-dots {
        bottom: 1.25rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
    .service-card,
    .product-card,
    .timeline-step,
    .pricing-column,
    .contact-box {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    }

    .service-card,
    .pricing-column,
    .contact-box {
        background: rgba(15, 15, 15, 0.92);
    }

    .product-card {
        background: rgba(20, 20, 20, 0.92);
    }

    .timeline-step {
        background: rgba(18, 18, 18, 0.92);
    }

    .service-card::before,
    .timeline-step::before,
    .pricing-column::before,
    .contact-box::before {
        opacity: 0;
    }

    .service-card:hover,
    .product-card:hover,
    .timeline-step:hover,
    .pricing-column:hover,
    .btn-primary:hover,
    .slider-arrow:hover,
    .social-icon:hover {
        transform: none;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    }

    .service-card:hover::before,
    .timeline-step:hover::before,
    .pricing-column:hover::before,
    .btn:hover::before {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .service-card:hover .service-image img,
    .product-card:hover .product-image img {
        transform: none;
    }

    .slider-arrow:hover i,
    .social-icon:hover {
        color: inherit;
    }
}
