/* ============================================
   GOODFELLAS CAR DETAILING - Premium Styles
   Red + Black + Silver Theme
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    
    --accent-red: #CC0000;
    --accent-red-bright: #E60000;
    --accent-red-glow: rgba(204, 0, 0, 0.4);
    
    --silver: #C0C0C0;
    --silver-light: #E0E0E0;
    --silver-dark: #888888;
    
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #666666;
    
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-red: rgba(204, 0, 0, 0.5);
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-red: 0 0 30px rgba(204, 0, 0, 0.3);
    --shadow-red-strong: 0 0 50px rgba(204, 0, 0, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--accent-red);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red-bright);
}

/* ============================================
   SOUND TOGGLE
   ============================================ */
.sound-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sound-toggle:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: scale(1.1);
    box-shadow: var(--shadow-red);
}

.sound-toggle.active {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.sound-toggle svg {
    width: 24px;
    height: 24px;
}

.sound-toggle .sound-icon.unmuted {
    display: none;
}

.sound-toggle.active .sound-icon.muted {
    display: none;
}

.sound-toggle.active .sound-icon.unmuted {
    display: block;
}

/* ============================================
   WATER DRIP ANIMATION
   ============================================ */
.drip-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.water-drop {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(200, 220, 255, 0.7) 50%, rgba(150, 180, 220, 0.5) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    filter: blur(0.5px);
    box-shadow: 0 0 10px rgba(200, 220, 255, 0.5);
}

@keyframes dripFall {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) scale(0.8);
        opacity: 0;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background: transparent;
    transition: all var(--transition-medium);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 15px 5%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition-medium);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width var(--transition-fast);
}

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

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

.nav-cta {
    padding: 12px 28px;
    background: var(--accent-red);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all var(--transition-fast);
    border: 2px solid var(--accent-red);
}

.nav-cta:hover {
    background: transparent;
    color: var(--accent-red);
    box-shadow: var(--shadow-red);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 5% 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(204, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        var(--bg-primary);
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.3) 0%, 
        rgba(10, 10, 10, 0.8) 70%,
        var(--bg-primary) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.logo-container {
    margin-bottom: 30px;
    position: relative;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    animation: logoReveal 1.5s ease-out;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.title-line.accent {
    color: var(--accent-red);
    text-shadow: 0 0 40px var(--accent-red-glow);
    animation: redPulse 3s ease-in-out infinite;
}

@keyframes redPulse {
    0%, 100% {
        text-shadow: 0 0 40px var(--accent-red-glow);
    }
    50% {
        text-shadow: 0 0 60px var(--accent-red-glow), 0 0 80px rgba(204, 0, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-primary);
    border-color: var(--accent-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-red);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--silver-dark);
}

.btn-secondary:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid var(--border-red);
    color: var(--accent-red);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ============================================
   PRICES SECTION
   ============================================ */
.prices {
    background: var(--bg-secondary);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 40px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--silver-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.price-card:hover {
    border-color: var(--border-red);
    box-shadow: var(--shadow-red);
    transform: translateY(-5px);
}

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

.price-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.price-icon {
    width: 50px;
    height: 50px;
    background: rgba(204, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}

.price-icon svg {
    width: 28px;
    height: 28px;
}

.price-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.price-list {
    list-style: none;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

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

.price-item:hover {
    padding-left: 10px;
    color: var(--accent-red);
}

.price-item.highlight {
    background: rgba(204, 0, 0, 0.05);
    margin: 10px -20px;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-red);
}

.service-name {
    font-size: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-name small {
    font-size: 0.75rem;
    color: var(--silver-dark);
    font-style: italic;
}

.price-item:hover .service-name {
    color: var(--text-primary);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--accent-red);
    font-weight: 400;
}

.price-card-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.booking-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase {
    background: var(--bg-primary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.tiktok-container {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    min-height: 600px;
    position: relative;
}

.tiktok-wrapper {
    width: 100%;
    height: 100%;
}

.tiktok-embed {
    width: 100% !important;
    max-width: 100% !important;
}

.tiktok-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.tiktok-fallback.visible {
    opacity: 1;
    pointer-events: auto;
}

.tiktok-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 40px;
}

.tiktok-icon {
    width: 60px;
    height: 60px;
    color: var(--accent-red);
}

.tiktok-link span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Gallery */
.gallery-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.gallery-slider {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-card);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.gallery-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-dots {
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-dot.active {
    background: var(--accent-red);
    transform: scale(1.2);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    background: var(--bg-secondary);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-medium);
}

.location-card:hover {
    border-color: var(--border-red);
    box-shadow: var(--shadow-red);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: rgba(204, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.location-icon svg {
    width: 32px;
    height: 32px;
}

.location-details h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.address {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.hours {
    padding-top: 25px;
    border-top: 1px solid var(--border-subtle);
}

.hours p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.hours strong {
    color: var(--accent-red);
    font-weight: 600;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(100%) contrast(1.1);
    transition: filter var(--transition-medium);
}

.map-container:hover iframe {
    filter: grayscale(50%) contrast(1.1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.contact-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all var(--transition-medium);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-red);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-action {
    display: inline-block;
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.contact-card:hover .contact-action {
    transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .tiktok-container {
        min-height: 500px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav {
        padding: 15px 5%;
    }
    
    .hero {
        padding: 120px 5% 80px;
    }
    
    .hero-logo {
        max-width: 220px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card {
        padding: 30px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .price-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .sound-toggle {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}