/* =========================================================================
   TICKETPRIVATEJET - STYLESHEET NON-CRITICAL
   ========================================================================= */

::selection { background: var(--primary); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* === TYPOGRAPHY & UTILITIES === */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--white-off); }
.bg-gray { background-color: var(--gray-100); }
.bg-dark { background-color: var(--gray-900); color: white; }

.color-dark { color: var(--gray-900); }
.color-gray { color: var(--gray-400); }
.color-primary { color: var(--primary); }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-wrap { display: flex; flex-wrap: wrap; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

/* === LAYOUT PAGINE === */
.main-wrapper { flex: 1; }
.section-padding { padding: 5rem 0; }

.page-header { padding: 160px 0 60px; background: var(--gray-900); color: white; text-align: center; }
.page-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.page-subtitle { font-size: 1.2rem; color: var(--gray-400); max-width: 700px; margin: 0 auto; }

/* === HERO SECTION === */
.hero-section { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; color: white; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.8) 100%); z-index: -1; }
.hero-content { text-align: center; max-width: 1000px; }
.hero-pill { background: rgba(255,255,255,0.2); color: white; border: 1px solid rgba(255,255,255,0.3); }
.hero-title { font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 900; line-height: 1; margin-bottom: 2rem; letter-spacing: -0.04em; text-transform: uppercase; }
.hero-subtitle { font-size: 1.4rem; color: rgba(255,255,255,0.9); margin-bottom: 3rem; max-width: 750px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { padding: 1.3rem 3rem; }
.hero-actions .btn-outline { color: white; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-indicator svg { color: white; opacity: 0.7; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* === GRIDS & CARDS === */
.grid-2-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 4rem; align-items: center; }
.grid-3-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.grid-cards { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }

.hover-card { transition: all 0.4s var(--ease-expo); border: 1px solid var(--gray-200); background: white; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.hover-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(24, 186, 173, 0.15); border-color: rgba(24, 186, 173, 0.3); }

.card-img-wrapper { height: 250px; position: relative; width: 100%; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card-badge { position: absolute; top: 15px; right: 15px; background: var(--primary); color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.5px; }
.card-content { padding: 2.5rem; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.7rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--gray-900); }
.card-text { color: var(--gray-600); margin-bottom: 2rem; flex: 1; }
.card-link { font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 8px; }

/* === SPECIAL SECTIONS === */
.highlight-card { border: 2px solid var(--primary); box-shadow: 0 20px 50px rgba(24,186,173,0.1); }
.highlight-card .card-content { background: var(--white-off); }
.highlight-card .card-link { color: var(--secondary); }

.lifestyle-section { background: var(--gray-900); padding: 8rem 0; overflow: hidden; color: white; }
.lifestyle-img-wrapper { position: relative; }
.lifestyle-img { width: 100%; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); transform: rotate(-2deg); }
.lifestyle-badge { position: absolute; top: -30px; right: -30px; background: var(--primary); color: white; padding: 1.5rem; border-radius: 20px; font-weight: 900; font-size: 1.2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transform: rotate(5deg); }
.lifestyle-pill { background: rgba(24, 186, 173, 0.2); color: var(--primary); }

.seo-box { background: white; padding: clamp(2rem, 4vw, 3rem); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--gray-200); }
.info-box { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.example-box { background: rgba(24, 186, 173, 0.05); border: 1px solid rgba(24, 186, 173, 0.3); padding: 1.5rem; border-radius: 12px; margin-top: 2rem; }

.fleet-img { border-radius: 20px; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.fleet-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.fleet-stat-box { background: var(--white-off); padding: 1rem; border-radius: 12px; text-align: center; }

.border-bottom-section { border-bottom: 1px solid var(--gray-200); }
.rounded-img { border-radius: 20px; box-shadow: 0 20px 40px rgba(24, 186, 173, 0.1); width: 100%; }

/* === ALERTS === */
.alert { padding: 1.5rem; border-radius: 12px; text-align: center; margin-bottom: 2rem; font-weight: 600; }
.alert-success { background: rgba(16, 185, 129, 0.1); color: #059669; border: 1px solid rgba(16, 185, 129, 0.2); }
.alert-error { background: rgba(239, 68, 68, 0.1); color: #dc2626; border: 1px solid rgba(239, 68, 68, 0.2); }

/* === VIP FORM === */
.vip-form { background: white; padding: clamp(2rem, 5vw, 4rem); border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05); }
.vip-label { display: block; margin-bottom: 0.6rem; font-weight: 700; color: var(--gray-600); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.vip-input { width: 100%; padding: 16px; border: 2px solid var(--gray-100); border-radius: 12px; font-family: var(--font-main); font-size: 1rem; font-weight: 500; background: var(--gray-100); color: var(--gray-900); transition: all 0.3s ease; }
.vip-input:focus { border-color: var(--primary); background: white; outline: none; box-shadow: 0 0 0 4px rgba(24, 186, 173, 0.15); }
.vip-input::placeholder { color: var(--gray-400); font-weight: 400; }
.vip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.vip-grid-3 { grid-template-columns: 1fr 2fr 2fr; }
.vip-btn-submit { width: 100%; font-size: 1.2rem; padding: 1.2rem; border-radius: 12px; box-shadow: 0 10px 25px rgba(24, 186, 173, 0.3); margin-top: 1rem; }

@media (max-width: 768px) {
    .vip-grid-3 { grid-template-columns: 1fr; }
}

/* === FOOTER === */
.site-footer { background: var(--gray-900); color: white; padding: 4rem 0 2rem; border-top: 5px solid var(--primary); margin-top: auto; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 3rem; margin-bottom: 2rem; }
.footer-logo { height: 40px; width: auto; margin-bottom: 1.5rem; }
.footer-desc { color: var(--gray-400); font-size: 1rem; max-width: 300px; line-height: 1.6; }
.footer-title { margin-bottom: 1.5rem; font-weight: 800; font-size: 1.2rem; color: white; }
.footer-contact-item { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-contact-icon { font-size: 1.2rem; }
.footer-contact-text { color: var(--gray-300); font-size: 1rem; }
.footer-contact-text strong { color: white; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1rem; align-items: center; }
.payment-icon { background: white; border-radius: 8px; padding: 6px; display: flex; align-items: center; justify-content: center; height: 45px; min-width: 70px; }
.payment-icon img { height: auto; max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.footer-bottom { text-align: center; color: var(--gray-500); font-size: 0.85rem; line-height: 1.8; }
.footer-credits { font-size: 1rem; }
.footer-credits a { color: var(--secondary); font-weight: bold; text-decoration: none; }

/* === INFO MODAL LATERALE === */
.info-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 1999;
    opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease-expo);
    backdrop-filter: blur(4px);
}
.info-modal-overlay.open {
    opacity: 1; visibility: visible;
}

.info-modal {
    position: fixed; top: 0; left: -450px; width: 450px; max-width: 100%; height: 100vh;
    background: white; z-index: 2000;
    box-shadow: 20px 0 50px rgba(0,0,0,0.15);
    transition: left 0.4s var(--ease-expo);
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.info-modal.open {
    left: 0;
}
.info-modal-header {
    padding: 2rem 2rem 1rem;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--gray-100);
}
.info-modal-body {
    padding: 2rem;
}
.close-modal-btn {
    background: none; border: none; font-size: 2.2rem;
    color: var(--gray-500); cursor: pointer;
    line-height: 1; padding: 0; margin-top: -5px; transition: color 0.3s;
}
.close-modal-btn:hover { color: var(--primary); }

.icon-costi svg{
height: 50px;
width: auto;
}

/* === MENU A TENDINA (DROPDOWN) === */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown > a {
    cursor: pointer;
}
.nav-dropdown > a::after {
    content: ' ▼';
    font-size: 0.65em;
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0.7;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s var(--ease-expo);
    z-index: 1000;
    border: 1px solid var(--gray-100);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover {
    background-color: var(--white-off);
    color: var(--primary);
}


/* === FBO LANDING PAGES === */
.fbo-container-narrow { 
    max-width: 900px; 
    margin: 0 auto; 
}
.fbo-intro-desc { 
    line-height: 1.8; 
    font-size: 1.1rem; 
}
.fbo-info-box { 
    background: var(--white-off); 
    padding: 3rem; 
    border-radius: 20px; 
    border: 1px solid var(--gray-200); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
}
.fbo-list { 
    line-height: 1.8; 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    font-size: 1.05rem; 
    color: var(--gray-600); 
}
.fbo-list li { 
    border-bottom: 1px solid var(--gray-200); 
    padding-bottom: 12px; 
    margin-bottom: 12px; 
}
.fbo-list li:last-child { 
    border-bottom: none; 
    padding-bottom: 0; 
    margin-bottom: 0; 
}
.fbo-list strong { 
    color: var(--gray-900); 
}
.fbo-cta-box { 
    padding: 4rem 2rem; 
    border-radius: 30px; 
    border: 1px solid var(--gray-200); 
}
.fbo-cta-desc { 
    font-size: 1.15rem; 
    max-width: 600px; 
    margin: 0 auto; 
}