/* Global Styles & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0077b6;
    --primary-dark: #005f99;
    --secondary: #00b4d8;
    --accent: #90e0ef;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gold: #c9a961;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Add padding-top to body for pages with fixed navbar but no hero */
body:not(.home-page) {
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--gold);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--gold) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--dark);
}

/* Page Header (Shared) */
.page-header {
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(0,119,182,0.7) 0%, rgba(0,180,216,0.5) 100%),
                url('IMAGES/foo1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.page-header-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.2s both;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.6s both;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    animation: fadeInUp 1s ease 0.8s both;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* Sections (Shared) */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-description {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Buttons (Shared) */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-banner {
    padding: 12px 32px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.page-header-cta {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.35s both;
}

/* Hero Section (Index) */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,119,182,0.6) 0%, rgba(0,180,216,0.4) 100%),
                url('IMAGES/BOATIQUE_0.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1000px;
    padding: 0 20px;
}

.hero-logo {
    width: 350px;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.2s both;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.6s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Quote Section (Index) */
.quote-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30rem;
    font-family: 'Playfair Display', serif;
    opacity: 0.1;
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Experience Section (Index) */
.experience {
    padding: 120px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-image {
    position: relative;
}

.experience-image-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.experience-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 8px solid var(--white);
}

.experience-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--dark);
    line-height: 1.2;
}

.experience-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.experience-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.highlight-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.highlight-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Parallax Section (Index) */
.parallax-section {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('IMAGES/favignana1.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.parallax-content {
    max-width: 800px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.parallax-content p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.8;
}

/* Destinations Preview (Index) */
.destinations-preview {
    padding: 120px 0;
    background: var(--light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
}

.destination-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.destination-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.destination-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.destination-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.destination-link:hover i {
    transform: translateX(5px);
}

/* CTA Section (Index) */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d44 100%);
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials (Index) */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.google-reviews {
    margin: 45px auto 35px;
}

.google-reviews-card {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.06) 0%, rgba(201, 169, 97, 0.10) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.google-reviews-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.google-reviews-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color: #4285F4;
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.google-reviews-text h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    color: var(--dark);
}

.google-reviews-text p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.google-reviews-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.google-btn {
    padding: 14px 26px;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
}

.google-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.google-btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.google-map {
    margin-top: 16px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.google-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Boat Styles (Barca) */
.boat-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.boat-hero-image {
    position: relative;
}

.boat-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.boat-hero-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.boat-hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.boat-hero-content p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.boat-model {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.spec-card {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.spec-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.spec-icon i {
    color: var(--white);
    font-size: 1.6rem;
}

.spec-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.spec-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.technical-section {
    padding: 80px 0;
}

.technical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.technical-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.technical-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.technical-list {
    list-style: none;
}

.technical-list li {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.technical-list li:last-child {
    border-bottom: none;
}

.technical-list i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
    width: 25px;
    flex-shrink: 0;
}

.technical-list span {
    color: var(--dark);
    font-weight: 500;
}

.technical-list small {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 5px;
}

.comfort-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.comfort-section .section-subtitle {
    color: var(--gold);
}

.comfort-section .section-title {
    color: var(--white);
}

.comfort-section .section-description {
    color: rgba(255,255,255,0.7);
}

.comfort-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.comfort-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.comfort-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comfort-item-icon i {
    color: var(--gold);
    font-size: 1.3rem;
}

.comfort-item-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.comfort-item-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.boat-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.boat-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.boat-cta p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Services Styles (Servizi) */
.services-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-option-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 4px solid var(--gold);
}

.service-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-option-icon i {
    color: var(--white);
    font-size: 2rem;
}

.service-option-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-option-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.services-included {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.included-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.included-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.included-item-icon i {
    color: var(--white);
    font-size: 1.4rem;
}

.included-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.included-item p {
    color: var(--gray);
    font-size: 0.85rem;
}

.included-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-request {
    padding: 80px 0;
}

.request-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.request-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #eee;
}

.request-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.request-item-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.request-item-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.request-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.request-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.request-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.locations-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.locations-section .section-subtitle {
    color: var(--gold);
}

.locations-section .section-title {
    color: var(--white);
}

.locations-section .section-description {
    color: rgba(255,255,255,0.7);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.location-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.location-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-card h3 i {
    font-size: 1.5rem;
}

.location-list {
    list-style: none;
}

.location-list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 15px;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.location-list span {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.pricing-info {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.pricing-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-info p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Destination Styles (Destinazioni) */
.islands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.island-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.island-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.island-image {
    position: relative;
    height: 250px;
}

.island-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.island-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.island-content {
    padding: 30px;
}

.island-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.island-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.island-features {
    list-style: none;
    margin-bottom: 25px;
}

.island-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 0.9rem;
}

.island-features i {
    color: var(--gold);
    width: 20px;
}

.island-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.island-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.island-link:hover i {
    transform: translateX(5px);
}

.marsala-section {
    padding: 80px 0;
    background: var(--light);
}

.marsala-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.marsala-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.marsala-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.marsala-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.marsala-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.marsala-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
}

.marsala-highlight-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.marsala-highlight-icon i {
    color: var(--gold);
}

.marsala-highlight-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.marsala-highlight-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cuisine-section {
    padding: 80px 0;
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cuisine-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 4px solid var(--gold);
}

.cuisine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.cuisine-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cuisine-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.cuisine-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.cuisine-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.map-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.map-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.map-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.map-item-icon i {
    color: var(--gold);
    font-size: 1.5rem;
}

.map-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.destinations-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.destinations-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.destinations-cta p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Styles (Contatti) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-info-card p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    gap: 20px;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.contact-details-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details-content span {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-details-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-content a:hover {
    color: var(--gold);
}

.google-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.google-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.google-form-container p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.google-form-wrapper {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    min-height: 700px;
}

.google-form-iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.hours-section {
    padding: 80px 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hours-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hours-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hours-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.hours-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.hours-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.map-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.map-section .section-subtitle {
    color: var(--gold);
}

.map-section .section-title {
    color: var(--white);
}

.map-section .section-description {
    color: rgba(255,255,255,0.7);
}

.map-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.social-section {
    padding: 80px 0;
    text-align: center;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.social-link-large:hover {
    transform: translateY(-5px);
}

.social-link-large-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link-large:hover .social-link-large-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
}

.social-link-large-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.social-link-large span {
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer (Shared) */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
}

/* Scroll Indicator (Index) */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    color: var(--white);
    font-size: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .experience-grid,
    .boat-hero,
    .technical-grid,
    .marsala-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .experience-image-secondary {
        right: 20px;
        bottom: -30px;
    }

    .destinations-grid,
    .testimonials-grid,
    .specs-grid,
    .features-grid,
    .services-options,
    .included-grid,
    .locations-grid,
    .islands-grid,
    .cuisine-grid,
    .map-grid,
    .hours-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .quote-text {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .google-reviews-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .google-reviews-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--dark);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-logo {
        width: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .btn {
        display: block;
        padding: 15px 35px;
        margin: 10px 0;
    }

    .btn-banner {
        display: inline-block;
        padding: 12px 28px;
        margin: 0;
    }

    .btn-outline {
        margin-left: 0;
    }

    .experience-highlights,
    .destinations-grid,
    .testimonials-grid,
    .specs-grid,
    .features-grid,
    .services-options,
    .included-grid,
    .request-grid,
    .locations-grid,
    .islands-grid,
    .cuisine-grid,
    .map-grid,
    .hours-grid,
    .footer-grid,
    .marsala-highlights {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .parallax-content h2,
    .cta-content h2,
    .quote-text,
    .page-header h1 {
        font-size: 1.6rem;
    }

    .experience-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }

    .page-header-logo {
        width: 140px;
    }
}
