/* 
   ==========================================================================
   BLUE DENİZCİLİK - MODERN NEXT-GEN DESIGN SYSTEM
   Inspired by SmileFlow / Modern High-End UI Aesthetics
   Clean light theme, vibrant Cyan-Teal gradients, Bento grids, 
   Infinite Marquee, and 100% App-like Mobile Experience
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand & Accent Colors (SmileFlow Inspired) */
    --cyan-50: #f0fdfa;
    --cyan-100: #ccfbf1;
    --cyan-200: #99f6e4;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-700: #0e7490;
    
    --teal-500: #14b8a6;
    --teal-600: #0d9488;

    /* Deep Maritime Navy (For Contrast & Authority) */
    --navy-950: #030712;
    --navy-900: #0b1528;
    --navy-800: #111e38;
    --navy-700: #1e293b;

    /* Slate & Clean Neutrals */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    --grad-hover: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    --grad-dark: linear-gradient(135deg, #0b1528 0%, #1e293b 100%);
    --grad-text: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    
    /* Shadows & Glass */
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-card: 0 10px 30px -10px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-card-hover: 0 20px 40px -15px rgba(6, 182, 212, 0.18), 0 8px 16px -6px rgba(15, 23, 42, 0.06);
    --shadow-button: 0 4px 14px rgba(6, 182, 212, 0.35);
    --shadow-glow: 0 0 35px rgba(6, 182, 212, 0.25);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--slate-700);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    touch-action: manipulation;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Typography Helpers */
.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   TOP NOTIFICATION & LANGUAGE BAR
   ========================================================================== */
.top-bar {
    background: var(--slate-900);
    color: var(--slate-300);
    font-size: 0.82rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-contact-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--slate-300);
}

.top-contact-item svg {
    width: 14px;
    height: 14px;
    color: var(--cyan-500);
}

.top-contact-item a:hover {
    color: var(--cyan-400);
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    gap: 3px;
}

.lang-btn {
    padding: 4px 11px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--slate-300);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: var(--transition);
    line-height: 1;
    text-decoration: none;
}

.lang-btn:hover:not(.active) {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.45);
}

.flag-svg {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   CLEAN TRANSLUCENT HEADER (SmileFlow Header Style)
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--slate-200);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
}

.nav-container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.85rem;
}

.nav-link {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--slate-600);
    transition: color 0.2s ease;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--cyan-600);
}

.nav-cta-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

/* Navbar Hemen Başvur CTA Button (SmileFlow Style Gradient Pill) */
.btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 44px;
    padding: 0 1.4rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.35);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn-header-cta:hover {
    background: linear-gradient(135deg, #0e7490 0%, #0f766e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(8, 145, 178, 0.45);
    color: #ffffff !important;
}

.btn-header-cta svg {
    flex-shrink: 0;
}

.btn-header-cta .cta-arrow-icon {
    transition: transform 0.2s ease;
}

.btn-header-cta:hover .cta-arrow-icon {
    transform: translateX(3px);
}

/* SmileFlow Style Pill CTA Button */
.btn-shimmer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 44px;
    padding: 0 1.5rem;
    border-radius: var(--radius-full);
    background: var(--navy-950);
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(3, 7, 18, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-shimmer-pill:hover {
    background: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(3, 7, 18, 0.25);
    color: var(--white);
}

.btn-shimmer-pill svg {
    transition: transform 0.2s ease;
}

.btn-shimmer-pill:hover svg {
    transform: translateX(3px);
}

/* Mobile Header Lang Switcher Pills */
.mobile-lang-pills {
    display: none;
    align-items: center;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-full);
    padding: 2px 3px;
    gap: 3px;
}

.mobile-lang-link {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-full);
    color: var(--slate-600);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-lang-link .flag-svg {
    width: 14px;
    height: 14px;
}

.mobile-lang-link:hover {
    color: var(--slate-900);
}

.mobile-lang-link.active {
    background: var(--cyan-600);
    color: var(--white);
    box-shadow: 0 1px 4px rgba(8, 145, 178, 0.35);
}

/* Hamburger Button */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger-bar {
    width: 22px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   SMILEFLOW-INSPIRED HERO SECTION (Clean Light + Visual Frame)
   ========================================================================== */
.hero-section {
    background-color: var(--slate-50);
    padding: 4.5rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--slate-100);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

/* Trust Pill Rating */
.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-subtle);
    margin-bottom: 1.25rem;
}

.star-rating {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
}

.star-rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.trust-badge-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--slate-700);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    font-weight: 400;
    max-width: 580px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    height: 50px;
    padding: 0 1.8rem;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: var(--shadow-button);
    transition: var(--transition);
}

.btn-primary-gradient:hover {
    background: var(--grad-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.45);
    color: var(--white);
}

.btn-outline-clean {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    height: 50px;
    padding: 0 1.8rem;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--slate-800);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.btn-outline-clean:hover {
    border-color: var(--slate-300);
    background: var(--slate-50);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

/* Integrated Hero Stats Bar (SmileFlow Style) */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.hero-stat-item p.number {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--cyan-600);
    line-height: 1;
}

.hero-stat-item p.label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.35rem;
}

/* Right Side: Visual Frame with Glass Badge */
.hero-media-wrapper {
    position: relative;
    width: 100%;
}

.hero-media-frame {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 4px solid var(--white);
}

.hero-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-media-frame:hover img {
    transform: scale(1.03);
}

/* Floating Glass Card at Bottom of Frame */
.floating-glass-card {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.glass-card-info h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--slate-900);
}

.glass-card-info p {
    font-size: 0.8rem;
    color: var(--slate-600);
}

.glass-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cyan-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-600);
    flex-shrink: 0;
}

/* ==========================================================================
   INTERNATIONAL CRUISE PARTNERS LOGO CAROUSEL
   ========================================================================== */
.cruise-partners-section {
    background: var(--white);
    padding: 3rem 0 0;
    border-bottom: 1px solid var(--slate-100);
    position: relative;
}

.partners-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.partners-label-pill {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--cyan-700);
    background: var(--cyan-50);
    border: 1px solid var(--cyan-200);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.partners-label-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.01em;
}

.cruise-logo-carousel {
    overflow: hidden;
    padding: 0.5rem 0 2.25rem;
    position: relative;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.cruise-logo-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: cruiseLogosSlide 38s linear infinite;
    padding: 0.5rem 0;
}

.cruise-logo-track:hover {
    animation-play-state: paused;
}

.cruise-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 1.6rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
    flex-shrink: 0;
    cursor: pointer;
}

.cruise-logo-card img {
    height: 36px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    filter: grayscale(15%);
    opacity: 0.92;
    transition: var(--transition);
}

.cruise-logo-card:hover {
    border-color: var(--cyan-500);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(6, 182, 212, 0.18);
}

.cruise-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes cruiseLogosSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   INFINITE MARQUEE TICKER (SmileFlow Blue Marquee)
   ========================================================================== */
.marquee-section {
    background: linear-gradient(90deg, #0891b2 0%, #0d9488 100%);
    padding: 1.1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    user-select: none;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: marqueeSlide 32s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.marquee-dot {
    opacity: 0.6;
    font-size: 0.8rem;
}

@keyframes marqueeSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   BENTO GRID POSITIONS CATALOG (SmileFlow Style Bento Layout)
   ========================================================================== */
.bento-section {
    padding: 5.5rem 0;
    background-color: var(--white);
}

.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-700);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 0.75rem;
}

.section-title-clean {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.section-desc-clean {
    font-size: 1.05rem;
    color: var(--slate-500);
    font-weight: 400;
    line-height: 1.65;
}

/* Filter Pill Bar (Horizontal Swipeable on Mobile) */
.filter-bar-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 12px;
}

.filter-bar-wrap::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    white-space: nowrap;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    background: var(--slate-100);
    border: 1px solid transparent;
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

.filter-pill.active {
    background: var(--slate-900);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-col-2 {
    grid-column: span 2;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(6, 182, 212, 0.4);
}

.bento-media {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    background: var(--slate-100);
}

.bento-col-2 .bento-media {
    height: 240px;
}

.bento-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.bento-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.bento-salary-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(13, 148, 136, 0.92);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bento-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 750;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.bento-desc {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.bento-meta-row {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed var(--slate-200);
    margin-bottom: 1.25rem;
    font-size: 0.84rem;
}

.bento-req-text {
    color: var(--slate-500);
    line-height: 1.45;
}

.bento-req-text strong {
    color: var(--slate-800);
}

.bento-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.bento-btn-primary {
    flex: 1;
    height: 42px;
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius-md);
    border: none;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.bento-btn-primary:hover {
    background: var(--cyan-600);
    color: var(--white);
}

.bento-btn-secondary {
    height: 42px;
    padding: 0 1rem;
    background: var(--slate-100);
    color: var(--slate-700);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.bento-btn-secondary:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

/* ==========================================================================
   WHY CHOOSE US / PERKS SECTION (SmileFlow Clean Cards)
   ========================================================================== */
.why-us-section {
    padding: 5.5rem 0;
    background-color: var(--slate-50);
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-card-hover);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--cyan-50);
    color: var(--cyan-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.why-card:hover .why-icon-box {
    background: var(--cyan-600);
    color: var(--white);
}

.why-icon-box svg {
    width: 24px;
    height: 24px;
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Featured Cruise Fleets Showcase Box (SmileFlow Dark Contrast Card) */
.fleets-highlight-card {
    margin-top: 3.5rem;
    background: radial-gradient(circle at 70% 30%, #0d1e3a 0%, #061122 100%);
    border-radius: var(--radius-2xl);
    padding: 2.75rem 2.5rem;
    color: var(--white);
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 50px -15px rgba(6, 18, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.fleets-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.fleets-highlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}

.badge-tag-cyan {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--cyan-300);
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.35);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.fleets-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
}

.fleets-subtitle {
    font-size: 0.92rem;
    color: var(--slate-300);
    max-width: 620px;
    line-height: 1.6;
}

.btn-fleets-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.6rem;
    height: 46px;
    border-radius: var(--radius-full);
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}

.fleets-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.fleet-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.fleet-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.2);
}

.fleet-item img {
    height: 38px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

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

.fleet-route {
    font-size: 0.78rem;
    color: var(--cyan-300);
    font-weight: 600;
    line-height: 1.35;
}

/* ==========================================================================
   4-STEP PLACEMENT ROADMAP (SmileFlow Style Numbered Cards)
   ========================================================================== */
.roadmap-section {
    padding: 5.5rem 0;
    background: var(--white);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.roadmap-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    position: relative;
}

.roadmap-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--cyan-500);
}

.roadmap-step-pill {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cyan-600);
    margin-bottom: 0.85rem;
}

.roadmap-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 750;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.roadmap-card p {
    font-size: 0.88rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ==========================================================================
   CLEAN APPLICATION PORTAL (Modern Minimalist Form)
   ========================================================================== */
.form-section {
    padding: 5.5rem 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
}

.form-card-clean {
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--slate-200);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    max-width: 880px;
    margin: 0 auto;
    overflow: hidden;
}

.form-header-clean {
    padding: 2.25rem 2.5rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: var(--white);
}

.form-header-clean h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.form-header-clean p {
    color: var(--slate-300);
    font-size: 0.9rem;
}

.form-body-clean {
    padding: 2.5rem;
}

.input-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.input-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.input-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-800);
}

.input-control {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--slate-200);
    background: var(--white);
    font-size: 0.92rem;
    color: var(--slate-900);
    transition: var(--transition);
}

.input-control:focus {
    outline: none;
    border-color: var(--cyan-600);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

textarea.input-control {
    height: auto;
    min-height: 100px;
    padding: 0.8rem 1rem;
    resize: vertical;
}

/* File Upload Dropzone */
.cv-dropzone-clean {
    border: 2px dashed var(--slate-300);
    border-radius: var(--radius-md);
    background: var(--slate-50);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.cv-dropzone-clean:hover {
    border-color: var(--cyan-600);
    background: var(--cyan-50);
}

.cv-dropzone-clean input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.dropzone-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--slate-800);
}

.dropzone-sub {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-top: 2px;
}

.selected-file-label {
    display: none;
    margin-top: 0.6rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--cyan-700);
}

/* Checkbox */
.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.terms-row input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--cyan-600);
    cursor: pointer;
}

.terms-row label {
    font-size: 0.85rem;
    color: var(--slate-600);
    line-height: 1.5;
    cursor: pointer;
}

.form-response-alert {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-response-alert.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-response-alert.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ==========================================================================
   FAQ SECTION (SmileFlow Clean Accordion)
   ========================================================================== */
.faq-section {
    padding: 5.5rem 0;
    background: var(--white);
}

.faq-list-clean {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-card-clean {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-card-clean.active {
    border-color: var(--cyan-500);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.08);
}

.faq-trigger {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    gap: 1rem;
}

.faq-icon-arrow {
    width: 20px;
    height: 20px;
    color: var(--cyan-600);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-card-clean.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-collapse {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.65;
    display: none;
}

.faq-card-clean.active .faq-collapse {
    display: block;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 5.5rem 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-card-box {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-subtle);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--cyan-50);
    color: var(--cyan-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-content h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 750;
    color: var(--slate-900);
    margin-bottom: 0.2rem;
}

.contact-card-content p, .contact-card-content a {
    font-size: 0.88rem;
    color: var(--slate-600);
}

.contact-card-content a:hover {
    color: var(--cyan-600);
}

.map-container-frame {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-card);
    min-height: 380px;
    height: 100%;
}

.map-container-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   FOOTER
/* ==========================================================================
   PREMIUM MARITIME FOOTER (SmileFlow Themed)
   ========================================================================== */
.main-footer {
    background: radial-gradient(circle at 50% 0%, #0c1c36 0%, #050b14 100%);
    color: var(--slate-300);
    position: relative;
    border-top: 1px solid rgba(6, 182, 212, 0.25);
    overflow: hidden;
}

/* Subtle glowing accent line on top */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06b6d4, #14b8a6, transparent);
    box-shadow: 0 0 15px #06b6d4;
}

/* Pre-Footer Trust Bar */
.footer-trust-strip {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2.25rem 0;
}

.footer-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-trust-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-trust-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-400);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.footer-trust-icon-box svg {
    width: 26px;
    height: 26px;
}

.footer-trust-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.footer-trust-sub {
    color: var(--slate-400);
    font-size: 0.92rem;
    line-height: 1.4;
}

.footer-trust-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 44px;
    padding: 0 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-footer-cta.primary {
    background: var(--grad-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-footer-cta.primary:hover {
    background: var(--grad-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(6, 182, 212, 0.5);
    color: #ffffff !important;
}

.btn-footer-cta.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-footer-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--cyan-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(6, 182, 212, 0.25);
    color: var(--cyan-300) !important;
}

/* Main Footer Content */
.footer-main-content {
    padding: 4.5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

/* Col 1: Brand & Credentials */
.footer-col-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-card {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    width: fit-content;
}

.footer-brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--slate-400);
    line-height: 1.65;
    margin-bottom: 1.35rem;
}

.footer-compliance-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.15rem;
    margin-bottom: 1.35rem;
    backdrop-filter: blur(8px);
}

.compliance-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--cyan-400);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compliance-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
}

.compliance-pill {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cyan-300);
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
}

.compliance-subtext {
    font-size: 0.76rem;
    color: var(--slate-400);
    line-height: 1.45;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-300);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon-btn svg {
    width: 17px;
    height: 17px;
}

.social-icon-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.wa:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.social-icon-btn.phone:hover,
.social-icon-btn.email:hover,
.social-icon-btn.map:hover {
    background: var(--cyan-600);
    border-color: var(--cyan-500);
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.4);
}

/* Col 2 & 3: Nav Columns */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 750;
    color: #ffffff;
    margin-bottom: 1.35rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--cyan-500);
    border-radius: 2px;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-list a {
    color: var(--slate-400);
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-link-list a .arrow-dot {
    color: var(--cyan-500);
    font-size: 0.95rem;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-link-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-link-list a:hover .arrow-dot {
    color: var(--cyan-300);
    opacity: 1;
    transform: translateX(2px);
}

/* Col 4: Detailed Contact Cards */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-card {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    transition: var(--transition);
}

.footer-contact-card:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(6, 182, 212, 0.25);
}

.contact-card-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--cyan-400);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-card-icon svg {
    width: 16px;
    height: 16px;
}

.contact-card-text {
    flex: 1;
}

.card-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cyan-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.contact-card-text p {
    font-size: 0.85rem;
    color: var(--slate-300);
    line-height: 1.45;
}

.contact-link-highlight {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.2s;
    text-decoration: none;
}

.contact-link-highlight:hover {
    color: var(--cyan-400);
}

.contact-link-wa {
    display: block;
    font-size: 0.8rem;
    color: #4ade80;
    margin-top: 0.15rem;
    transition: color 0.2s;
    text-decoration: none;
}

.contact-link-wa:hover {
    color: #86efac;
}

/* Footer Bottom Row */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--slate-400);
}

.footer-bottom-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-bottom-copy p {
    color: var(--slate-400);
    font-size: 0.85rem;
}

.footer-bottom-accreditation {
    font-size: 0.78rem;
    color: var(--cyan-400);
    font-weight: 600;
}

.footer-bottom-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-bottom-legal a {
    color: var(--slate-400);
    transition: color 0.2s;
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-bottom-legal a:hover {
    color: var(--cyan-300);
}

.footer-bottom-legal .sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

/* Agency Branding Credit (CB DIGITAL) - Clean inline style without container/background */
.footer-bottom-agency {
    display: inline-flex;
    align-items: center;
}

.cbdigital-agency-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    background: none !important;
    border: none !important;
    padding: 0;
    box-shadow: none !important;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.agency-credit-label {
    font-size: 0.85rem;
    color: #38bdf8;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.cbdigital-logo-img {
    height: 25px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.agency-arrow-icon {
    width: 15px;
    height: 15px;
    color: #fb3a16;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.cbdigital-agency-link:hover .agency-credit-label {
    color: #7dd3fc;
}

.cbdigital-agency-link:hover .cbdigital-logo-img {
    transform: translateY(-1px) scale(1.03);
    filter: drop-shadow(0 2px 8px rgba(251, 58, 22, 0.4));
}

.cbdigital-agency-link:hover .agency-arrow-icon {
    transform: translate(2px, -2px);
    color: #ff5722;
}

/* ==========================================================================
   MOBILE APP DRAWER & OVERLAY
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--slate-100);
}

.drawer-logo {
    height: 38px;
    width: auto;
}

.drawer-close-btn {
    background: var(--slate-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-700);
    cursor: pointer;
}

.drawer-body {
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.drawer-lang-wrap {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--slate-100);
}

.drawer-lang-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-md);
    color: var(--slate-800);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.drawer-nav-link svg {
    width: 18px;
    height: 18px;
    color: var(--cyan-600);
}

.drawer-nav-link:hover {
    background: var(--cyan-50);
    color: var(--cyan-700);
}

.drawer-cta-box {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM ACTION BAR (Native App Feel)
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--slate-200);
    z-index: 990;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
    padding: 0 0.5rem;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--slate-600);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px;
    transition: var(--transition);
}

.mobile-bottom-action svg {
    width: 20px;
    height: 20px;
}

.mobile-bottom-action.primary-action {
    color: var(--cyan-600);
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--slate-200);
}

.modal-header {
    background: var(--slate-900);
    color: var(--white);
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 750;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--slate-400);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--white);
}

.modal-body {
    padding: 1.75rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (100% Mobile First Polished)
   ========================================================================== */
@media (max-width: 1180px) {
    .nav-menu {
        gap: 1.15rem;
    }
    .nav-link {
        font-size: 0.88rem;
    }
    .btn-header-cta {
        padding: 0 1.1rem;
        height: 40px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }
    .nav-menu, .desktop-only-cta {
        display: none !important;
    }
    .mobile-lang-pills {
        display: flex !important;
    }
    .mobile-toggle {
        display: flex !important;
    }
    .nav-container {
        height: 64px;
    }
    .brand-logo {
        height: 42px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .trust-badge-pill {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btn-group {
        justify-content: center;
    }
    .hero-media-wrapper {
        max-width: 620px;
        margin: 0 auto;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-col-2 {
        grid-column: span 2;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fleets-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 2.5rem;
    }
    .footer-trust-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .footer-trust-actions {
        width: 100%;
        justify-content: flex-start;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 38px;
    }
    .nav-container {
        height: 60px;
    }

    /* Hero on Mobile */
    .hero-section {
        padding: 2.5rem 0 3.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }
    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .btn-primary-gradient, .btn-outline-clean {
        width: 100%;
        height: 48px;
    }
    .hero-media-frame {
        height: 280px;
        border-radius: var(--radius-xl);
    }
    .floating-glass-card {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        padding: 0.75rem 1rem;
    }

    /* 2x2 Clean Hero Stats on Mobile */
    .hero-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    .hero-stat-item p.number {
        font-size: 1.6rem;
    }

    /* Bento Cards on Mobile */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .bento-col-2 {
        grid-column: span 1;
    }
    .bento-media {
        height: 200px;
    }
    .bento-actions {
        flex-direction: column;
    }
    .bento-btn-primary, .bento-btn-secondary {
        width: 100%;
    }

    /* Why & Roadmap on Mobile */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Cruise Fleets on Mobile */
    .fleets-highlight-card {
        padding: 2rem 1.25rem;
        border-radius: var(--radius-xl);
    }
    .fleets-title {
        font-size: 1.35rem;
    }
    .fleets-logo-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .btn-fleets-cta {
        width: 100%;
        text-align: center;
    }

    /* Form on Mobile */
    .form-header-clean {
        padding: 1.5rem 1.25rem;
    }
    .form-body-clean {
        padding: 1.5rem 1.25rem;
    }
    .input-row-2, .input-row-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    /* Footer on Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-trust-strip {
        padding: 1.75rem 0;
    }
    .footer-trust-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-footer-cta {
        width: 100%;
        height: 48px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    .footer-bottom-legal {
        justify-content: center;
    }
    body {
        padding-bottom: 74px; /* Space for Mobile Bottom Bar */
    }
    .mobile-bottom-bar {
        display: flex;
    }
}
