/* =============================================
   GAE EVENTS — YACHT LANDING PAGE STYLESHEET
   Version: 1.0.0
   Uses GAE Events Brand Colors
   ============================================= */

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================================
   GAE EVENTS — BRAND VARIABLES
   ============================================= */
:root {
    --gae-pink:        #bc6888;
    --gae-pink-light:  #DFB7C6;
    --gae-dark:        #111111;
    --gae-dark-2:      #000000;
    --gae-dark-3:      #222222;
    --gae-grey:        #424242;
    --gae-light-grey:  #f5f5f5;
    --gae-white:       #ffffff;
    --gae-text-muted:  #aaaaaa;
    --font-heading:    'Barlow Condensed', sans-serif;
    --font-body:       'Barlow', sans-serif;
    --transition:      all 0.3s ease;
    --gae-accent-strong: #bc6888;
    --gae-cream: #f7f3eb;
    --gae-cream-2: #fbf8f2;
    --gae-shadow: rgba(15, 17, 20, 0.18);
    --gae-shadow-accent: rgba(201, 168, 106, 0.35);
    --gae-shadow-soft: rgba(0,0,0,0.12);
    --gae-accent-glow-1: rgba(201, 168, 106, 0.12);
    --gae-accent-glow-2: rgba(201, 168, 106, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gae-white);
    overflow-x: hidden;
    background: var(--gae-dark-2);
}

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

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 16px;
}

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

a:hover {
    color: var(--gae-accent-strong);
}

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

ul {
    list-style: none;
}

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

.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.text-center { text-align: center; }
.text-white  { color: var(--gae-white); }
.text-pink   { color: var(--gae-pink); }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 12px;
}

.section-header h2 {
    color: var(--gae-dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gae-grey);
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gae-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gae-white);
    font-size: 1.1rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 6px;
}

.btn-primary {
    background-color: var(--gae-pink);
    color: var(--gae-white);
    box-shadow: 0 10px 24px var(--gae-shadow);
}

.btn-primary:hover {
    background-color: var(--gae-accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gae-shadow-accent);
}

.btn-whatsapp {
    background: var(--gae-pink);
    color: var(--gae-white);
    box-shadow: 0 10px 24px var(--gae-shadow);
}

.btn-whatsapp:hover {
    background: var(--gae-accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gae-shadow-accent);
}

.btn-call {
    background: var(--gae-pink);
    color: var(--gae-white);
    box-shadow: 0 10px 24px var(--gae-shadow);
}

.btn-call:hover {
    background: var(--gae-accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gae-shadow-accent);
}

.btn-outline {
    background-color: transparent;
    color: var(--gae-pink);
    border: 2px solid var(--gae-pink);
}

.btn-outline:hover {
    background-color: var(--gae-pink);
    color: var(--gae-white);
    box-shadow: 0 8px 20px var(--gae-shadow-accent);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--gae-white);
    border: 2px solid var(--gae-white);
}

.btn-outline-white:hover {
    background-color: var(--gae-white);
    color: var(--gae-dark);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gae-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/83b65e77-yacht-rental-dubai-GAE-Events-1.jpg') center/cover no-repeat;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.78) 0%,
        rgba(201, 168, 106, 0.22) 45%,
        rgba(10, 10, 10, 0.86) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 100px;
    width: 100%;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 20px;
    border-left: 3px solid var(--gae-pink);
    padding-left: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--gae-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero-title em {
    font-style: normal;
    color: var(--gae-pink);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
    background: var(--gae-dark);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gae-pink);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro {
    padding: 90px 0;
    background: var(--gae-dark-2);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 12px;
}

.intro-text h2 {
    color: var(--gae-white);
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--gae-white);
    margin-bottom: 16px;
}

.intro-text .btn {
    margin-top: 16px;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}

.intro-image-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--gae-pink);
    color: var(--gae-white);
    padding: 24px 28px;
    font-family: var(--font-heading);
    text-align: center;
    border-radius: 2px;
}

.intro-image-badge .number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.intro-image-badge .label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* =============================================
   YACHTS SECTION
   ============================================= */
.yachts {
    padding: 90px 0;
    background: var(--gae-dark-2);
    position: relative;
    overflow: hidden;
}

.yachts::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gae-accent-glow-2) 0%, transparent 70%);
    pointer-events: none;
}

.yachts .section-title {
    color: var(--gae-white);
}

.yachts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.yacht-card {
    background: var(--gae-dark-3);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 18px var(--gae-shadow-soft);
    transition: var(--transition);
}

.yacht-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px var(--gae-shadow-soft);
}

.yacht-image {
    height: 250px;
    overflow: hidden;
}

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

.yacht-card:hover .yacht-image img {
    transform: scale(1.1);
}

.yacht-info {
    padding: 28px 24px;
    text-align: center;
}

.yacht-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gae-white);
}

.yacht-capacity {
    color: var(--gae-pink);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
    padding: 90px 0;
    background: var(--gae-dark-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* =============================================
   GALLERY LIGHTBOX
   ============================================= */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox {
    position: fixed;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(90vw, 1100px);
    max-height: 90vh;
    z-index: 1201;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.lightbox img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    background: var(--gae-dark-2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gae-pink);
    background: rgba(15, 17, 20, 0.6);
    color: var(--gae-pink);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav.prev {
    left: -56px;
}

.lightbox-nav.next {
    right: -56px;
}

.lightbox-nav:hover {
    background: var(--gae-pink);
    color: var(--gae-white);
    box-shadow: 0 8px 18px var(--gae-shadow-accent);
}

.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gae-pink);
    background: transparent;
    color: var(--gae-pink);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--gae-pink);
    color: var(--gae-white);
    box-shadow: 0 8px 18px var(--gae-shadow-accent);
}

/* =============================================
   ADD-ONS SECTION
   ============================================= */
.addons {
    padding: 90px 0;
    background: var(--gae-dark-2);
    position: relative;
    overflow: hidden;
}

.addons::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gae-accent-glow-1) 0%, transparent 70%);
    pointer-events: none;
}

.addons .section-title {
    color: var(--gae-white);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.addons-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 16px;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.addons-carousel .addon-card {
    flex: 0 0 300px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gae-pink);
    background: transparent;
    color: var(--gae-pink);
    font-size: 2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--gae-pink);
    color: var(--gae-white);
    box-shadow: 0 8px 18px var(--gae-shadow-accent);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}

.addon-card {
    text-align: center;
    padding: 0 0 24px 0;
    background: var(--gae-dark-3);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: var(--transition);
}

.addon-card:hover {
    border-color: var(--gae-pink);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--gae-shadow-soft);
}

.addon-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 0;
}

.addon-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gae-white);
    padding: 20px 16px 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: 90px 0;
    background: var(--gae-dark-2);
    color: var(--gae-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gae-accent-glow-1) 0%, transparent 70%);
    pointer-events: none;
}

.about .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 12px;
    text-align: center;
}

.about h2 {
    color: var(--gae-white);
    text-align: center;
    margin-bottom: 24px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: 90px 0;
    background: var(--gae-dark-2);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gae-white);
    transition: var(--transition);
}

.contact-item:hover {
    color: var(--gae-pink);
}

.contact-icon {
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23c9a86a"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>') center/contain no-repeat;
}

.contact-icon.email {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23c9a86a"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>') center/contain no-repeat;
}

.contact-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   MODAL STYLES
   ============================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.yacht-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--gae-dark-3);
    border-radius: 4px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: var(--transition);
}

.yacht-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--gae-dark);
    color: var(--gae-white);
    border-radius: 4px 4px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gae-pink);
}

.modal-close {
    background: none;
    border: none;
    color: var(--gae-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-content {
    padding: 30px;
}

.modal-gallery {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.modal-gallery img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.modal-carousel {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 16px;
}

.modal-carousel .carousel-viewport {
    overflow: hidden;
    border-radius: 6px;
}

.modal-carousel .carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.modal-carousel .carousel-slide {
    flex: 0 0 100%;
}

.modal-carousel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.carousel-thumbs {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.carousel-thumbs .thumb {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-thumbs .thumb.active {
    border-color: var(--gae-pink);
    box-shadow: 0 6px 16px var(--gae-shadow-accent);
}

.modal-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gae-pink);
    margin-bottom: 15px;
}

.modal-details p {
    color: var(--gae-white);
    margin-bottom: 20px;
    line-height: 1.7;
}

.modal-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}

.spec-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto 8px;
    display: block;
}

.spec-item span {
    display: block;
    color: var(--gae-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.modal-description p {
    color: var(--gae-white);
    margin-bottom: 16px;
}

.modal-amenities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 28px 0;
}

.amenity-group h4 {
    color: var(--gae-pink);
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.amenity-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
}

.amenity-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.amenity-item span {
    color: var(--gae-white);
    font-size: 0.95rem;
}

.yacht-features {
    list-style: none;
    margin-bottom: 25px;
}

.yacht-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gae-white);
}

.yacht-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gae-pink);
    font-weight: bold;
}

.modal-cta {
    text-align: center;
}

/* =============================================
   DIVIDER
   ============================================= */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider.dark::before,
.divider.dark::after {
    background: rgba(255,255,255,0.2);
}

.divider span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gae-pink);
    white-space: nowrap;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image-badge {
        bottom: -16px;
        left: 16px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .yachts-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addons-carousel {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        display: none;
    }

    .addons-carousel .addon-card {
        flex: 0 0 260px;
    }

    .modal-carousel {
        grid-template-columns: 1fr;
    }

    .modal-carousel img {
        height: 300px;
    }

    .modal-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .modal-amenities {
        grid-template-columns: 1fr;
    }

    .amenity-items {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-cta {
        flex-direction: column;
        align-items: center;
    }

    .yacht-modal {
        width: 95%;
        max-height: 95vh;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

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

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* =============================================
   MODAL (Reusable iframe dialog)
   ============================================= */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(480px, 95vw);
    height: 500px;
    background: #121212;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-body {
    position: relative;
    flex: 1;
    min-height: 500px;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .modal-panel {
        width: 96vw;
        height: 500px;
    }
}
