/* ================================================================
   Spetses Sea Taxi – v2 "Departure Board" design
   Palette: navy #0A2540 | blue #0077B6 | cream #FBF8F4 | amber #E8963D
   Fonts: Playfair Display (display/italic) + Inter (body)
================================================================ */

/* ===== Variables ===== */
:root {
    --navy:         #2C3638;
    --blue:         #2B9E8F;
    --cream:        #EFF2F2;
    --ice:          #E2E7E8;
    --amber:        #C07830;
    --amber-hover:  #A5632A;
    --white:        #ffffff;
    --text:         #2C3638;
    --text-muted:   #5E7C82;
    --border:       #C5CED0;
    --border-light: #D5DDE0;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Jost', system-ui, -apple-system, sans-serif;

    --radius:    12px;
    --radius-sm: 8px;
    --shadow:    0 2px 20px rgba(29, 46, 50, 0.07);
    --shadow-md: 0 4px 32px rgba(29, 46, 50, 0.11);
    --shadow-lg: 0 8px 48px rgba(29, 46, 50, 0.15);

    --container:     1200px;
    --banner-height: 100px;
    --nav-height:    72px;
    --header-height: var(--nav-height);
    --section-pad:   clamp(64px, 9vw, 108px);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Container ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== Typography ===== */
h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.1; font-weight: 700; }
h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.6rem); line-height: 1.2; font-weight: 600; }
h3 { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.3; font-weight: 600; }

/* ===== Section label ===== */
.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ===== Section header ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 52px; }
.section-header h2 { color: var(--navy); margin-bottom: 12px; }
.section-header p  { font-size: 1rem; color: var(--text-muted); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 32px;
    border-radius: 10px;
    font-size: 0.925rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    line-height: 1;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
}
.btn-navy {
    background: linear-gradient(135deg, #1E4D5C 0%, #142D38 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 2px 14px rgba(27,54,65,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-navy:hover {
    background: linear-gradient(135deg, #265F71 0%, #1B3E4D 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,54,65,0.42), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-outline {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy {
    background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* Hero primary call button */
.btn-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 20px 48px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 6px 32px rgba(27,54,65,0.35), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn-hero-call:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(27,54,65,0.45);
}
.btn-hero-call svg { flex-shrink: 0; }

/* ===== Language switcher ===== */
.language-switcher { display: flex; align-items: center; gap: 4px; margin-right: 6px; }
.lang-btn {
    background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.08em; padding: 4px 7px; border-radius: 4px;
    color: rgba(255,255,255,0.45); transition: color 0.2s, background 0.2s;
}
.lang-btn.active { color: var(--amber); background: rgba(192,120,48,0.15); }
.lang-btn:hover  { color: var(--amber); }
.header--solid .lang-btn { color: var(--text-muted); }
.header--solid .lang-btn.active { color: var(--amber); }
.lang-divider { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.header--solid .lang-divider { color: var(--border); }

/* ===== Language content show/hide (for HTML-rich elements) ===== */
.el-content { display: none; }
.en-content { display: inline; }
body.lang-el .en-content { display: none; }
body.lang-el .el-content { display: inline; }

/* ===== Reveal animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: none; }

.usp-item:nth-child(2) { transition-delay: 0.10s; }
.usp-item:nth-child(3) { transition-delay: 0.20s; }
.usp-item:nth-child(4) { transition-delay: 0.30s; }
.step:nth-child(2)     { transition-delay: 0.12s; }
.step:nth-child(3)     { transition-delay: 0.24s; }

/* ================================================================
   SEASON BANNER
================================================================ */
.usp-static {
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 28px 0;
}
.banner-usps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; width: 100%;
    max-width: var(--container); padding: 0 20px;
}
.banner-usp {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--white); text-align: center;
}
.banner-usp-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.banner-usp-label {
    font-size: 0.95rem; font-weight: 600;
}

@media (min-width: 768px) {
    .banner-usps { grid-template-columns: repeat(5, 1fr); gap: 0 16px; }
}

@media (max-width: 767px) {
    .banner-usps { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 12px; }
    .banner-usp { width: calc(33.333% - 8px); }
    .banner-usp-icon { width: 52px; height: 52px; }
    .banner-usp-label { font-size: 0.82rem; }
}

/* ================================================================
   HEADER / NAVBAR
================================================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
.header--transparent { background: transparent; }
.header--solid {
    background: var(--white);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(27,54,65,0.07);
}

.nav-container {
    display: flex; align-items: center;
    height: var(--nav-height); gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; color: var(--white); transition: color 0.3s; }
.logo--white { color: var(--white); }
.header--solid .logo { color: var(--navy); }
.logo-anchor { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-brand { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.logo-sub { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; }

/* Nav links */
.nav-menu { flex: 1; display: none; align-items: center; justify-content: center; gap: 32px; }
.nav-menu a {
    font-size: 0.875rem; font-weight: 500;
    color: rgba(255,255,255,0.82); letter-spacing: 0.01em;
    transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--amber);
    transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }
.header--solid .nav-menu a { color: var(--text-muted); }
.header--solid .nav-menu a:hover { color: var(--navy); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; flex-shrink: 0; }

.nav-phone {
    display: none; align-items: center; gap: 6px;
    font-size: 0.84rem; font-weight: 600;
    color: rgba(255,255,255,0.88); white-space: nowrap; transition: color 0.2s;
}
.nav-phone:hover { color: var(--amber); }
.header--solid .nav-phone { color: var(--navy); }
.header--solid .nav-phone:hover { color: var(--blue); }


/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px 4px; }
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center;
}
.header--solid .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
@media (max-width: 767px) {
    .nav-menu {
        display: flex; flex-direction: column; align-items: center;
        position: fixed; top: var(--header-height); left: 0; right: 0;
        background: var(--white); padding: 16px 20px 28px; gap: 0;
        transform: translateY(-8px); opacity: 0; visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        box-shadow: 0 16px 40px rgba(27,54,65,0.12); z-index: 999;
    }
    .nav-menu.active { transform: none; opacity: 1; visibility: visible; }
    .nav-menu li { border-bottom: 1px solid var(--border); width: 100%; text-align: center; }
    .nav-menu li:last-child { border-bottom: none; }
    .nav-menu a { display: block; color: var(--navy); font-size: 1rem; padding: 15px 0; text-align: center; }
    .nav-menu a::after { display: none; }
}
@media (min-width: 768px) {
    .nav-menu { display: flex; }
    .hamburger { display: none; }
    .nav-phone { display: flex; }
}

/* ================================================================
   HERO — left-aligned on desktop
================================================================ */
.hero {
    position: relative;
    height: 100svh; min-height: 580px;
    display: flex; align-items: center; justify-content: flex-start;
    overflow: hidden; color: var(--white);
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 40%;
    opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active {
    opacity: 1;
    animation: kenBurns 6s ease-out forwards;
}
@keyframes kenBurns {
    from { transform: scale(1);    }
    to   { transform: scale(1.06); }
}
@media (max-width: 767px) {
    .hero-slide { background-position: center center; }
    .hero-slide--top { background-position: center center; }
}

.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(27,54,65,0.6) 0%, transparent 18%),
        linear-gradient(to right, rgba(27,54,65,0.55) 0%, rgba(27,54,65,0.25) 55%, rgba(27,54,65,0.05) 100%);
}

/* Hero content — pushed to top on mobile so boat stays visible */
.hero-content {
    position: relative; z-index: 2;
    width: 100%; padding: calc(var(--header-height) + clamp(32px, 8svh, 60px)) 24px 0;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    align-self: flex-start;
}

.hero-eyebrow {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; opacity: 0.78; margin-bottom: 16px;
    animation: fadeUp 0.9s 0.15s both;
}

.hero-title {
    color: var(--white);
    text-shadow: 0 2px 28px rgba(0,0,0,0.22);
    margin-bottom: 14px;
    animation: fadeUp 0.9s 0.35s both;
}

.hero-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.15rem, 2.4vw, 1.6rem);
    font-weight: 400;
    opacity: 0.82;
    margin-bottom: 32px;
    animation: fadeUp 0.9s 0.52s both;
}

.hero-appointment {
    display: inline-flex;
    align-items: center;
    align-self: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.9s 0.6s both;
}
@media (min-width: 900px) {
    .hero-appointment { align-self: flex-start; }
}

.hero-ctas {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 20px;
    animation: fadeUp 0.9s 0.7s both;
}

.hero-phone-row {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.84rem; opacity: 0.72;
    animation: fadeUp 0.9s 0.85s both;
    justify-content: center;
}
.hero-phone-row a { color: var(--white); font-weight: 500; }
.hero-phone-row a:hover { opacity: 1; text-decoration: underline; }

/* Desktop: shift left, show board preview */
@media (min-width: 900px) {
    .hero-content {
        padding-left: clamp(48px, 8vw, 120px);
        padding-right: 0;
        max-width: 560px;
        text-align: left;
        align-items: flex-start;
    }
    .hero-ctas { justify-content: flex-start; }
    .hero-phone-row { justify-content: flex-start; }
}


@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}


/* ================================================================
   DESTINATIONS — DEPARTURE BOARD
================================================================ */
.destinations {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

/* Board container */
.route-board {
    max-width: 760px;
    margin: 0 auto 48px;
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
}

/* Column headers */
.route-board-head {
    display: flex;
    justify-content: space-between;
    padding: 10px 8px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

/* Each route row */
.route-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 8px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.18s ease, padding-left 0.18s ease, padding-right 0.18s ease;
    color: var(--text);
    cursor: pointer;
    border-radius: 0;
}
.route-row:last-child { border-bottom: none; }
.route-row:hover {
    background: var(--ice);
    padding-left: 14px;
    padding-right: 14px;
}
.route-row:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
}

/* Dot + dashed connector */
.route-indicator {
    display: flex; flex-direction: column; align-items: center;
    flex-shrink: 0; width: 18px; padding-top: 5px;
}
.route-dot {
    width: 10px; height: 10px;
    background: var(--blue); border-radius: 50%; flex-shrink: 0;
    border: 2px solid var(--cream); box-shadow: 0 0 0 2px var(--blue);
    transition: background 0.2s, box-shadow 0.2s;
}
.route-row:hover .route-dot { background: var(--amber); box-shadow: 0 0 0 2px var(--amber); }
.route-dot--amber { background: var(--amber) !important; box-shadow: 0 0 0 2px var(--amber) !important; }

.route-connector {
    flex: 1; width: 2px; min-height: 24px; margin-top: 5px;
    background: repeating-linear-gradient(
        to bottom,
        var(--border) 0, var(--border) 5px,
        transparent 5px, transparent 10px
    );
}

/* Destination name + description */
.route-info { flex: 1; }
.route-info h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 3px; }
.route-info p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.45; }

/* Travel time — right column, italic Playfair */
.route-time { flex-shrink: 0; padding-top: 3px; text-align: right; }
.route-time-val {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--blue);
    white-space: nowrap;
    transition: color 0.2s;
}
.route-time-val--amber { color: var(--amber) !important; }
.route-row:hover .route-time-val { color: var(--navy); }
.route-row--custom:hover .route-time-val { color: var(--amber-hover); }

/* CTAs below the board */
.route-board-ctas {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ================================================================
   FLEET / OUR STORY
================================================================ */
.fleet { padding: var(--section-pad) 0; background: var(--white); }

.fleet-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }

.fleet-info { text-align: center; }
.fleet-info .section-label { margin-bottom: 10px; }
.fleet-info h2 { color: var(--navy); margin-bottom: 16px; }
.fleet-info > p {
    color: var(--text-muted); line-height: 1.75;
    margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto;
    text-align: left;
}
.fleet-info > p em { font-style: italic; color: var(--navy); font-weight: 500; }

.fleet-specs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.fleet-specs li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.fleet-specs li svg { flex-shrink: 0; color: var(--blue); }

/* Carousel-ready photo */
.fleet-showcase {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.fleet-carousel { position: relative; }
.fleet-slide { display: none; position: relative; }
.fleet-slide.active { display: block; }
.fleet-slide img { width: 100%; height: clamp(280px, 44vw, 480px); object-fit: cover; display: block; }

.fleet-slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(27,54,65,0.82) 0%, transparent 100%);
    padding: 36px 22px 18px;
    display: flex; flex-direction: column; gap: 4px;
}
.fsc-name {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700; font-style: italic;
    color: var(--white);
}
.fsc-year {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--amber);
}


/* ================================================================
   PHOTO GALLERY
================================================================ */
.photo-gallery { padding: 0; overflow: hidden; }
.gallery-strip { display: grid; grid-template-columns: 1fr; gap: 4px; }
.gallery-item { overflow: hidden; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
@media (min-width: 640px) {
    .gallery-strip { grid-template-columns: 1fr 1fr; }
    .gallery-item { aspect-ratio: 4/3; }
}

/* ================================================================
   HOW TO BOOK
================================================================ */
.how-to-book { padding: var(--section-pad) 0; background: var(--cream); }

.steps-grid {
    display: flex; flex-direction: column;
    max-width: 760px; margin: 0 auto 52px;
    position: relative;
}
.steps-grid::before {
    content: ''; position: absolute;
    top: 32px; left: 31px; bottom: 32px;
    width: 1px; background: var(--border);
}

.step { display: flex; gap: 28px; padding-bottom: 48px; position: relative; }
.step:last-child { padding-bottom: 0; }

.step-number {
    flex-shrink: 0; width: 64px; height: 64px;
    background: var(--blue); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
    position: relative; z-index: 1;
    box-shadow: 0 0 0 6px var(--cream);
}

.step-body { padding-top: 14px; }
.step-body h3 { color: var(--navy); margin-bottom: 6px; }
.step-body p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; max-width: 480px; }

.htb-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   CONTACT
================================================================ */
.contact { padding: var(--section-pad) 0; background: var(--ice); }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }

.contact-info { text-align: center; }
.contact-info .section-label { margin-bottom: 10px; }
.contact-info h2 { color: var(--navy); margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; align-items: center; }

.contact-phone {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700; color: var(--navy); line-height: 1;
    transition: color 0.2s;
}
.contact-phone:hover { color: var(--blue); }


.contact-meta { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.contact-meta-item { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--text-muted); }
.contact-meta-item svg { flex-shrink: 0; color: var(--blue); }

.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { display: block; }


/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding-top: 52px; }

.footer-layout {
    display: flex; flex-direction: column; gap: 32px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--white); margin-bottom: 10px; }
.footer-tagline { font-size: 0.83rem; opacity: 0.55; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }

.footer-bottom { padding: 18px 0; text-align: center; font-size: 0.78rem; opacity: 0.4; }

@media (min-width: 768px) {
    .footer-layout { flex-direction: row; justify-content: space-between; align-items: flex-start; }
    .footer-nav { flex-direction: row; gap: 24px; }
}

/* ================================================================
   CONTACT MESSAGING BUTTONS
================================================================ */
.contact-messaging {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 4px;
}
.msg-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.msg-btn:hover { transform: translateY(-2px); }
.msg-btn--wa  { background: #25D366; color: #fff; box-shadow: 0 3px 14px rgba(37,211,102,0.35); }
.msg-btn--wa:hover  { background: #1ebe5c; box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.msg-btn--viber { background: #7360F2; color: #fff; box-shadow: 0 3px 14px rgba(115,96,242,0.35); }
.msg-btn--viber:hover { background: #6250e0; box-shadow: 0 6px 20px rgba(115,96,242,0.5); }

/* ================================================================
   FLOATING WHATSAPP
================================================================ */
.whatsapp-float {
    position: fixed; bottom: 92px; right: 26px; z-index: 990;
    width: 56px; height: 56px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.whatsapp-float::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: rgba(37,211,102,0.35); animation: callPulse 2.6s ease-out infinite;
}

/* ================================================================
   FLOATING CALL
================================================================ */
.call-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 990;
    width: 56px; height: 56px; background: var(--blue);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); box-shadow: 0 4px 20px rgba(42,125,142,0.42);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.call-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(42,125,142,0.6); }
.call-float::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: rgba(42,125,142,0.35); animation: callPulse 2.6s ease-out infinite;
}

@keyframes callPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    70%  { transform: scale(1.75); opacity: 0; }
    100% { transform: scale(1.75); opacity: 0; }
}

/* ================================================================
   NAV ACTIVE STATE
================================================================ */
.nav-menu a.nav-active { color: var(--white); }
.nav-menu a.nav-active::after { transform: scaleX(1); }
.header--solid .nav-menu a.nav-active { color: var(--navy); font-weight: 600; }

/* ================================================================
   PHOTO DIVIDER
================================================================ */
.photo-divider {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
@media (max-width: 767px) {
    .photo-divider { height: 200px; background-attachment: scroll; }
}

/* ================================================================
   PRICING CTA
================================================================ */
.pricing-cta {
    background: var(--navy);
    padding: var(--section-pad) 0;
    text-align: center;
    color: var(--white);
}
.pricing-cta-content {
    max-width: 640px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.pricing-cta .section-label { color: var(--amber); }
.pricing-cta h2 { color: var(--white); }
.pricing-cta p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; }

/* ================================================================
   ACCESSIBILITY
================================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
