﻿/* ============================================
   BOLITAPAINTBALL - PREMIUM STYLESHEET
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   ROOT DESIGN SYSTEM
   ============================================ */

:root {
    --color-dark: #1a1a1a;
    --color-darker: #0f0f0f;
    --color-graphite: #2d2d2d;
    --color-white: #ffffff;
    --color-light: #f5f5f5;
    --color-accent-red: #4caf50;
    --color-accent-orange: #2e7d32;
    --color-text: #e8e8e8;
    --color-text-light: #b0b0b0;
    --color-text-lighter: #888888;
    
    /* Typography Scale */
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-base: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 32px;
    --fs-4xl: 42px;
    --fs-5xl: 56px;
    --fs-6xl: 72px;
    --fs-7xl: 96px;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Line Heights */
    --lh-tight: 1.2;
    --lh-snug: 1.4;
    --lh-normal: 1.6;
    --lh-relaxed: 1.8;
    
    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 900;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--fw-bold);
    letter-spacing: -0.8px;
}

h1 {
    font-size: var(--fs-6xl);
    line-height: var(--lh-tight);
    font-weight: var(--fw-extrabold);
    letter-spacing: -1.2px;
}

h2 {
    font-size: var(--fs-5xl);
    line-height: var(--lh-tight);
    font-weight: var(--fw-extrabold);
}

h3 {
    font-size: var(--fs-2xl);
    line-height: var(--lh-snug);
}

p {
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-regular);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--color-accent-red);
    letter-spacing: 1.5px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-red), var(--color-accent-orange));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-accent-red);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 70px;
    min-height: 700px;
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-3xl);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    display: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 20, 10, 0.85) 0%,
        rgba(20, 40, 20, 0.6) 40%,
        rgba(76, 175, 80, 0.12) 70%,
        rgba(10, 20, 10, 0.9) 100%);
    z-index: 1;
}

/* Decorative Elements */
.hero-decoration-primary {
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -150px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(46, 125, 50, 0.1));
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-decoration-secondary {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), transparent);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-accent-line {
    position: absolute;
    background: linear-gradient(90deg, var(--color-accent-red), var(--color-accent-orange), transparent);
    z-index: 1;
}

.hero-accent-1 {
    width: 300px;
    height: 4px;
    top: 20%;
    right: 10%;
    animation: slideInRight 1.2s ease-out 0.3s both;
}

.hero-accent-2 {
    width: 200px;
    height: 3px;
    bottom: 30%;
    right: 5%;
    animation: slideInRight 1.2s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: var(--color-white);
    flex-shrink: 1;
    flex-grow: 0;
    margin-right: var(--space-2xl);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 50px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-accent-red);
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2xl);
    backdrop-filter: blur(10px);
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(43px, 11vw, 115px);
    line-height: var(--lh-tight);
    font-weight: var(--fw-extrabold);
    letter-spacing: -2px;
    margin-bottom: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.title-line {
    display: block;
}

.accent-line {
    position: relative;
    overflow: hidden;
}

.accent-line .accent {
    display: inline;
    background: linear-gradient(135deg, var(--color-accent-red), var(--color-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-regular);
    max-width: 700px;
}

.subtitle-highlight {
    display: block;
    color: var(--color-accent-red);
    font-weight: var(--fw-semibold);
    margin-top: var(--space-sm);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-cta {
    animation: fadeUpCTA 1s ease-out 0.6s both;
}

@keyframes fadeUpCTA {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-secondary {
    padding: var(--space-md) var(--space-2xl);
    background: transparent;
    border: 2px solid rgba(232, 232, 232, 0.3);
    color: var(--color-white);
    border-radius: 8px;
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.cta-secondary:hover {
    border-color: var(--color-accent-red);
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-accent-red);
    line-height: 1;
}

.stat-label {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    font-weight: var(--fw-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(76, 175, 80, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-light);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 1px;
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-dot {
    width: 8px;
    height: 12px;
    border: 2px solid var(--color-text-light);
    border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollBounce {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================
   HERO MARKER IMAGE
   ============================================ */

.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 550px;
    height: 600px;
    animation: fadeInMarker 1s ease-out 0.6s both;
    margin-left: -60px;
}

@keyframes fadeInMarker {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-marker-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, rgba(76, 175, 80, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-marker-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    transition: var(--transition-slow);
    filter: drop-shadow(0 20px 40px rgba(76, 175, 80, 0.2));
}

.hero-image-container:hover .hero-marker-image {
    transform: scale(1.1) rotateZ(-5deg);
    filter: drop-shadow(0 30px 60px rgba(76, 175, 80, 0.4));
}

.hero-image-container:hover .hero-marker-glow {
    animation: glowPulseIntense 0.6s ease-out forwards;
}

@keyframes glowPulseIntense {
    from {
        transform: scale(1);
        opacity: 0.8;
    }
    to {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ============================================
   BUTTONS & CTA
   ============================================ */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-2xl);
    background: linear-gradient(135deg, var(--color-accent-red), var(--color-accent-orange));
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--space-4xl) 0;
}

.section-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--color-white);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--space-3xl);
    font-weight: var(--fw-regular);
    line-height: var(--lh-relaxed);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.servizi {
    background: linear-gradient(180deg, rgba(45, 45, 45, 0.5) 0%, rgba(15, 15, 15, 0.8) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.service-card {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-slow);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--color-accent-red);
    background: rgba(45, 45, 45, 0.8);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(76, 175, 80, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-red);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    color: var(--color-accent-orange);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(46, 125, 50, 0.3));
    transform: scale(1.15) rotateZ(5deg);
}

.service-card h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-lg);
    color: var(--color-white);
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.service-rate {
    font-size: var(--fs-lg);
    font-weight: var(--fw-extrabold);
    color: var(--color-accent-red);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.perche {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.8) 0%, rgba(45, 45, 45, 0.5) 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.advantage-item {
    text-align: center;
    transition: var(--transition);
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    position: relative;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.advantage-item:first-child {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 380px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(46, 125, 50, 0.04) 100%);
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.advantage-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(46, 125, 50, 0.04) 100%);
    border-color: rgba(76, 175, 80, 0.2);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.1);
}

.advantage-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(46, 125, 50, 0.15));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-red);
    transition: var(--transition);
    font-size: 50px;
}

.advantage-item:hover .advantage-icon {
    border-color: var(--color-accent-red);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25), rgba(46, 125, 50, 0.25));
    transform: scale(1.15) rotateZ(5deg);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
}

.advantage-item h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.advantage-item p {
    color: var(--color-text-light);
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    background: linear-gradient(180deg, rgba(45, 45, 45, 0.5) 0%, rgba(15, 15, 15, 0.8) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: gallery;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   BOOKING FORM SECTION
   ============================================ */

.prenota {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.8) 0%, rgba(45, 45, 45, 0.5) 100%);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background: rgba(45, 45, 45, 0.7);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: var(--space-3xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md) var(--space-lg);
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-size: var(--fs-base);
    font-family: inherit;
    transition: var(--transition);
    font-weight: var(--fw-regular);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 232, 232, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-red);
    background: rgba(15, 15, 15, 0.8);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e63946' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-2xl);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    margin-top: var(--space-lg);
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--fs-base);
}

.form-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: var(--fs-xs);
    margin-top: var(--space-lg);
    font-weight: var(--fw-medium);
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.form-note.form-note-success {
    color: var(--color-accent-red);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}

.form-note.form-note-error {
    color: #e05757;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}

/* ============================================
   CONTACTS SECTION
   ============================================ */

.contatti {
    background: linear-gradient(180deg, rgba(45, 45, 45, 0.5) 0%, rgba(15, 15, 15, 0.8) 100%);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.contact-item p {
    color: var(--color-text-light);
    line-height: var(--lh-relaxed);
    font-size: var(--fs-base);
}

.contact-link {
    color: var(--color-accent-red);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
}

.contact-link:hover {
    color: var(--color-accent-orange);
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-red);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: var(--color-accent-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-darker);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    padding: var(--space-2xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
}

.footer-content h3 {
    color: var(--color-white);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-sm);
}

.footer-content p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#lightboxImage {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.5);
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(76, 175, 80, 0.4);
    border-color: var(--color-accent-red);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.5);
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(76, 175, 80, 0.4);
    border-color: var(--color-accent-red);
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

[data-aos] {
    opacity: 0;
    animation: aosAnimation 0.6s ease-out forwards;
}

@keyframes aosAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="zoom-in"] {
    animation: zoomInAos 0.8s ease-out forwards;
}

@keyframes zoomInAos {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        border-bottom: 1px solid rgba(76, 175, 80, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: var(--space-lg) 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: rgba(76, 175, 80, 0.1);
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: var(--space-2xl) 0;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2xl);
    }

    .hero-image-container {
        min-height: 300px;
        flex: none;
    }

    .hero-marker-glow {
        width: 300px;
        height: 300px;
    }

    .hero-marker-image {
        max-height: 300px;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 56px);
        margin-bottom: var(--space-xl);
    }

    .hero-subtitle {
        font-size: var(--fs-base);
    }

    .hero-cta-group {
        flex-direction: column;
        gap: var(--space-md);
        margin-bottom: var(--space-2xl);
    }

    .cta-button,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        border-top: none;
        padding-top: 0;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 48px);
        margin-bottom: var(--space-lg);
    }

    .section-subtitle {
        margin-bottom: var(--space-2xl);
        font-size: var(--fs-base);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .service-card {
        padding: var(--space-lg);
    }

    .advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .advantage-item {
        padding: var(--space-lg);
        min-height: 300px;
    }

    .advantage-item:first-child {
        grid-column: 1 / 3;
        min-height: 280px;
        padding: var(--space-xl);
    }
    }

    .advantage-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto var(--space-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .booking-form {
        padding: var(--space-2xl) var(--space-lg);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-nav.prev {
        left: 15px;
    }

    .lightbox-nav.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    section {
        padding: var(--space-2xl) 0;
    }

    .hero {
        padding: var(--space-xl) var(--space-md);
    }

    .hero-image-container {
        min-height: 250px;
    }

    .hero-marker-glow {
        width: 250px;
        height: 250px;
    }

    .hero-marker-image {
        max-height: 250px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-title {
        font-size: clamp(24px, 8vw, 42px);
        margin-bottom: var(--space-lg);
    }

    .hero-label {
        font-size: var(--fs-xs);
        margin-bottom: var(--space-lg);
    }

    .hero-subtitle {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-lg);
    }

    .hero-cta-group {
        margin-bottom: var(--space-xl);
    }

    .scroll-indicator {
        bottom: var(--space-lg);
        font-size: 10px;
    }

    .section-subtitle {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-2xl);
    }

    .service-card {
        padding: var(--space-lg);
    }

    .service-card h3 {
        font-size: var(--fs-xl);
    }

    .cta-button {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--fs-sm);
    }

    .cta-secondary {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--fs-sm);
    }

    .booking-form {
        padding: var(--space-xl) var(--space-md);
    }

    .advantage-item {
        padding: var(--space-md);
        min-height: auto;
    }

    .advantage-item:first-child {
        padding: var(--space-md);
        min-height: auto;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .contacts-grid {
        gap: var(--space-lg);
    }

    .contact-item h3 {
        font-size: var(--fs-lg);
    }

    .contact-link {
        font-size: var(--fs-base);
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.active {
    color: var(--color-accent-red);
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-graphite);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-red);
}

/* ============================================
   TARIFF SELECTOR IN FORM
   ============================================ */

.tariff-group {
    margin-bottom: var(--space-xl);
}

.tariff-group > label {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tariff-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.tariff-card {
    cursor: pointer;
}

.tariff-card input[type="radio"] {
    display: none;
}

.tariff-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-md) var(--space-sm);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    background: rgba(45, 45, 45, 0.5);
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
}

.tariff-card-inner:hover {
    border-color: rgba(76, 175, 80, 0.6);
    background: rgba(45, 45, 45, 0.8);
}

.tariff-card input[type="radio"]:checked + .tariff-card-inner {
    border-color: var(--color-accent-red);
    background: rgba(76, 175, 80, 0.12);
    box-shadow: 0 0 0 1px var(--color-accent-red);
}

.tariff-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-red);
    color: #fff;
    font-size: 10px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.tariff-price {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-accent-red);
    line-height: 1;
}

.tariff-name {
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--color-white);
}

.tariff-detail {
    font-size: var(--fs-xs);
    color: var(--color-text-lighter);
}

.tariff-age {
    font-size: var(--fs-xs);
    color: var(--color-text-lighter);
    font-style: italic;
}

@media (max-width: 600px) {
    .tariff-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.pacchetti {
    padding: var(--space-4xl) 0;
    background: var(--color-darker);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.package-card {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.package-card:hover {
    border-color: var(--color-accent-red);
    background: rgba(45, 45, 45, 0.85);
    transform: translateY(-4px);
}

.package-card.featured {
    border-color: var(--color-accent-red);
    background: rgba(76, 175, 80, 0.08);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-red);
    color: var(--color-white);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.package-price {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-accent-red);
    line-height: 1;
}

.package-name {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-white);
}

.package-age {
    font-size: var(--fs-sm);
    color: var(--color-text-lighter);
    font-style: italic;
}

.package-features {
    list-style: none;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex-grow: 1;
}

.package-features li {
    color: var(--color-text-light);
    font-size: var(--fs-base);
    padding-left: var(--space-lg);
    position: relative;
}

.package-features li::before {
    content: 'вњ“';
    position: absolute;
    left: 0;
    color: var(--color-accent-red);
    font-weight: var(--fw-bold);
}

.package-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: var(--space-md);
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NAV MODULO BUTTON
   ============================================ */

.nav-modulo-btn {
    background: linear-gradient(135deg, var(--color-accent-red), var(--color-accent-orange));
    color: var(--color-white);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-modulo-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ============================================
   MODULO MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--color-graphite);
    border-radius: 16px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.25s;
    border: 1px solid rgba(255,255,255,0.07);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--color-white);
}

.modal-title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: 24px;
}

.modal-form .form-group {
    margin-bottom: 16px;
}

@media (max-width: 520px) {
    .modal-box {
        padding: 28px 20px 22px;
    }
}
