/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
    --primary-color: #0b1d3a;
    --primary-light: #163866;
    --secondary-color: #d4af37;
    /* Elegant Gold */
    --accent-color: #3b82f6;
    /* Ocean Blue */
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #f1f5f9;
    --white: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.15);

    --nav-height: 80px;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-white {
    color: var(--white) !important;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-title {
    margin-bottom: 3rem;
}

.section-title.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title.left {
    text-align: left;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.underline.bg-white {
    background-color: var(--white);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-badge.center {
    display: block;
    width: max-content;
    margin: 0 auto 1rem auto;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* =========================================
   COMPONENTS
   ========================================= */
/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-small {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary-small:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.glass-panel-dark {
    background: rgba(11, 29, 58, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-phone {
    color: var(--primary-color);
}

.navbar.scrolled .nav-links .btn-primary-small {
    color: var(--white);
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--primary-color);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--secondary-color);
}

.logo-text {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-phone {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.nav-phone i {
    color: var(--secondary-color);
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-small):hover::after,
.nav-links a.active:not(.btn-primary-small)::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 29, 58, 0.7), rgba(11, 29, 58, 0.3), rgba(11, 29, 58, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* =========================================
   BOAT SECTION
   ========================================= */
.boat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.boat-image-wrapper {
    position: relative;
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.boat-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(212, 175, 55, 0.1));
    z-index: -1;
    border-radius: 50%;
    filter: blur(50px);
}

/* Boat carousel (reduced height) */
.boat-carousel {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.boat-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.boat-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.04);
}

.boat-carousel-btn.prev {
    left: 14px;
}

.boat-carousel-btn.next {
    right: 14px;
}

.boat-carousel .carousel-inner {
    width: 100%;
    height: 100%;
}

.boat-carousel .carousel-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.5s ease;
}

.boat-carousel .carousel-inner img.active {
    opacity: 1;
    z-index: 1;
}

.boat-image-wrapper:hover .boat-carousel .carousel-inner img.active {
    transform: scale(1.02);
}

.boat-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.boat-badge::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.boat-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.boat-details p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.boat-model {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.specs-grid li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.spec-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    border-radius: 12px;
    font-size: 1.2rem;
}

.specs-grid strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.specs-grid span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   CAPTAIN SECTION
   ========================================= */
.captain-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    margin: 1.5rem 0;
    font-family: var(--font-heading);
}

.captain-details p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.captain-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge i {
    color: var(--accent-color);
}

.captain-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: auto;
}

.captain-gallery .img-box {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-sm);
}

.captain-gallery img {
    border-radius: calc(var(--border-radius) - 0.5rem);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.captain-gallery .img-1 img {
    object-position: 50% 20%;
}

.captain-gallery .img-1 {
    box-shadow: var(--shadow-lg);
}

.captain-gallery .img-2 {
    box-shadow: none;
}

.captain-gallery .img-1,
.captain-gallery .img-2 {
    aspect-ratio: 4 / 5;
    height: auto;
}


/* =========================================
   TOURS SECTION
   ========================================= */
.tours-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem;
}

@media (max-width: 1200px) {
    .tours-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tours-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Tour Carousel Styles */
.tour-carousel {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-inner img.active {
    opacity: 1;
    z-index: 1;
}

/* Expanded Info Styles */
.expanded-info {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #edf2f7;
}

.expanded-info h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expanded-info ul {
    margin-bottom: 0.9rem;
}

.expanded-info ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expanded-info ul li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.tour-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0;
}

.tour-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.tour-title-row h3 {
    margin-bottom: 0;
}


.tour-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.2);
}

.tour-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(11, 29, 58, 0.8);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tour-duration-text {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tour-duration-text i {
    color: var(--accent-color);
}

.tour-all-inclusive {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-top: -0.25rem;
    margin-bottom: 1rem;
}

.tour-all-inclusive i {
    color: var(--accent-color);
}

.tour-info {
    padding: 1.5rem;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.tour-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 0;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.media-section {
    background-color: var(--bg-light);
}

.media-instagram {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
}

.media-instagram-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.media-instagram-header i {
    font-size: 2rem;
    color: #E1306C;
}

.media-instagram-header .handle {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.media-instagram-header .sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.media-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.media-instagram-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-instagram-grid a:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.media-instagram-cta {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}


.contact-section {
    background-image: url('../images/zar-formenti-87-hull-profile.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 15, 32, 0.95), rgba(5, 15, 32, 0.9));
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.contact-content {
    max-width: 600px;
    width: 100%;
}

.contact-content .section-title h2 {
    font-size: 2.4rem;
    color: var(--white);
}

.contact-content p {
    font-size: 1.05rem;
}

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

.contact-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.whatsapp-box:hover .icon-circle {
    background: #25D366;
    color: white;
}

.instagram-box:hover .icon-circle {
    background: #E1306C;
    color: white;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.contact-box h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}

.contact-box span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: #050f20;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS & EFFECTS
   ========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal classes */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: translate(0);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {

    .boat-content,
    .captain-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .captain-gallery .img-1,
    .captain-gallery .img-2 {
        aspect-ratio: 4 / 5;
    }

    .captain-gallery {
        grid-template-columns: 1fr;
    }

    .media-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .captain-content.reverse .captain-details {
        order: 2;
    }

    .captain-content.reverse .captain-gallery {
        order: 1;
    }

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

@media (max-width: 768px) {
    .navbar {
        height: 64px;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-text {
        display: none;
    }

    .nav-phone {
        font-size: 0.8rem;
        margin-left: 0.75rem;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: 0.4s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .nav-links .btn-primary-small {
        color: var(--white);
        background-color: var(--primary-color);
    }

    .navbar.scrolled .menu-toggle .bar {
        background-color: var(--primary-color);
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .boat-carousel {
        height: 260px;
    }

    .glass-panel-dark {
        padding: 1.5rem;
    }

    .media-instagram {
        margin-top: 1.5rem;
    }

    .media-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }

    .media-videos-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}