/* ============================================
   WHITE WHALE - TEKNE TURU
   Modern, Akıcı, Şık Tasarım
   ============================================ */

:root {
    --primary: #0a5e8a;
    --primary-dark: #063d5c;
    --primary-light: #1a8bc7;
    --accent: #00c9a7;
    --accent-dark: #00a88c;
    --dark: #0d1b2a;
    --dark-lighter: #1b2d44;
    --text: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gold: #f59e0b;
    --whatsapp: #25d366;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 500;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    content-visibility: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

.preloader.hidden {
    pointer-events: none;
    animation: preloaderOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderOut {
    0% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 100% 0); }
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.loader-center {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: loaderFadeIn 0.5s ease 0.1s forwards;
}

@keyframes loaderFadeIn {
    to { opacity: 1; }
}

.loader-waves {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: loaderRipple 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-wave:nth-child(1) { animation-delay: 0s; }
.loader-wave:nth-child(2) { animation-delay: 0.6s; }
.loader-wave:nth-child(3) { animation-delay: 1.2s; }

@keyframes loaderRipple {
    0% {
        transform: scale(0.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    animation: loaderFadeIn 0.5s ease 0.3s forwards;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
    background: white;
    padding: 3px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-logo-img {
    height: 42px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
}

.logo-whale {
    filter: drop-shadow(0 2px 4px rgba(0, 201, 167, 0.3));
}

.nav-logo:hover .logo-mark {
    transform: translateY(-2px);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--accent);
    font-weight: 400;
}

.navbar.scrolled .logo-text {
    color: var(--dark);
}

.navbar.scrolled .logo-accent {
    color: var(--primary);
}

.navbar.scrolled .logo-mark {
    color: var(--primary);
}

.footer-brand .nav-logo-img {
    height: 52px;
    margin-bottom: 14px;
    background: white;
    border-radius: 50%;
    padding: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.25);
}

.navbar.scrolled .lang-switch {
    color: var(--primary);
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.85) 0%,
        rgba(13, 27, 42, 0.5) 50%,
        rgba(13, 27, 42, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    max-width: 650px;
}

.hero-tag {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(40px);
    animation: heroLineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line-1 { animation-delay: 0.3s; }
.hero-line-2 { animation-delay: 0.45s; color: var(--accent); }
.hero-line-3 { animation-delay: 0.6s; font-weight: 300; font-style: italic; opacity: 0; }

@keyframes heroLineIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

.hero-right {
    opacity: 0;
    animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-stats-card .stat-item {
    text-align: center;
}

.hero-stats-card .stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
}

.hero-stats-card .stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
}

.hero-stats-card .stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.02em;
    text-transform: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 94, 138, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 94, 138, 0.4);
    color: var(--white);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--primary);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
}

.scroll-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(0.6); opacity: 0.5; }
}

.scroll-down span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-tag {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-text {
    color: var(--text);
    font-weight: 420;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feature .feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.about-feature h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   TOUR SECTION
   ============================================ */
.tour {
    padding: 120px 0;
    background: var(--off-white);
}

.bays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.bay-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.bay-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.bay-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.bay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bay-card:hover .bay-image img {
    transform: scale(1.1);
}

.bay-info {
    padding: 24px;
}

.bay-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.bay-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bay-card p {
    font-size: 0.9rem;
    font-weight: 450;
    color: var(--text);
    line-height: 1.6;
}

/* Tour Details */
.tour-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 60px;
}

.detail-card {
    text-align: center;
    padding: 44px 24px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.detail-card:hover {
    background: var(--off-white);
}

.detail-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: block;
}

.detail-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.detail-card p {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-masonry {
    columns: 3;
    column-gap: 16px;
    margin-top: 50px;
}

.gallery-masonry .gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 16px;
    break-inside: avoid;
}

.gallery-masonry .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-masonry .gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-masonry .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Grid gallery for sub-pages */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    margin-top: 50px;
}

.gallery-grid .gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-grid .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--off-white);
}

.testimonial-slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-weight: 450;
    color: var(--text);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.test-prev, .test-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.test-prev:hover, .test-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact .section-tag {
    color: var(--accent);
}

.contact .section-tag::before {
    background: var(--accent);
}

.contact .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-content > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 50px 0 30px;
    background: #070f18;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.footer-lang {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.footer-lang:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,42,0.5), rgba(13,27,42,0.8));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.page-hero-content p {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* ============================================
   TOUR OVERVIEW
   ============================================ */
.tour-overview {
    padding: 60px 0;
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.overview-card {
    text-align: center;
    padding: 44px 24px;
    background: var(--white);
    transition: var(--transition);
}

.overview-card:hover {
    background: var(--off-white);
}

.overview-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: block;
}

.overview-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.overview-card p {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
}

/* ============================================
   BAY DETAIL SECTIONS
   ============================================ */
.bay-section {
    padding: 100px 0;
    background: var(--white);
}

.bay-section.alt {
    background: var(--off-white);
}

.bay-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bay-detail.reverse {
    direction: rtl;
}

.bay-detail.reverse > * {
    direction: ltr;
}

.bay-detail-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bay-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.bay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bay-detail-content .section-title {
    margin-bottom: 20px;
}

.bay-detail-content p {
    color: var(--text);
    font-weight: 450;
    margin-bottom: 14px;
    line-height: 1.8;
}

.bay-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.bay-highlights span {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ============================================
   FOOD SECTION
   ============================================ */
.food-section {
    padding: 100px 0;
    background: var(--off-white);
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.food-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.food-content .section-title {
    margin-bottom: 16px;
}

.food-content > p {
    color: var(--text);
    font-weight: 450;
    margin-bottom: 20px;
    line-height: 1.8;
}

.food-menu {
    list-style: none;
    margin-bottom: 20px;
}

.food-menu li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.food-menu li strong {
    color: var(--primary-dark);
}

.food-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   PAGE CTA
   ============================================ */
.page-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.page-cta h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.page-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

body.menu-open {
    overflow: hidden;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 50px;
    }

    .tour-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-masonry {
        columns: 2;
    }

    .overview-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .bay-detail, .bay-detail.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .food-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding: 0 30px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--dark);
        font-size: 1rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
        display: block;
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--primary);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-cta {
        display: none;
    }

    .nav-right {
        gap: 12px;
    }

    .lang-switch {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 32px;
        padding-top: 80px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        width: 100%;
    }

    .hero-stats-card {
        flex-direction: row;
        justify-content: space-around;
        padding: 20px 12px;
        gap: 8px;
    }

    .hero-stats-card .stat-number,
    .hero-stats-card .stat-suffix {
        font-size: 1.8rem;
    }

    .hero-stats-card .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .hero-line {
        font-size: clamp(2.5rem, 11vw, 3.8rem);
    }

    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .hero-buttons {
        margin-top: 28px;
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .scroll-down {
        left: 20px;
        bottom: 24px;
    }

    /* Sections */
    .about,
    .tour,
    .gallery,
    .testimonials,
    .contact {
        padding: 70px 0;
    }

    .section-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
        margin-bottom: 14px;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding-left: 30px;
        margin-bottom: 12px;
    }

    .section-tag::before {
        width: 20px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image img {
        height: 280px;
    }

    .experience-badge {
        bottom: 16px;
        right: 16px;
        padding: 14px 18px;
    }

    .exp-number {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.92rem;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .about-feature .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .about-feature h4 {
        font-size: 0.82rem;
    }

    .about-feature p {
        font-size: 0.75rem;
    }

    /* Tour */
    .bays-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .bay-image {
        height: 140px;
    }

    .bay-info {
        padding: 16px;
    }

    .bay-number {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .bay-card h3 {
        font-size: 0.95rem;
    }

    .bay-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .tour-details {
        grid-template-columns: 1fr 1fr;
        margin-top: 40px;
    }

    .detail-card {
        padding: 28px 16px;
    }

    .detail-icon {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .detail-card h4 {
        font-size: 0.7rem;
    }

    .detail-card p {
        font-size: 0.9rem;
    }

    /* Gallery */
    .gallery-masonry {
        columns: 2;
        column-gap: 10px;
        margin-top: 32px;
    }

    .gallery-masonry .gallery-item {
        margin-bottom: 10px;
        border-radius: var(--radius-sm);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-grid .gallery-item {
        height: 180px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 28px 20px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .stars {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .testimonial-author {
        gap: 10px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .testimonial-author strong {
        font-size: 0.85rem;
    }

    .testimonial-nav {
        margin-top: 24px;
        gap: 14px;
    }

    .test-prev, .test-next {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-content > p {
        font-size: 0.92rem;
    }

    .contact-details {
        gap: 16px;
        margin-bottom: 28px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .contact-image {
        height: 260px;
        border-radius: var(--radius-md);
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-brand p {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, auto);
        gap: 12px 20px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    /* Sub-pages */
    .overview-cards {
        grid-template-columns: 1fr 1fr;
    }

    .overview-card {
        padding: 28px 16px;
    }

    .bay-detail-image img {
        height: 240px;
    }

    .page-hero {
        height: 40vh;
        min-height: 280px;
    }

    .page-hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-hero-content p {
        font-size: 0.95rem;
    }

    .page-cta h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-cta p {
        font-size: 0.95rem;
    }

    .bay-section {
        padding: 60px 0;
    }

    .food-section {
        padding: 60px 0;
    }

    .bay-detail {
        gap: 32px;
    }

    .bay-detail-content .section-title {
        font-size: 1.6rem;
    }

    .bay-detail-content p {
        font-size: 0.9rem;
    }

    .bay-highlights span {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    .food-image img {
        height: 240px;
    }

    .food-content .section-title {
        font-size: 1.6rem;
    }

    .food-menu li {
        font-size: 0.88rem;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 85%;
        padding: 90px 24px 32px;
    }

    .hero-content {
        padding: 0 16px;
        padding-top: 70px;
    }

    .hero-line {
        font-size: clamp(2.2rem, 12vw, 3rem);
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    .hero-stats-card {
        padding: 16px 8px;
    }

    .hero-stats-card .stat-number,
    .hero-stats-card .stat-suffix {
        font-size: 1.5rem;
    }

    .hero-stats-card .stat-label {
        font-size: 0.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }

    /* Sections */
    .about,
    .tour,
    .gallery,
    .testimonials,
    .contact {
        padding: 50px 0;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
    }

    .container {
        padding: 0 16px;
    }

    /* About */
    .about-image img {
        height: 220px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-feature {
        gap: 12px;
    }

    /* Tour */
    .bays-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bay-image {
        height: 160px;
    }

    .tour-details {
        grid-template-columns: 1fr 1fr;
    }

    /* Gallery */
    .gallery-masonry {
        columns: 2;
        column-gap: 8px;
    }

    .gallery-masonry .gallery-item {
        margin-bottom: 8px;
    }

    .gallery-grid .gallery-item {
        height: 150px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 16px;
    }

    .testimonial-card p {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-buttons {
        flex-direction: column;
    }

    .contact-image {
        height: 200px;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: repeat(2, auto);
        gap: 10px 16px;
    }

    /* Sub-pages */
    .overview-cards {
        grid-template-columns: 1fr 1fr;
    }

    .overview-card {
        padding: 20px 12px;
    }

    .overview-icon {
        font-size: 1.3rem;
    }

    .overview-card h4 {
        font-size: 0.7rem;
    }

    .overview-card p {
        font-size: 0.9rem;
    }

    .bay-detail-image img {
        height: 200px;
    }

    .food-image img {
        height: 200px;
    }

    .page-cta {
        padding: 50px 0;
    }
}

@media (max-width: 360px) {
    .hero-line {
        font-size: 2rem;
    }

    .hero-stats-card .stat-number,
    .hero-stats-card .stat-suffix {
        font-size: 1.3rem;
    }

    .bays-grid {
        grid-template-columns: 1fr;
    }

    .tour-details {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .overview-cards {
        grid-template-columns: 1fr;
    }
}
