/* ═══════════════════════════════════════════════════════════════════════════
   BARBERO CRUISE SOUND - Landing Page Styles
   Theme: Disco Retro meets Modern Premium
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS Variables
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 30, 0.6);
    --bg-card-hover: rgba(30, 30, 45, 0.8);

    /* Primary - Hot Pink (from logo) */
    --primary: #E91E7B;
    --primary-light: #FF4D9F;
    --primary-dark: #C71263;
    --primary-glow: rgba(233, 30, 123, 0.4);

    /* Secondary - Violet Purple (no cyan) */
    --secondary: #9D4EDD;
    --secondary-glow: rgba(157, 78, 221, 0.3);

    /* Accent - Deep Magenta (from background atmosphere) */
    --accent: #8B1A6D;
    --accent-light: #B52A8F;

    /* Neutrals */
    --white: #ffffff;
    --gray-100: #fAfAfA;
    /* Whither text */
    --gray-200: #f5f5f5;
    /* Whither text */
    --gray-300: #cccccc;
    --gray-400: #888888;
    --gray-500: #2a2a35;

    /* Gradients - Hot Pink to Purple spectrum */
    --gradient-primary: linear-gradient(135deg, #E91E7B 0%, #8B1A6D 50%, #9D4EDD 100%);
    --gradient-disco: linear-gradient(135deg, #E91E7B 0%, #9D4EDD 50%, #8B1A6D 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--gray-100);
    /* Use whither gray */
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   Main Background
   ───────────────────────────────────────────────────────────────────────────── */
.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0f 100%);
}

.main-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
    background-size: 300px 300px;
    opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Navigation
   ───────────────────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-medium);
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.8), transparent);
    backdrop-filter: blur(5px);
    /* Ensure it's never just "in the shadow" */
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    padding: 12px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 30, 123, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 95%;
    /* Increased from 1200px to move logo further left */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    max-width: 200px;
    /* Reduced width for better responsiveness */
    padding-left: 0;
    /* Ensures it starts at the edge */
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-medium);
    /* mix-blend-mode: screen; */
    /* Removes black background - DISABLED for transparent PNG */
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 10, 108, 0.5));
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-200);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--primary-glow);
    /* Added pink glow as requested */
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 600;
    color: var(--white) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Center items */
        gap: 30px;
        padding: 80px 30px;
        /* Add padding */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        transform: translateX(100%);
        visibility: hidden;
    }

    .nav-links a {
        font-size: 1.2rem;
        /* Larger text for mobile */
        color: var(--white) !important;
        /* Ensure white text */
        text-align: center;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.9)),
        url('assets/sfondo.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--bg-dark);
}

/* Cover star in bottom-left corner */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom left, rgba(10, 10, 15, 1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 80px;
    /* Move content away from left edge on desktop */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 10, 108, 0.15);
    border: 1px solid rgba(255, 10, 108, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    /* animation: fadeInUp 0.8s ease; */
    /* Disabled for instant load */
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    color: var(--gray-100);
    /* animation: fadeInUp 0.8s ease 0.1s both; */
    /* Disabled for instant load */
}

.title-highlight {
    display: block;
    /* animation: fadeInUp 0.8s ease 0.2s both; */
    /* Disabled for instant load */
}

.word-rotate {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.2em;
    vertical-align: bottom;
}

.word-rotate span {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordRotate 6s infinite;
}

@keyframes wordRotate {

    0%,
    15% {
        transform: translateY(0);
    }

    25%,
    40% {
        transform: translateY(-100%);
    }

    50%,
    65% {
        transform: translateY(-200%);
    }

    75%,
    90% {
        transform: translateY(-300%);
    }

    100% {
        transform: translateY(-300%);
    }
}

.title-accent {
    display: block;
    background: var(--gradient-disco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: fadeInUp 0.8s ease 0.3s both; */
    /* Disabled for instant load */
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-200);
    margin-bottom: 40px;
    max-width: 550px;
    /* animation: fadeInUp 0.8s ease 0.4s both; */
    /* Disabled for instant load */
}

.hero-subtitle strong {
    color: var(--primary-light);
    font-weight: 700;
    text-shadow: 0 0 15px var(--primary-glow);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    /* Center buttons on desktop */
    /* animation: fadeInUp 0.8s ease 0.5s both; */
    /* Disabled for instant load */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(233, 30, 123, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF4D9F 0%, #E91E7B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 123, 0.4), 0 0 0 2px rgba(255, 77, 159, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(233, 30, 123, 0.2);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-400);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(233, 30, 123, 0.2);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.1s ease;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Ripple Effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transform: scale(0);
    animation: ripple-animation 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Spring-like easing */
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Setup Showcase Section
   ───────────────────────────────────────────────────────────────────────────── */
.setup-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(13, 20, 33, 0) 0%, rgba(20, 27, 45, 0.5) 50%, rgba(13, 20, 33, 0) 100%);
    position: relative;
    overflow: hidden;
}

.setup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal columns for better balance with two images */
    gap: 60px;
    align-items: flex-start;
}

.setup-showcase.staggered-layout {
    background: linear-gradient(180deg, rgba(13, 20, 33, 0) 0%, rgba(20, 27, 45, 0.5) 50%, rgba(13, 20, 33, 0) 100%);
}

.staggered-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.staggered-image-box {
    width: 100%;
}

.staggered-image-box.top-left {
    align-self: start;
    margin-top: -40px;
}

.staggered-image-box.bottom-right {
    align-self: end;
    margin-bottom: -40px;
}

/* Method Steps Styling */
.method-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.method-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-medium);
}

.method-step:hover {
    background: rgba(255, 10, 108, 0.05);
    border-color: rgba(255, 10, 108, 0.2);
    transform: translateX(10px);
}

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(233, 30, 123, 0.3);
}

.step-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 700;
}

.step-info p {
    font-size: 0.95rem;
    color: var(--gray-200);
    line-height: 1.6;
    margin-bottom: 0;
}

.staggered-content {
    grid-column: span 1;
}

.setup-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.setup-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
}

.setup-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.setup-image-container:hover .setup-img {
    transform: scale(1.05);
}

.setup-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 0, 107, 0.1));
    pointer-events: none;
}

.setup-details .section-title {
    margin: 10px 0 20px;
    text-align: left;
}

.setup-intro {
    font-size: 1.1rem;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 30px;
}

.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.spec-item {
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.spec-item h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.spec-item p {
    font-size: 0.9rem;
    color: var(--gray-200);
}

.setup-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(94, 230, 153, 0.1);
    border: 1px solid rgba(94, 230, 153, 0.3);
    border-radius: 100px;
    color: #5ee699;
    font-size: 0.85rem;
    font-weight: 500;
}

.setup-badge svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .staggered-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .staggered-image-box.top-left,
    .staggered-image-box.bottom-right {
        margin: 0;
        order: var(--order);
    }

    .staggered-image-box.top-left {
        --order: 1;
    }

    .staggered-content {
        order: 2;
    }

    .staggered-image-box.bottom-right {
        --order: 3;
    }

    .setup-image-container {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    /* animation: fadeInUp 0.8s ease 0.6s both; */
    /* Disabled for instant load */
    justify-content: center;
    /* Center stats on desktop */
}

.stat {
    text-align: left;
}

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

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-300);
}

/* Hero Visual - Static Cards */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 55%;
    transform: translateY(-50%);
    width: 600px;
    height: 500px;
    z-index: 10;
}

.floating-card {
    position: absolute;
    width: 280px;
    /* Slightly smaller for better fit */
    background: rgba(20, 20, 30, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Reduced shadow */
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Smoother transition */
    transform: none;
    /* Explicitly flat default */
}

.floating-card:hover {
    transform: translateY(-3px);
    /* Gentle lift */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow on hover */
    background: rgba(20, 20, 30, 0.6);
    /* Slightly more opaque on hover */
}

.card-1 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.card-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.card-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .hero-visual {
        right: 2%;
        width: 400px;
    }

    .floating-card {
        width: 260px;
    }

    .card-img {
        height: 150px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gray-300);
    border-bottom: 2px solid var(--gray-300);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Section Styles
   ───────────────────────────────────────────────────────────────────────────── */
section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 10, 108, 0.1);
    border: 1px solid rgba(255, 10, 108, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-200);
    max-width: 65ch;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Services Section
   ───────────────────────────────────────────────────────────────────────────── */
.services {
    background: linear-gradient(180deg, transparent, rgba(20, 20, 30, 0.5) 50%, transparent);
}

.equipment-showcase {
    max-width: 600px;
    /* Reduced from 900px for smaller, more balanced size */
    margin: 30px auto 50px;
    /* Added bottom margin for spacing before cards */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.equipment-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(30, 30, 45, 0.85);
    /* Increased opacity and lightness for better visibility */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* More visible border */
    border-radius: 20px;
    padding: 40px;
    transition: all 0.2s ease;
    /* Faster, smoother */
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
    /* Faster */
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(233, 30, 123, 0.15), rgba(139, 26, 109, 0.08));
    /* Hot pink to deep magenta from new palette */
    transform: translateY(-3px);
    /* Less movement */
    border-color: var(--primary-glow);
    box-shadow: 0 8px 24px -8px var(--primary-glow);
    /* Lighter shadow */
}

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

.service-card.featured {
    grid-column: span 2;
    /* Background moved to hover state for all cards */
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 10, 108, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    color: var(--gray-200);
    line-height: 1.7;
}

.service-features {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-features li {
    padding: 10px 18px;
    /* Slightly more padding for better touch targets */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    /* Changed from 50px for rectangular shape with rounded corners */
    font-size: 0.85rem;
    color: var(--gray-100);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Decades Section
   ───────────────────────────────────────────────────────────────────────────── */
.decades {
    padding: var(--section-padding) 0;
}

.decades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.decade-card {
    position: relative;
    height: 480px;
    /* Increased height */
    border-radius: 24px;
    overflow: visible;
    /* Prevent clipping of the singer head */
    cursor: pointer;
    transition: var(--transition-medium);
}

.decade-card:hover {
    transform: translateY(-20px);
}

.decade-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    transition: var(--transition-slow);
    overflow: hidden;
    /* Background itself should be clipped */
    z-index: 1;
}

.decade-card:hover .decade-bg {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.decade-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
    border-radius: 0 0 24px 24px;
    z-index: 5;
}

.decade-number {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.decade-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.decade-content p {
    color: var(--gray-200);
    font-size: 0.95rem;
}

.decade-number {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    z-index: 5;
    line-height: 1;
}

.decade-singer {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 110%;
    /* Slightly wider than card */
    height: 125%;
    /* Taller to pop out */
    object-fit: contain;
    object-position: bottom right;
    z-index: 10;
    transform: translateY(0);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.decade-card:hover .decade-singer {
    transform: translateY(-15px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Adjustments per decade */
.decade-card[data-decade="70"] .decade-singer {
    right: -25px;
}

.decade-card[data-decade="80"] .decade-singer {
    right: -20px;
    height: 130%;
}

.decade-card[data-decade="90"] .decade-singer {
    right: -10px;
}

/* Keep text layout normal for 70s card */
.decade-card[data-decade="70"] .decade-content {
    position: relative;
    z-index: 5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Territory Section
   ───────────────────────────────────────────────────────────────────────────── */
.territory {
    background: linear-gradient(180deg, transparent, rgba(20, 20, 30, 0.5) 50%, transparent);
}

.territory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.territory-text .section-tag {
    margin-bottom: 16px;
}

.territory-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.territory-text>p {
    color: var(--gray-200);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.territory-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.territory-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.territory-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.territory-list svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.territory-note {
    padding: 20px;
    background: rgba(255, 10, 108, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
    color: var(--gray-100);
    font-size: 0.95rem;
}

.territory-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: url('assets/piedmont_map_stylized.png') center/contain no-repeat;
    opacity: 0.8;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.map-pin:hover {
    transform: rotate(-45deg) scale(1.2);
}

.city-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    white-space: nowrap;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 10, 108, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.map-pin:hover .city-label {
    opacity: 1;
    bottom: -35px;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 40px;
    height: 40px;
    background: var(--primary-glow);
    border-radius: 50%;
    animation: pinPulse 2s infinite;
}

.pin-1 {
    top: 30%;
    left: 60%;
}

.pin-2 {
    top: 50%;
    left: 40%;
}

.pin-3 {
    top: 70%;
    left: 30%;
}

@keyframes pinPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1.5);
        opacity: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Events Section
   ───────────────────────────────────────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
}

.event-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 10, 108, 0.2);
    box-shadow: var(--shadow-glow);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.event-card p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Contact Section
   ───────────────────────────────────────────────────────────────────────────── */
.contact {
    background: linear-gradient(180deg, transparent, rgba(20, 20, 30, 0.8));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 60px;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--gray-200);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.contact-item:hover {
    background: rgba(255, 10, 108, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 10, 108, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 10, 108, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23808080'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 24px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--white);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer-con.tech-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Changed from 3 to 2 for 2x2 layout with 4 items */
    gap: 32px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-cruise,
.footer-brand .logo-sound {
    display: block;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--gray-300);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-300);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--primary);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Bio Section
   ───────────────────────────────────────────────────────────────────────────── */
.bio-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.bio-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 10, 108, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bio-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-200);
    margin-bottom: 20px;
}

.bio-content p:last-child {
    font-style: italic;
    color: var(--primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .bio-content h2 {
        font-size: 2rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Cookie Banner Global
   ───────────────────────────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(20, 20, 30, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.5s ease-out;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.cookie-content p {
    color: var(--gray-200);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.cookie-content p a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.cookie-content p a:hover {
    color: var(--white);
    border-color: var(--white);
}

.cookie-banner .btn-accept {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 24px !important;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(233, 30, 123, 0.3);
    white-space: nowrap;
}

.cookie-banner .btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 123, 0.5);
}

.cookie-banner .btn-reject {
    transition: var(--transition-fast);
}

.cookie-banner .btn-reject:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-btns {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Design
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Global mobile overflow fix */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* Navbar Mobile Fixes */
    .logo-img {
        height: 45px;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Hero Layout Clean-up */
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
        text-align: center;
        display: block;
        overflow-x: hidden;
    }

    /* FIX: Constrain ALL images on mobile */
    img,
    .equipment-hero-img,
    .setup-img,
    .logo-img {
        max-width: 100% !important;
        height: auto !important;
    }

    .hero-content {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.0rem;
        margin-bottom: 20px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-visual {
        display: none !important;
    }

    .floating-card {
        display: none !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        margin-top: 40px;
    }

    /* Buttons Fix */
    .btn {
        border-radius: 12px !important;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    /* ═══ ALL GRIDS → Single Column ═══ */
    .services-grid,
    .events-grid,
    .decades-grid,
    .contact-wrapper,
    .footer-content,
    .footer-con.tech-specs,
    .setup-grid,
    .staggered-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Cards full width + no column spanning */
    .service-card,
    .event-card,
    .decade-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        padding: 24px;
        text-align: left;
        box-sizing: border-box;
        grid-column: auto !important;
    }

    .service-card.featured {
        grid-column: auto !important;
    }

    /* Equipment showcase image */
    .equipment-showcase {
        width: 100%;
        overflow: hidden;
    }

    /* Setup section mobile */
    .setup-images-wrapper {
        width: 100%;
    }

    .setup-image-container {
        width: 100%;
        max-width: 100%;
    }

    .staggered-image-box.top-left,
    .staggered-image-box.bottom-right {
        margin: 0 !important;
    }

    .contact-wrapper {
        padding: 30px 20px;
    }

    /* Container overflow safety */
    .container,
    section {
        max-width: 100vw !important;
        overflow-x: hidden;
    }

    /* Cookie Banner Mobile */
    .cookie-banner {
        bottom: 20px !important;
        left: 15px !important;
        right: 15px !important;
        width: auto !important;
        margin: 0 !important;
        flex-direction: column !important;
        padding: 20px !important;
        gap: 15px !important;
        box-sizing: border-box !important;
        max-width: calc(100vw - 30px) !important;
        transform: none !important;
    }

    .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 60px 15px 20px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Legal Modal Styles
   ───────────────────────────────────────────────────────────────────────────── */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 1000px;
    height: 90%;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.close-modal {
    color: var(--gray-200);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

#legalIframeContainer {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

#legalIframeContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    .section-title {
        font-size: 1.75rem;
    }
}
/* ─────────────────────────────────────────────────────────────────────────────
   Custom Toast Notifications
   ───────────────────────────────────────────────────────────────────────────── */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-message {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 100%;
    height: 100%;
}

.toast-error {
    border-left: 4px solid #ff416c;
}
.toast-error .toast-icon {
    color: #ff416c;
}

.toast-success {
    border-left: 4px solid #00ff87;
}
.toast-success .toast-icon {
    color: #00ff87;
}

@media (max-width: 480px) {
    .custom-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
