/* ============================================
   SICILIAN BAROQUE — Design System
   Location Voiture Palerme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --terracotta: #D4735E;
    --terracotta-dark: #B85A47;
    --gold: #E6C07B;
    --gold-light: #F0D49A;
    --blue: #2D4A6F;
    --blue-dark: #1E3550;
    --onyx: #1A1A2E;
    --onyx-light: #252542;
    --cream: #FDF8F3;
    --cream-dark: #F5EDE4;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, #D4735E 0%, #E6C07B 100%);
    --gradient-gold: linear-gradient(90deg, #E6C07B, #D4735E, #E6C07B);
    --gradient-blue: linear-gradient(135deg, #2D4A6F 0%, #1A1A2E 100%);
    --gradient-marble: linear-gradient(135deg, #FDF8F3 0%, #E8E0D5 50%, #FDF8F3 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --gap: 24px;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-baroque: 0 10px 50px rgba(212, 115, 94, 0.2);
    --radius: 12px;
    --radius-large: 24px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--onyx);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    max-width: 70ch;
}

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--terracotta-dark);
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 115, 94, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 115, 94, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: var(--white);
}

.btn-gold {
    background: var(--gradient-gold);
    background-size: 200% auto;
    color: var(--onyx);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(253, 248, 243, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 115, 94, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.logo-accent {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-top: -2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--charcoal);
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--onyx);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* ============================================
   HERO — GOLDEN HOUR DRIVE
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A2E 0%, #0D0D1A 100%);
}

/* Cinematic Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(26, 26, 46, 0.4) 100%),
        linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(212, 115, 94, 0.1) 100%);
}

/* Animated Gradient Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 192, 123, 0.4) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 115, 94, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 74, 111, 0.4) 0%, transparent 70%);
    top: 40%;
    left: -5%;
    animation-delay: -14s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, 15px) scale(1.05);
    }
}

/* Hero Wrapper & Grid */
.hero-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

/* Hero Text Content */
.hero-text {
    color: var(--white);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(230, 192, 123, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-location svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title .title-line {
    display: block;
    opacity: 0;
    animation: revealLine 0.8s ease forwards;
}

.hero-title .title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title .title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title .title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-title .title-line.accent {
    color: transparent;
    background: var(--gradient-sunset);
    background-clip: text;
    -webkit-background-clip: text;
    position: relative;
}

.hero-title .title-line.accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background: var(--gold);
    opacity: 0.3;
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.6s ease forwards;
    animation-delay: 1s;
}

@keyframes revealLine {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-20deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes underlineReveal {
    to {
        transform: scaleX(1);
    }
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Bar */
.hero-stats {
    display: flex;
    gap: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1s;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Widget Card */
.hero-widget {
    opacity: 0;
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.widget-card {
    position: relative;
    display: block;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.widget-glow {
    position: absolute;
    inset: -3px;
    border-radius: 27px;
    background: linear-gradient(135deg, var(--gold), var(--terracotta), var(--gold));
    background-size: 200% 200%;
    animation: glowPulse 4s ease infinite;
    z-index: 0;
}

@keyframes glowPulse {

    0%,
    100% {
        background-position: 0% 50%;
        opacity: 0.8;
    }

    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

.widget-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.85));
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 32px;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(230, 192, 123, 0.2);
}

.widget-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-sunset);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.widget-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.widget-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.widget-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.widget-row {
    display: flex;
    gap: 12px;
}

.widget-row.two-cols .widget-field {
    flex: 1;
}

.widget-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(230, 192, 123, 0.12);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.widget-card:hover .widget-field {
    border-color: rgba(230, 192, 123, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.field-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.field-icon svg {
    width: 100%;
    height: 100%;
    color: var(--gold);
}

.field-content {
    flex: 1;
    min-width: 0;
}

.field-content label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-value {
    color: var(--white);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: var(--gradient-sunset);
    border-radius: 14px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 115, 94, 0.4);
}

.widget-card:hover .widget-cta {
    box-shadow: 0 12px 40px rgba(212, 115, 94, 0.6);
    transform: scale(1.02);
}

.widget-cta svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.widget-card:hover .widget-cta svg {
    transform: translateX(6px);
}

.widget-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    opacity: 0.8;
}

.trust-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2s;
}

.scroll-hint span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
    opacity: 0.7;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-location {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-widget {
        order: 2;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(26, 26, 46, 0.85) 100%);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .widget-content {
        padding: 24px;
    }

    .widget-row.two-cols {
        flex-direction: column;
    }
}



/* ============================================
   SECTION STYLES — OVERVIEW (Marble)
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 115, 94, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Overview Section — Bento Grid */
.overview {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.overview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 192, 123, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Overview Intro */
.overview-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.overview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(212, 115, 94, 0.1), rgba(230, 192, 123, 0.1));
    border: 1px solid rgba(212, 115, 94, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.overview-badge svg {
    width: 18px;
    height: 18px;
}

.overview-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--onyx);
    margin-bottom: 20px;
}

.overview-title span {
    color: var(--terracotta);
}

.overview-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bento-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(212, 115, 94, 0.12);
    border-color: rgba(212, 115, 94, 0.2);
}

/* Main Feature Card */
.bento-card.bento-main {
    grid-row: span 2;
    background: linear-gradient(145deg, var(--onyx), var(--onyx-light));
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.bento-card.bento-main:hover {
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.3);
}

.bento-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gradient-sunset);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bento-icon-large svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.bento-card.bento-main h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.bento-card.bento-main p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    flex-grow: 1;
}

.bento-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-stat .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.bento-stat .stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Regular Feature Cards */
.bento-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 115, 94, 0.1), rgba(230, 192, 123, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-icon {
    background: var(--gradient-sunset);
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    color: var(--terracotta);
    transition: color 0.3s ease;
}

.bento-card:hover .bento-icon svg {
    color: var(--white);
}

.bento-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--onyx);
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Highlight Card */
.bento-card.bento-highlight {
    grid-column: span 2;
    background: var(--gradient-sunset);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bento-card.bento-highlight:hover {
    box-shadow: 0 16px 40px rgba(212, 115, 94, 0.35);
}

.bento-highlight-content {
    flex: 1;
}

.highlight-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.bento-card.bento-highlight h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 6px;
}

.bento-card.bento-highlight p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.bento-highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bento-highlight-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

/* Responsive Bento Grid */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-card.bento-main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-card.bento-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.bento-main,
    .bento-card.bento-highlight {
        grid-column: span 1;
    }

    .overview-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   DEALS SECTION — Terracotta Tiles
   ============================================ */
.deals {
    background: var(--cream);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.deal-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-sunset);
}

.deal-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(212, 115, 94, 0.2);
}

.deal-image {
    height: 180px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.1);
}

.deal-content {
    padding: 24px;
}

.deal-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 115, 94, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.deal-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.deal-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 16px;
}

.deal-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.deal-price .from {
    font-size: 0.85rem;
    color: #999;
}

.deal-price .amount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--terracotta);
}

.deal-price .period {
    font-size: 0.9rem;
    color: #666;
}

/* ============================================
   FLEET SECTION — Gallery Frames
   ============================================ */
.fleet {
    background: var(--onyx);
    color: var(--white);
}

.fleet .section-badge {
    background: rgba(230, 192, 123, 0.2);
    color: var(--gold);
}

.fleet .section-title {
    color: var(--white);
}

.fleet .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fleet-card {
    position: relative;
    background: var(--onyx-light);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

/* Frame effect */
.fleet-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(230, 192, 123, 0.3);
    border-radius: calc(var(--radius) - 4px);
    z-index: 10;
    transition: all 0.4s ease;
    pointer-events: none;
}

.fleet-card:hover::before {
    border-color: var(--gold);
    box-shadow: inset 0 0 20px rgba(230, 192, 123, 0.2);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.fleet-image {
    height: 200px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-content {
    padding: 20px;
}

.fleet-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

.fleet-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.fleet-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fleet-feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.fleet-feature svg {
    width: 16px;
    height: 16px;
    color: var(--terracotta);
}

/* ============================================
   STEPS SECTION — THE SICILIAN JOURNEY
   ============================================ */
.steps {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 115, 94, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    padding: 20px 0;
}

/* Roadmap line for desktop */
@media (min-width: 1025px) {
    .steps-container::after {
        content: '';
        position: absolute;
        top: 60px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, var(--gold), var(--gold) 10px, transparent 10px, transparent 20px);
        opacity: 0.3;
        z-index: 0;
    }
}

.step-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 115, 94, 0.1);
    border-color: rgba(212, 115, 94, 0.2);
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.step-index {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--terracotta);
    opacity: 0.15;
    transition: all 0.3s ease;
}

.step-card:hover .step-index {
    opacity: 0.4;
    transform: scale(1.1);
}

.step-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-sunset);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(212, 115, 94, 0.3);
}

.step-card-icon svg {
    width: 30px;
    height: 30px;
}

.step-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--onyx);
}

.step-card-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Steps */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 24px;
    }
}

/* ============================================
   INSURANCE SECTION — Tabbed Bookmarks
   ============================================ */
.insurance {
    background: var(--white);
}

.insurance-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 16px 32px;
    background: var(--cream);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:first-child {
    border-radius: var(--radius) 0 0 0;
}

.tab-btn:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.tab-btn.active {
    background: var(--terracotta);
    color: var(--white);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: var(--terracotta);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-btn.active::after {
    opacity: 1;
}

.tab-content {
    display: none;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-large);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.insurance-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.insurance-detail h4 {
    color: var(--terracotta);
    margin-bottom: 16px;
}

.insurance-list {
    list-style: none;
}

.insurance-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.insurance-list li svg {
    width: 20px;
    height: 20px;
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   DRIVING TIPS — Flip Cards
   ============================================ */
.tips {
    background: var(--gradient-blue);
    color: var(--white);
}

.tips .section-badge {
    background: rgba(230, 192, 123, 0.2);
    color: var(--gold);
}

.tips .section-title {
    color: var(--white);
}

.tips .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tip-card {
    perspective: 1000px;
    height: 280px;
}

.tip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.tip-card:hover .tip-card-inner {
    transform: rotateY(180deg);
}

.tip-front,
.tip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: var(--radius-large);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.tip-front {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 192, 123, 0.2);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tip-back {
    background: var(--white);
    color: var(--charcoal);
    transform: rotateY(180deg);
    justify-content: center;
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tip-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.tip-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.tip-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.tip-back h4 {
    color: var(--terracotta);
    margin-bottom: 16px;
}

.tip-back p {
    font-size: 0.95rem;
    margin: 0;
    color: #555;
}

/* ============================================
   ROUTES SECTION — Map Style Cards
   ============================================ */
.routes {
    background: var(--cream);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.route-card {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.route-image {
    height: 220px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 24px 24px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    color: var(--white);
}

.route-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--terracotta);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.route-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}

.route-info {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.route-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.route-info svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

/* ============================================
   DISTANCE MATRIX — Ancient Table
   ============================================ */
.matrix {
    background: var(--white);
}

.matrix-table-wrapper {
    overflow-x: auto;
    background: var(--cream);
    border-radius: var(--radius-large);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.matrix-table thead th {
    background: var(--onyx);
    color: var(--gold);
    padding: 16px;
    font-weight: 600;
    text-align: center;
}

.matrix-table thead th:first-child {
    border-radius: var(--radius) 0 0 0;
    text-align: left;
}

.matrix-table thead th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.matrix-table tbody td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.matrix-table tbody td:first-child {
    font-weight: 600;
    color: var(--onyx);
    text-align: left;
    background: rgba(230, 192, 123, 0.1);
}

.matrix-table tbody tr:hover td {
    background: rgba(212, 115, 94, 0.05);
}

.matrix-table tbody tr:hover td:first-child {
    background: rgba(212, 115, 94, 0.15);
}



/* ============================================
   REVIEWS — Scroll Cards
   ============================================ */
.reviews {
    background: var(--onyx);
    color: var(--white);
}

.reviews .section-badge {
    background: rgba(230, 192, 123, 0.2);
    color: var(--gold);
}

.reviews .section-title {
    color: var(--white);
}

.reviews .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--onyx-light);
    border-radius: var(--radius-large);
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 192, 123, 0.1);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(212, 115, 94, 0.2);
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    fill: var(--gold);
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.review-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.review-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FAQ — Baroque Accordion
   ============================================ */
.faq {
    background: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--onyx);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 115, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    color: var(--terracotta);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--terracotta);
}

.faq-item.active .faq-icon svg {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 30px 24px;
    color: #555;
    line-height: 1.7;
}

/* ============================================
   FOOTER — Pedestal
   ============================================ */
.footer {
    background: var(--onyx);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-main {
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo .logo-accent {
    color: var(--white);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--terracotta);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--terracotta);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .widget-inner {
        grid-template-columns: 1fr;
    }

    .deals-grid,
    .tips-grid,
    .routes-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .medallions {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .steps::before {
        left: 30px;
    }

    .step-item,
    .step-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 20px;
    }

    .step-content {
        max-width: 100%;
        text-align: left !important;
    }

    .insurance-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: 120px;
    }

    .insurance-info {
        grid-template-columns: 1fr;
    }



    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Simplified hero for mobile */
    .shutter-container {
        display: none;
    }

    .baroque-arch {
        padding: 40px 20px;
    }

    .arch-svg {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .booking-widget {
        padding: 24px 20px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }


}