/* ═══════════════════════════════════════════════════
   YACHTINGO.COM - Premium Ocean Dark Theme v2
   Colors: Deep Navy #0A1628 | Turquoise #2EC4B6
   Inspired by luxury yacht charter aesthetics
   ═══════════════════════════════════════════════════ */

/* ── Base ── */
body {
    background-color: #0A1628;
    color: #94a3b8;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ── Section Backgrounds ── */
.section-dark { background-color: #0A1628; }
.section-gradient { background: linear-gradient(180deg, #0e1c33 0%, #0A1628 100%); }
.glass-light { background: rgba(14, 28, 51, 0.7); backdrop-filter: blur(14px); }
.glass-card {
    background: rgba(14, 28, 51, 0.5);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(46, 196, 182, 0.08);
}

/* ── Wave Separator (SVG Background) ── */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 1;
}
.wave-separator svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: #0A1628;
}
.wave-separator-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 1;
    transform: rotate(180deg);
}
.wave-separator-top svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: #0A1628;
}

/* ── Gradient Text ── */
.gradient-text {
    background: linear-gradient(135deg, #2EC4B6, #5EDDD1, #2EC4B6);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ── Section Label (Badge) ── */
.section-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2EC4B6;
    padding: 8px 22px;
    border: 1px solid rgba(46, 196, 182, 0.2);
    border-radius: 50px;
    background: rgba(46, 196, 182, 0.06);
}

/* ── Hero Badge (smaller inline label) ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #2EC4B6;
    padding: 8px 20px;
    border: 1px solid rgba(46, 196, 182, 0.2);
    border-radius: 50px;
    background: rgba(46, 196, 182, 0.06);
}

/* ── Background Orbs ── */
.bg-orb {
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.35;
    pointer-events: none;
    animation: float 14s ease-in-out infinite;
}
.bg-orb-turquoise { background: rgba(46, 196, 182, 0.3); }
.bg-orb-blue { background: rgba(59, 130, 246, 0.18); }
.bg-orb-purple { background: rgba(139, 92, 246, 0.15); }

/* ═══ HEADER / NAVIGATION ═══ */
.header-glass {
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
}



/* Logo HTML version custom styles */
.logo-g {
    background: linear-gradient(to bottom, #55b7c7 68%, #ffffff 68%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.25em;
    margin-bottom: -0.25em;
}
.logo-wheel {
    color: #55b7c7;
}

/* ═══ PAGE HEADER ═══ */
.page-header {
    background: linear-gradient(135deg, #0A1628 0%, #0e1c33 40%, #112240 60%, #0A1628 100%);
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 196, 182, 0.15), transparent);
}

/* ═══ HERO SLIDER ═══ */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-title {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-slide.active { opacity: 1; }
.hero-slide img, .hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero slide overlay with ocean gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(10, 22, 40, 0.65) 40%,
        rgba(10, 22, 40, 0.55) 70%,
        rgba(10, 22, 40, 0.75) 100%
    );
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(14, 28, 51, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}
.slider-arrow:hover {
    background: rgba(46, 196, 182, 0.25);
    border-color: rgba(46, 196, 182, 0.4);
    transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 30px; }
.slider-next { right: 30px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 12px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.5s ease;
}
.slider-dot.active {
    width: 36px;
    background: #2EC4B6;
    box-shadow: 0 0 12px rgba(46, 196, 182, 0.4);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2EC4B6, #5EDDD1);
    z-index: 10;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(46, 196, 182, 0.4);
}

/* ═══ BOOKING BAR ═══ */
.booking-bar {
    position: relative;
    z-index: 20;
    margin-top: -40px;
}
.booking-bar-inner {
    background: rgba(14, 28, 51, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(46, 196, 182, 0.12);
    border-radius: 24px;
    padding: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.booking-field {
    flex: 1;
    padding: 14px 24px;
}
.booking-field label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 4px;
}
.booking-field input, .booking-field select {
    background: transparent;
    border: none;
    font-size: 0.95rem;
    color: white;
    width: 100%;
    outline: none;
    font-weight: 500;
}
.booking-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}
.booking-btn {
    background: linear-gradient(135deg, #2EC4B6, #25a99e);
    color: white;
    padding: 16px 36px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(46, 196, 182, 0.25);
}
.booking-btn:hover {
    background: linear-gradient(135deg, #25a99e, #1e8f84);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(46, 196, 182, 0.35);
}

/* ═══ FEATURE / STAT CARDS ═══ */
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}
.stat-icon {
    margin-top: 12px;
    color: rgba(46, 196, 182, 0.25);
    font-size: 1.6rem;
}
.stat-card {
    text-align: center;
    padding: 28px 16px;
    background: rgba(14, 28, 51, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}
.stat-card:hover {
    border-color: rgba(46, 196, 182, 0.15);
    transform: translateY(-4px);
}

/* ═══ FEATURE CARDS (Why Choose Us) ═══ */
.feature-card {
    background: rgba(14, 28, 51, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2EC4B6, #5EDDD1);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card:hover {
    border-color: rgba(46, 196, 182, 0.2);
    background: rgba(46, 196, 182, 0.06);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(46, 196, 182, 0.08);
}
.feature-card h4 {
    color: #f1f5f9 !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-card p {
    color: #cbd5e1 !important;
    font-size: 0.85rem;
    line-height: 1.6;
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.15), rgba(46, 196, 182, 0.05));
    border: 1px solid rgba(46, 196, 182, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: #2EC4B6 !important;
    transition: all 0.5s ease;
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.3), rgba(46, 196, 182, 0.1));
    border-color: rgba(46, 196, 182, 0.4);
    transform: scale(1.12);
    box-shadow: 0 0 30px rgba(46, 196, 182, 0.15);
}

/* ═══ YACHT CARDS ═══ */
.yacht-card {
    display: block;
    background: rgba(14, 28, 51, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.yacht-card:hover {
    border-color: rgba(46, 196, 182, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 25px rgba(46, 196, 182, 0.08);
    transform: translateY(-6px);
}
.yacht-card:hover img {
    transform: scale(1.08);
}
.yacht-card img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.yacht-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.85) 100%);
    pointer-events: none;
}

/* Yacht Spec Icons */
.yacht-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #94a3b8;
}
.yacht-spec i { color: rgba(46, 196, 182, 0.5); font-size: 0.7rem; }

/* ═══ SERVICE CARDS ═══ */
.service-card {
    background: rgba(14, 28, 51, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2EC4B6, #5EDDD1);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    border-color: rgba(46, 196, 182, 0.2);
    background: rgba(46, 196, 182, 0.04);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(46, 196, 182, 0.08);
}
.service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.12), rgba(46, 196, 182, 0.04));
    border: 1px solid rgba(46, 196, 182, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #2EC4B6;
    transition: all 0.5s ease;
}
.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.25), rgba(46, 196, 182, 0.08));
    border-color: rgba(46, 196, 182, 0.4);
    transform: scale(1.12);
    box-shadow: 0 0 30px rgba(46, 196, 182, 0.15);
}

/* ═══ BUTTONS ═══ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2EC4B6, #25a99e);
    color: white;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.25);
    text-decoration: none;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(46, 196, 182, 0.35);
}
.btn-primary span { position: relative; z-index: 10; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #2EC4B6;
    font-weight: 600;
    border: 2px solid rgba(46, 196, 182, 0.3);
    border-radius: 16px;
    padding: 12px 28px;
    transition: all 0.4s ease;
    text-decoration: none;
}
.btn-outline:hover {
    background: rgba(46, 196, 182, 0.1);
    border-color: #2EC4B6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.15);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.4s ease;
    text-decoration: none;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ═══ TESTIMONIAL CARDS ═══ */
.testimonial-card {
    background: rgba(14, 28, 51, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(46, 196, 182, 0.08);
    font-family: 'Playfair Display', serif;
}
.testimonial-card:hover {
    border-color: rgba(46, 196, 182, 0.15);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ═══ GALLERY ═══ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 8px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-5px); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.25); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes wave-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
}
.animate-pulse-glow { animation: pulse-glow 4s ease-in-out infinite; }
.animate-wave-float { animation: wave-float 6s ease-in-out infinite; }

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }
.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ═══ ABOUT PAGE ═══ */
.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.about-stat-card {
    background: rgba(14, 28, 51, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 196, 182, 0.1);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 196, 182, 0.35), transparent);
    animation: shimmer 4s linear infinite;
}
.about-stat-card:hover {
    border-color: rgba(46, 196, 182, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(46, 196, 182, 0.08);
}
.about-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.12), rgba(46, 196, 182, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    color: #2EC4B6;
    transition: all 0.3s ease;
}
.about-stat-card:hover .about-stat-icon {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.25), rgba(46, 196, 182, 0.08));
    transform: scale(1.1);
}
.about-stat-card .stat-number { font-size: 2.4rem; margin-bottom: 4px; }

/* About Value Cards */
.about-value-card {
    background: rgba(14, 28, 51, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2EC4B6, #5EDDD1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.about-value-card:hover::before { transform: scaleX(1); }
.about-value-card:hover {
    border-color: rgba(46, 196, 182, 0.15);
    background: rgba(46, 196, 182, 0.03);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(46, 196, 182, 0.06);
}
.about-value-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.12), rgba(46, 196, 182, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #2EC4B6;
    transition: all 0.4s ease;
}
.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.25), rgba(46, 196, 182, 0.08));
    transform: scale(1.1) rotate(-3deg);
}
.about-value-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2EC4B6, #25a99e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    font-weight: 800;
}
.about-value-line {
    margin-top: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(46, 196, 182, 0.15), transparent);
    border-radius: 2px;
}

/* About Offering Cards */
.about-offering-card {
    background: rgba(14, 28, 51, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.about-offering-card:hover {
    border-color: rgba(46, 196, 182, 0.2);
    background: rgba(46, 196, 182, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(46, 196, 182, 0.08);
}
.about-offering-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.12), rgba(46, 196, 182, 0.04));
    border: 1px solid rgba(46, 196, 182, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #2EC4B6;
    transition: all 0.4s ease;
}
.about-offering-card:hover .about-offering-icon {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.25), rgba(46, 196, 182, 0.08));
    border-color: rgba(46, 196, 182, 0.35);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(46, 196, 182, 0.15);
}

/* ═══ ABOUT PREVIEW (Homepage) ═══ */
.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-preview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.about-preview-feature {
    background: rgba(14, 28, 51, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 22px;
    transition: all 0.3s ease;
}
.about-preview-feature:hover {
    border-color: rgba(46, 196, 182, 0.15);
    transform: translateY(-2px);
}
.about-preview-feature i { font-size: 1.3rem; color: #2EC4B6; margin-bottom: 10px; display: block; }
.about-preview-feature h5 { color: white; font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.about-preview-feature p { color: #64748b; font-size: 0.78rem; line-height: 1.5; }

/* ═══ TOUR CARDS ═══ */
.tour-card-enhanced {
    display: block;
    background: rgba(14, 28, 51, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.tour-card-enhanced:hover {
    border-color: rgba(46, 196, 182, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 25px rgba(46, 196, 182, 0.08);
    transform: translateY(-6px);
}
.tour-card-enhanced:hover img { transform: scale(1.08); }
.tour-card-enhanced img { transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.tour-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    background: linear-gradient(135deg, #2EC4B6, #25a99e);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.3);
}
.tour-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}
.tour-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #cbd5e1;
}
.tour-spec-item i { color: rgba(46, 196, 182, 0.5); font-size: 0.7rem; }

/* ═══ BLOG CARDS ═══ */
.blog-card-enhanced {
    display: block;
    background: rgba(14, 28, 51, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card-enhanced:hover {
    border-color: rgba(46, 196, 182, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 25px rgba(46, 196, 182, 0.06);
    transform: translateY(-6px);
}
.blog-card-enhanced:hover img { transform: scale(1.08); }
.blog-card-enhanced img { transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.blog-read-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #cbd5e1;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    font-size: 0.78rem;
    color: #94a3b8;
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lightbox-close:hover {
    background: rgba(46, 196, 182, 0.25);
    border-color: #2EC4B6;
    color: #2EC4B6;
    transform: rotate(90deg);
}

/* ═══ TOAST ═══ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(14, 28, 51, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(46, 196, 182, 0.25);
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 0.9rem;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: rgba(16, 185, 129, 0.4); }
.toast.error { border-color: rgba(239, 68, 68, 0.4); }

/* ═══ FOOTER ENHANCEMENTS ═══ */
.footer-newsletter-input {
    background: rgba(14, 28, 51, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 18px;
    color: white;
    font-size: 0.85rem;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}
.footer-newsletter-input:focus {
    border-color: rgba(46, 196, 182, 0.3);
    box-shadow: 0 0 20px rgba(46, 196, 182, 0.05);
}
.footer-newsletter-btn {
    background: linear-gradient(135deg, #2EC4B6, #25a99e);
    color: white;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.footer-newsletter-btn:hover {
    background: linear-gradient(135deg, #25a99e, #1e8f84);
    transform: translateY(-1px);
}

/* ═══ PROSE STYLING (Blog Content) ═══ */
.prose h2 { color: white; font-family: 'Playfair Display', serif; margin-top: 2em; margin-bottom: 0.8em; }
.prose h3 { color: #e2e8f0; font-family: 'Playfair Display', serif; margin-top: 1.6em; margin-bottom: 0.6em; }
.prose p { margin-bottom: 1.2em; line-height: 1.85; }
.prose ul { list-style: none; padding: 0; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: 10px; }
.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2EC4B6, #5EDDD1);
}
.prose strong { color: #e2e8f0; }
.prose a { color: #2EC4B6; text-decoration: underline; }
.prose a:hover { color: #5EDDD1; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .hero-slider { min-height: 600px; }
    .slider-arrow { display: none; }
    .slider-dots { bottom: 80px; }
    .booking-bar-inner {
        flex-direction: column;
        gap: 4px;
        border-radius: 20px;
    }
    .booking-divider { display: none; }
    .booking-field { padding: 8px 16px; }
    .booking-btn {
        width: 100%;
        margin: 8px;
        text-align: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
    .stat-number { font-size: 2.2rem; }
    .about-hero { min-height: auto; }
    .about-hero .grid { gap: 40px; }
    .about-stat-card .stat-number { font-size: 1.8rem; }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .hero-buttons .btn-outline-white { margin-left: 0 !important; }
}

@media (max-width: 480px) {
    .about-preview-features {
        grid-template-columns: 1fr;
    }
    .about-stat-card {
        padding: 20px 16px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* === STATS SECTION === */
.stat-card { text-align: center; padding: 2rem; background: rgba(10, 22, 40, 0.4); border-radius: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); }
.stat-number { font-size: 3rem; font-weight: bold; color: #fff; line-height: 1; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.stat-label { color: #cbd5e1; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.stat-icon { margin-top: 1rem; color: rgba(46, 196, 182, 0.5); font-size: 1.5rem; }

/* ═══ PREMIUM FORMS (Frontend Scope) ═══ */
body.bg-navy .form-input,
body.bg-navy select.form-input,
body.bg-navy textarea.form-input,
body.bg-navy .booking-select {
    width: 100%;
    background-color: rgba(14, 28, 51, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem;
}

body.bg-navy .form-input:focus,
body.bg-navy select.form-input:focus,
body.bg-navy textarea.form-input:focus,
body.bg-navy .booking-select:focus {
    outline: none !important;
    border-color: #2EC4B6 !important;
    box-shadow: 0 0 0 1px #2EC4B6 !important;
    background-color: rgba(14, 28, 51, 0.85) !important;
}

body.bg-navy .form-input::placeholder,
body.bg-navy textarea.form-input::placeholder {
    color: rgba(156, 163, 175, 0.6) !important;
}

body.bg-navy form label {
    display: block !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 600 !important;
    color: #D1D5DB !important;
    margin-bottom: 0.5rem !important;
}
