:root {
    --primary: #db51d4;
    /* Vibrant Purple from Logo */
    --primary-light: #e879e2;
    --primary-dark: #b038aa;
    --secondary: #ffffff;
    --accent: #1a1a1a;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --bg-soft: #fcfcfc;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(219, 81, 212, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(219, 81, 212, 0.08);
    /* Purple-tinted shadow */
    --glow: 0 0 20px rgba(219, 81, 212, 0.3);
}

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

body {
    background-color: var(--secondary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Luxury Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 15%, rgba(219, 81, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(219, 81, 212, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 8%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: 0.3s ease;
}

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

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

section {
    padding: 120px 8% 80px;
    min-height: 100vh;
}

/* Hero Section Updates */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    padding: 0 8% !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

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

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    /* Explicit white */
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    /* White with slight transparency */
    max-width: 650px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(219, 81, 212, 0.3);
    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: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(219, 81, 212, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

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

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-down:hover {
    border-color: white;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Slider Styles */
.slider-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 8% 40px;
    scrollbar-width: none;
    /* Firefox */
}

.slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.slider-track {
    display: flex;
    gap: 30px;
}

.artist-card {
    min-width: 300px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-img-wrapper {
    width: 100%;
    height: 380px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.artist-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Was 0.15 */
    filter: none;
    /* Was grayscale(1) */
    transition: 0.8s ease;
}

.artist-card:hover .artist-thumb {
    transform: scale(1.05);
    /* Subtle zoom instead of opacity change */
}

.artist-info {
    padding: 1.5rem;
    text-align: center;
}

.artist-info h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

/* Common Components */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

/* Extracted Inline Styles */
#storia-home {
    min-height: auto;
    background: #fff;
    padding: 100px 8%;
}

.storia-card {
    padding: 10%;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    text-align: center;
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: 0.3s ease;
}

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

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

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

/* Fullscreen Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary);
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: var(--transition);
    opacity: 0;
}

.nav-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-overlay ul {
    list-style: none;
    text-align: center;
}

.nav-overlay a {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-decoration: none;
    color: var(--accent);
    display: block;
    padding: 1rem;
    transition: 0.3s ease;
}

.nav-overlay a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Contact Form */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(219, 81, 212, 0.1);
}

/* Footer */
footer {
    padding: 4rem 8% 4rem;
    background: #fdfdfd;
    border-top: 1px solid var(--primary-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Animations Support */
.reveal-init {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Parallax Section */
.cta-parallax {
    min-height: 60vh !important;
    /* Force height */
    padding: 120px 8%;
    text-align: center;
    /* Use a high-reliability fallback color and image */
    background-color: #111;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1429962714451-bb934ecdc4ec?auto=format&fit=crop&w=1920&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-parallax h2 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* Subpage Headers */
.page-header {
    height: 35vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 8%;
    color: white;
    margin-bottom: 0;
    background-color: #1a1a1a;
    /* Dark fallback */
    background-repeat: no-repeat;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Page Specific Header Backgrounds */
#header-storia {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?q=80&w=1920&auto=format&fit=crop') no-repeat center/cover !important;
}

#header-artisti {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?q=80&w=1920&auto=format&fit=crop') no-repeat center/cover !important;
    /* Meno altezza: la griglia artisti entra prima in viewport */
    height: 28vh;
    min-height: 200px;
}

/* Griglia roster: niente 120px di padding globale sulle section + griglia subito sotto l’header pagina */
section.artisti {
    padding: 1.5rem 8% 3rem !important;
    min-height: auto !important;
}

/* Anche il testo intro e i blocchi con reveal-init in HTML altrimenti restano opacity: 0 */
.artisti .reveal-init {
    opacity: 1 !important;
    transform: none !important;
}

#header-contatti {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?q=80&w=1920&auto=format&fit=crop') no-repeat center/cover !important;
}

/* Responsive Decor */
@media (max-width: 992px) {
    header {
        padding: 1rem 5%;
    }

    /* Page Header Adjustment */
    .page-header {
        height: 30vh;
        min-height: 250px;
        padding-top: 80px !important;
        /* Push content below fixed header */
    }

    .page-header h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    nav {
        display: none;
    }

    #storia-home {
        padding: 60px 5% !important;
    }

    .storia-card {
        padding: 2rem !important;
    }

    .artisti {
        padding-top: 80px !important;
        padding-bottom: 20px !important;
        min-height: auto !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    /* removed .grid gap change as it is now handled better */
}

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

    .hero h1 {
        font-size: 2.75rem;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .nav-overlay a {
        font-size: 2rem;
    }

    /* Fix Grid Spacing */
    .grid,
    .grid-2-cols {
        gap: 2rem;
        margin-top: 2rem;
    }

    #storia-home {
        padding: 40px 5% !important;
    }

    .storia-card {
        padding: 1.5rem !important;
    }

    .storia-img {
        aspect-ratio: auto !important;
        height: 300px !important;
        min-height: 300px;
        margin-bottom: 2rem;
    }

    /* Fix Artist Cards on Mobile */
    .artist-card {
        min-width: 240px;
    }

    .artist-img-wrapper {
        height: 300px;
        /* Reduced from 380px/400px */
    }

    /* Fix CTA Parallax Excessive Height */
    .cta-parallax {
        min-height: auto !important;
        padding: 80px 5% !important;
        background-attachment: scroll !important;
    }

    .cta-parallax h2 {
        font-size: 2.2rem !important;
        /* Scale down title */
    }

    /* Fix Hero Padding */
    .hero {
        padding: 0 5% !important;
        min-height: 100svh !important;
        /* Full viewport height on mobile */
        height: 100svh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 80px !important;
        /* Slight offset for header */
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
    }

    /* Force Visibility of Animated Elements on Mobile */
    /* This fixes "missing titles/names" if JS intersection observer fails */
    .reveal-init,
    .reveal-text {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-bar.active {
    transform: translateY(0);
}

.cookie-content {
    color: #f0f0f0;
    font-size: 0.9rem;
    max-width: 700px;
    margin-right: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

.btn-cookie-accept {
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(219, 81, 212, 0.2);
}

.btn-cookie-refuse {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #f0f0f0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-cookie-refuse:hover {
    border-color: #f0f0f0;
    background: rgba(255, 255, 255, 0.1);
}

.btn-cookie-accept:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 81, 212, 0.3);
}

@media (max-width: 768px) {
    .cookie-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .cookie-content {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept {
        width: 100%;
        text-align: center;
    }
}

/* Hero Logo */
.hero-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 280px;
        /* Reduced from 100% to look more elegant */
        width: 70%;
        padding: 0;
        margin-bottom: 2rem;
    }
}

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Magnetic Effect Utilities */
.btn,
nav a {
    /* Ensure transform is applied */
    transform: translate(var(--x, 0px), var(--y, 0px));
    /* Override existing transitions to make the magnetic movement snappy but smooth return */
    transition: transform 0.1s linear, background 0.3s, color 0.3s, box-shadow 0.3s !important;
    display: inline-block;
    /* Required for transform */
}

/* Make sure hover state doesn't conflict with transform */
/* Color transition is handled by original rules */

.btn:hover {
    /* transform is handled by JS, but we want the lift too? 
       Actually the magnetic effect replaces the simple translateY(-3px). 
       We can combine them if we want, but usually magnetic overrides simple hover transforms.
       Let's keep the magnetic effect as the primary movement.
    */
    box-shadow: 0 15px 40px rgba(219, 81, 212, 0.5);
}

/* 1. Staggered Text Reveal (Smoother Fade) */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Delicate Spotlight Effect */
.card,
.artist-card {
    position: relative;
    /* Ensure z-index allows glow to be behind content if needed, but here we overlay subtly */
    overflow: hidden;
    /* Needed to contain the glow */
}

.card::before,
.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* The glow gradient: very subtle white/gold tint */
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(219, 81, 212, 0.06),
            transparent 40%);
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
    /* On top of image but transparent */
    mix-blend-mode: screen;
    /* Helps it blend nicely */
}

.card:hover::before,
.artist-card:hover::before {
    opacity: 1;
}

/* Contact Grid Redesign */
.contact-container {
    padding: 0;
    /* Reset padding as we might want it on children or kept on main wrapper differently */
    background: transparent;
    box-shadow: none;
    max-width: 1100px;
    overflow: visible;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Form takes slightly more space */
    gap: 4rem;
    align-items: start;
}

.contact-form-column {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 10;
}

.contact-info-column {
    background: var(--bg-soft);
    /* Subtle contrast */
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    /* Match height visually if needed, usually auto is better */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* Spotlight for contact columns */
.contact-form-column::before,
.contact-info-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(219, 81, 212, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    border-radius: 12px;
}

.contact-form-column:hover::before,
.contact-info-column:hover::before {
    opacity: 1;
}

.info-block h4 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
}

.highlight-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.phone-link {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.phone-link:hover,
.info-block a:hover {
    color: var(--primary);
}

.info-block p a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.contact-info-column .social-links {
    display: flex;
    gap: 1.5rem;
}

.contact-info-column .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--accent);
    transition: var(--transition);
}

.contact-info-column .social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Responsive Contact Grid */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-column {
        order: 1;
        /* Form first */
        padding: 2rem;
        gap: 2rem;
    }

    .contact-form-column {
        padding: 2rem;
    }
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(219, 81, 212, 0.3);
}

/* Agency Collaboration Note */
.collaboration-note {
    font-size: 15px;
    /* User requested 15px */
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 500;
    margin: 3rem auto 0.5rem;
}

/* ============================================
   CONTACT CARDS - New Design Without Form
   ============================================ */

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(219, 81, 212, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(219, 81, 212, 0.3);
}

.contact-card-icon i {
    font-size: 1.6rem;
    color: white;
}

.contact-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.contact-address {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-vat {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(219, 81, 212, 0.3);
}

.contact-action-btn i {
    font-size: 0.9rem;
}

.contact-action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(219, 81, 212, 0.45);
}

/* Contact Footer - PEC & Social */
.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    margin-top: 0;
}

.contact-pec {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-pec span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-pec a {
    margin-top: 0.35rem;
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-pec a:hover {
    text-decoration: underline;
}

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

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(219, 81, 212, 0.3);
}

/* Responsive Contact Cards */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-card-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card-icon i {
        font-size: 1.3rem;
    }

    .contact-name {
        font-size: 1.3rem;
    }

    .contact-action-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
}