/* ==========================================================================
   BrayanRentals – Premium luxury stylesheet
   Compartido por: index, private-boats-and-yachts, transfers, day-trips
   y sus versiones en español.
   ========================================================================== */

:root {
    --gold: #C9A14E;          /* dorado más rico, menos amarillo */
    --gold-soft: #E8D29A;
    --gold-deep: #8E6E2C;
    --dark-blue: #0A2E4D;
    --dark-blue-2: #0E3A60;
    --ink: #16202B;           /* casi-negro azulado */
    --light-bg: #FAF7F2;      /* off-white cálido (papel) */
    --white: #FFFFFF;
    --gray: #6A6F75;
    --light-gray: #E9E5DD;
    --shadow-card: 0 12px 32px rgba(10, 46, 77, .08);
    --shadow-hover: 0 24px 48px rgba(10, 46, 77, .14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 rgba(10, 46, 77, .06);
    z-index: 1000;
    padding: 1rem 0;
    transition: background .3s ease, box-shadow .3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 24px rgba(10, 46, 77, .08);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: .02em;
}
.logo-header span { color: var(--gold); }

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .02em;
    transition: color .3s ease;
    padding: .25rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}

.nav-item:hover, .nav-item.active { color: var(--gold); }
.nav-item:hover::after, .nav-item.active::after { transform: scaleX(1); }

.language-switcher { display: flex; gap: .5rem; }

.lang-btn {
    padding: .45rem .9rem;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 999px;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    transition: all .3s ease;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--gold);
    color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.hamburger span {
    width: 25px; height: 2px;
    background: var(--dark-blue);
    transition: all .3s ease;
    border-radius: 3px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ==========================================================================
   Hero (interior pages)
   ========================================================================== */
.page-hero {
    position: relative;
    color: var(--white);
    padding: 7rem 2rem 6rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0A2E4D 0%, #061a2e 100%);
    overflow: hidden;
}

.page-hero[data-bg]::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--bg-img) center / cover no-repeat;
    opacity: .55;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 161, 78, 0.18), transparent 55%),
        linear-gradient(135deg, rgba(10, 46, 77, .85) 0%, rgba(10, 46, 77, .55) 100%);
    z-index: 1;
}

.page-hero-content { position: relative; z-index: 2; max-width: 880px; }

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .35em;
    color: var(--gold-soft);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
    display: inline-block;
}

.page-hero h1 {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -.01em;
}

.page-hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,.92);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Container */
.section-container { max-width: 1240px; margin: 0 auto; }

/* ==========================================================================
   Section header
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.section-subtitle::before, .section-subtitle::after {
    content: '';
    width: 28px; height: 1px;
    background: var(--gold);
    display: inline-block;
    opacity: .6;
}

.section-title {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    letter-spacing: -.005em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================================================
   Boats / Cards (catalog)
   ========================================================================== */
.boats-section {
    background: var(--light-bg);
    padding: 6rem 2rem;
    position: relative;
}

.boats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 1px;
    background: var(--gold);
}

.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.boat-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
    display: flex;
    flex-direction: column;
}

.boat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.boat-images { position: relative; }

.boat-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.boat-card:hover .boat-main-image { transform: scale(1.04); }

/* gold ribbon corner */
.boat-card::before {
    content: '';
    position: absolute;
    top: 18px; left: 18px;
    width: 34px; height: 34px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}
.boat-card:hover::before { opacity: 1; }

.boat-thumbnails {
    padding: .9rem;
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,.02);
}

.boat-thumbnails::-webkit-scrollbar { height: 4px; }
.boat-thumbnails::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 10px; }
.boat-thumbnails::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

.thumbnail {
    width: 60px; height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .3s ease, transform .2s ease;
    flex-shrink: 0;
}
.thumbnail.active { border-color: var(--gold); }
.thumbnail:hover { border-color: var(--gold); transform: scale(1.05); }

.boat-info { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.boat-name {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: .35rem;
    letter-spacing: -.005em;
}

.boat-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: .5rem;
    flex-wrap: wrap;
}

.boat-spec {
    font-size: .9rem;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.boat-category {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: .5rem 0 1.5rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: all .3s ease;
    width: 100%;
    justify-content: center;
    font-size: .95rem;
    margin-top: auto;
}
.whatsapp-btn:hover {
    background: #20C55A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, .3);
}
.whatsapp-icon { width: 20px; height: 20px; fill: currentColor; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: 1.1rem 2.4rem;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: all .3s ease;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: 1.1rem 2.4rem;
    background: var(--gold);
    color: var(--white);
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: all .3s ease;
    cursor: pointer;
}
.btn-gold:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    box-shadow: 0 10px 26px rgba(142, 110, 44, .25);
    transform: translateY(-2px);
}

/* ==========================================================================
   Filters
   ========================================================================== */
.filters-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    margin-bottom: 3rem;
    border: 1px solid var(--light-gray);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group { display: flex; flex-direction: column; gap: .5rem; }

.filter-label {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.filter-select {
    padding: .8rem 1rem;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    color: var(--dark-blue);
    background: var(--white);
    transition: border-color .3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A14E' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.filter-select:focus { outline: none; border-color: var(--gold); }

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.filter-btn {
    padding: .8rem 2rem;
    border: none;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
}

.filter-btn-primary { background: var(--gold); color: var(--white); }
.filter-btn-primary:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(142, 110, 44, .25);
}

.filter-btn-secondary {
    background: transparent;
    color: var(--dark-blue);
    border: 1.5px solid var(--light-gray);
}
.filter-btn-secondary:hover { border-color: var(--dark-blue); }

/* ==========================================================================
   Form
   ========================================================================== */
.consultation-form {
    background:
        radial-gradient(circle at 20% 20%, rgba(201,161,78,.12), transparent 55%),
        linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-2) 100%);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    border-top: 4px solid var(--gold);
}

.form-title {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -.005em;
}

.form-description {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2.25rem;
}

.form-grid { display: grid; gap: 1.4rem; }

.form-group { display: flex; flex-direction: column; gap: .5rem; }

.form-label {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-input, .form-select {
    padding: 1rem;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    color: var(--dark-blue);
    background: var(--white);
    transition: border-color .3s ease;
}
.form-input:focus, .form-select:focus { outline: none; border-color: var(--gold); }

.form-submit {
    padding: 1.15rem 2rem;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-top: 1rem;
}
.form-submit:hover {
    background: #20C55A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, .3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #081421;
    color: rgba(255,255,255,.65);
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 2px;
    background: var(--gold);
}
.footer-logo {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: .02em;
}
.footer-text { font-size: .95rem; margin-bottom: 1.5rem; }

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.footer-social {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: all .3s ease;
}
.footer-social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .82rem;
    letter-spacing: .04em;
}

/* ==========================================================================
   WhatsApp floating
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #25D366;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: all .3s ease;
    animation: pulse-whatsapp 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { background: #20C55A; transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4); }
    50% { box-shadow: 0 4px 32px rgba(37, 211, 102, .75); }
}

/* ==========================================================================
   Mosaic / Lightbox (day-trips)
   ========================================================================== */
.mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 2rem;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
    background: var(--light-bg);
}

.mosaic-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.mosaic-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.mosaic-item img, .mosaic-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
    display: block;
}
.mosaic-item:hover img, .mosaic-item:hover video { transform: scale(1.06); }

.mosaic-item.video::after {
    content: '▶';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(0,0,0,.55);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,.25);
    pointer-events: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 30, .92);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn .25s ease;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: min(96vw, 1100px); max-height: 90vh; }
.lightbox-content img,
.lightbox-content video {
    max-width: 100%; max-height: 90vh;
    border-radius: 8px;
    display: block;
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all .3s ease;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================================================
   Instagram block (home)
   ========================================================================== */
.instagram-section {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}

.instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 2rem;
    padding: .65rem 1.5rem;
    background: linear-gradient(135deg, #833AB4, #C13584 35%, #E1306C 65%, #FD1D1D);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: transform .3s ease, box-shadow .3s ease;
}
.instagram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(193, 53, 132, .3);
}
.instagram-cta svg { width: 18px; height: 18px; fill: currentColor; }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    margin-top: 2rem;
}

.instagram-grid .ig-tile {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}
.instagram-grid .ig-tile img,
.instagram-grid .ig-tile video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.instagram-grid .ig-tile:hover img,
.instagram-grid .ig-tile:hover video { transform: scale(1.05); }
.instagram-grid .ig-tile::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(131,58,180,0) 60%, rgba(225,48,108,.55) 100%);
    opacity: 0;
    transition: opacity .35s ease;
}
.instagram-grid .ig-tile:hover::after { opacity: 1; }

/* ==========================================================================
   Service cards (home preview)
   ========================================================================== */
.services-section {
    background: var(--light-bg);
    padding: 6rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
    display: block;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light-gray);
}
.service-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .service-image { transform: scale(1.06); }

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(10,46,77,.65) 100%);
}

.service-image-label {
    position: absolute;
    bottom: 18px; left: 22px; right: 22px;
    color: var(--white);
}
.service-image-label .eyebrow {
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: .35rem;
    display: block;
}
.service-image-label .title {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.service-content { padding: 1.5rem 1.75rem 2rem; text-align: center; }
.service-subtitle { font-size: .95rem; color: var(--gray); margin-bottom: 1rem; }
.service-content .btn-outline { padding: .75rem 1.6rem; font-size: .78rem; }

/* ==========================================================================
   Reviews + CTA
   ========================================================================== */
.reviews-section {
    background: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
}
.reviews-section h2 {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}
.reviews-section .stars { color: var(--gold); font-size: 1.3rem; margin-bottom: .5rem; }

.cta-section {
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(201,161,78,.18), transparent 55%),
        linear-gradient(135deg, var(--dark-blue) 0%, #061a2e 100%);
    position: relative;
    overflow: hidden;
}
.cta-title {
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -.005em;
}
.cta-text {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--gold-soft);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 2rem;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.55);
    border-radius: 999px;
    transition: all .3s ease;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-btn:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,.18);
}
.contact-btn.primary {
    background: var(--gold);
    border-color: var(--gold);
}
.contact-btn.primary:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: var(--white);
}
.btn-icon { width: 18px; height: 18px; fill: currentColor; }

/* ==========================================================================
   Animations on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .header-container { padding: 0 1.25rem; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(255,255,255,.99);
        backdrop-filter: saturate(180%) blur(14px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        box-shadow: 0 10px 30px rgba(10,46,77,.08);
        transition: left .35s ease;
        z-index: 999;
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .logo-header { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    body { padding-top: 70px; }
    .page-hero { padding: 4.5rem 1.25rem 4rem; min-height: 36vh; }
    .boats-section { padding: 4rem 1.25rem; }
    .filters-container { padding: 1.5rem; }
    .filter-buttons { flex-direction: column; }
    .filter-btn { width: 100%; }
    .form-container { padding: 2rem 1.25rem; margin: 0 1rem; }
    .consultation-form { padding: 3rem 1rem; }
    .boats-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .boat-main-image { height: 240px; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
    .contact-buttons { flex-direction: column; }
    .contact-btn { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
    .hero-eyebrow { font-size: .72rem; letter-spacing: .25em; }
    .section-subtitle { font-size: .72rem; letter-spacing: .25em; }
    .form-title { font-size: 1.5rem; }
    .boat-name { font-size: 1.4rem; }
    .lang-btn { padding: .35rem .7rem; font-size: .75rem; }
}
