/* ==================== */
/* KaşStayNSea - TEMA */
/* ==================== */
:root {
    --primary: #203C56;      /* Koyu Mavi */
    --secondary: #E8A54A;    /* Turuncu */
    --background: #F3EDE3;   /* Krem */
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #6c757d;
    --success: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--background);
    color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==================== */
/* NAVBAR */
/* ==================== */
.navbar {
    background-color: var(--primary) !important;
    padding: 12px 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

/* Altın accent çizgi */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--secondary) 50%, transparent 95%);
    opacity: 0.45;
}

/* Scroll küçülme + blur */
.navbar.navbar-scrolled {
    padding: 5px 0;
    background: rgba(32, 60, 86, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar.navbar-scrolled::after {
    opacity: 0.25;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.35s ease;
}

.navbar.navbar-scrolled .navbar-brand img {
    height: 38px;
    width: 38px;
}

.navbar-brand span {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.navbar-brand .brand-kas {
    color: var(--secondary);
}

/* Navbar container genişlet */
.navbar > .container {
    max-width: 1400px;
}

/* Nav link hover altı çizgi */
.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.5rem 0.6rem !important;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85) !important;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: white !important;
}

.navbar-nav .nav-link:hover::before {
    width: 50%;
}

.nav-link i {
    color: var(--secondary);
}

/* Modern Dropdown — hover ile açılır, link tıklanabilir */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        pointer-events: auto;
    }
    .navbar .dropdown > .dropdown-menu {
        margin-top: 0;
    }
}

.navbar .dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(32, 60, 86, 0.15);
    padding: 8px;
    border-top: 3px solid var(--secondary);
    margin-top: 8px;
    animation: dropdownReveal 0.25s ease;
}

@keyframes dropdownReveal {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.navbar .dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
    background: rgba(232, 165, 74, 0.1);
    color: var(--primary);
}

.navbar .dropdown-item i {
    color: var(--secondary);
}

/* Pill butonlar */
.navbar .btn-success {
    background-color: var(--success);
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
}

.navbar .btn-success:hover {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.navbar .btn-outline-light {
    border-radius: 20px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    border-width: 1.5px;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-1px);
}

/* Toggler */
.navbar-toggler {
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 4px 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 165, 74, 0.25);
    border-color: rgba(232, 165, 74, 0.5);
}

/* ==================== */
/* MOBİL MENÜ (Off-canvas) */
/* ==================== */

/* Mobilde Bootstrap collapse gizle */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    overflow: hidden;
}
.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

/* Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.mobile-menu-header .mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.mobile-menu-header .mobile-brand img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}
.mobile-menu-header .mobile-brand span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}
.mobile-menu-header .mobile-brand .brand-kas {
    color: var(--secondary);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}
.mobile-menu-close:hover {
    background: #eee;
    color: var(--dark);
}

/* Body (scrollable) */
.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

/* Nav items */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.mobile-nav-link:hover {
    background: #fafafa;
    color: var(--primary);
}
.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Dropdown (accordion) */
.mobile-nav-dropdown .mobile-nav-link {
    justify-content: space-between;
    cursor: pointer;
}
.mobile-nav-dropdown .mobile-nav-link .nav-link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobile-nav-dropdown .mobile-dropdown-arrow {
    font-size: 0.75rem;
    color: var(--gray);
    transition: transform 0.3s ease;
}
.mobile-nav-dropdown.open .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fafafa;
}
.mobile-nav-dropdown.open .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px 12px 56px;
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.mobile-dropdown-link:hover {
    color: var(--primary);
    background: #f0f0f0;
}
.mobile-dropdown-link i {
    width: 18px;
    text-align: center;
    color: var(--secondary);
    font-size: 0.85rem;
}

/* Footer */
.mobile-menu-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.mobile-menu-footer .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.mobile-menu-footer .btn-whatsapp {
    background: var(--success);
    color: #fff;
    border: none;
}
.mobile-menu-footer .btn-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
}
.mobile-menu-footer .btn-call {
    background: var(--primary);
    color: #fff;
    border: none;
}
.mobile-menu-footer .btn-call:hover {
    background: #183350;
    color: #fff;
}

/* Body scroll lock */
body.mobile-menu-open {
    overflow: hidden;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2d5273 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(232,165,74,0.1)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero .btn-light {
    background-color: var(--secondary);
    border: none;
    color: white;
    font-weight: 600;
}

.hero .btn-light:hover {
    background-color: #d4943e;
    color: white;
}

.hero .btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
}

/* ==================== */
/* KATEGORİ KARTLARI */
/* ==================== */
.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(32, 60, 86, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(32, 60, 86, 0.15);
    border-color: var(--secondary);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.category-card:hover i {
    color: var(--secondary);
}

.category-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.category-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==================== */
/* HİZMET KARTLARI */
/* ==================== */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(32, 60, 86, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(32, 60, 86, 0.15);
}

.service-card .card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-card .card-body {
    padding: 20px;
}

.service-card .card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card .card-text {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.service-card .price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
}

.service-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary) !important;
}

.service-card .btn-primary {
    background-color: var(--primary);
    border: none;
}

.service-card .btn-primary:hover {
    background-color: var(--secondary);
}

/* ==================== */
/* DETAY SAYFASI */
/* ==================== */
.detail-header {
    background: linear-gradient(135deg, var(--primary) 0%, #2d5273 100%);
    color: white;
    padding: 60px 0;
}

.detail-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.detail-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-features li:last-child {
    border-bottom: none;
}

.detail-features i {
    width: 25px;
    color: var(--success);
}

/* ==================== */
/* REZERVASYON FORMU */
/* ==================== */
.reservation-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 30px rgba(32, 60, 86, 0.1);
    position: sticky;
    top: 100px;
    border-top: 4px solid var(--secondary);
}

.reservation-box h4, .reservation-box h5 {
    font-weight: 700;
    color: var(--primary);
}

/* ==================== */
/* BUTTONS */
/* ==================== */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ==================== */
/* FOOTER */
/* ==================== */
footer {
    background-color: var(--primary) !important;
    margin-top: auto;
}

footer h5, footer h6 {
    color: white;
    font-weight: 700;
}

footer .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

footer a.text-muted:hover {
    color: var(--secondary) !important;
}

footer hr {
    border-color: rgba(255,255,255,0.1);
}

footer .btn-outline-light:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* ==================== */
/* WHATSAPP FLOAT */
/* ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ==================== */
/* SECTION BAŞLIKLARI */
/* ==================== */
.section-title {
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 40px;
}

/* ==================== */
/* NEDEN BİZ */
/* ==================== */
.neden-biz-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d5273 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.neden-biz-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

/* ==================== */
/* CTA SECTION */
/* ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #d4943e 100%);
}

.cta-section .btn-success {
    background-color: var(--success);
    border: none;
}

.cta-section .btn-outline-light:hover {
    background-color: white;
    color: var(--secondary);
}

/* ==================== */
/* FORM STİLLERİ */
/* ==================== */
.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(232, 165, 74, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--primary);
}

/* ==================== */
/* GALERİ */
/* ==================== */
.gallery-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    border-color: var(--secondary);
}

/* ==================== */
/* PLACEHOLDER GÖRSEL */
/* ==================== */
.placeholder-img {
    background: linear-gradient(135deg, #e0e0e0 0%, var(--background) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 3rem;
    height: 200px;
    width: 100%;
}

.service-card .placeholder-img {
    height: 200px;
}

/* ==================== */
/* İLETİŞİM SAYFASI */
/* ==================== */
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-icon.primary {
    background-color: rgba(32, 60, 86, 0.1);
    color: var(--primary);
}

.contact-icon.success {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--success);
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 40px;
        width: 40px;
    }

    .navbar.navbar-scrolled .navbar-brand img {
        height: 34px;
        width: 34px;
    }

    .navbar-brand span {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .category-card {
        padding: 20px;
    }

    .category-card i {
        font-size: 2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ==================== */
/* BADGES */
/* ==================== */
.badge.bg-primary {
    background-color: var(--primary) !important;
}

.badge.bg-warning {
    background-color: var(--secondary) !important;
    color: white !important;
}

/* ==================== */
/* CARDS GENEL */
/* ==================== */
.bg-white {
    background-color: white !important;
}

.rounded-3 {
    border-radius: 15px !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

/* ==================== */
/* PRELOADER            */
/* ==================== */
html.preloader-active {
    overflow: hidden;
}

.no-preloader #preloader {
    display: none !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a1a2a 0%, #122840 35%, #203C56 65%, #183350 100%);
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader.preloader-fade-out {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(10px);
    pointer-events: none;
}

/* Ambient Glow */
#preloader::before {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 165, 74, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: preloaderGlow 3s ease-in-out infinite;
}

@keyframes preloaderGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.3); opacity: 1; }
}

/* Floating Particles */
.preloader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.preloader-particles span {
    position: absolute;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    animation: particleDrift 4s infinite ease-in-out;
}

.preloader-particles span:nth-child(1)  { width: 4px; height: 4px; left: 8%;  animation-delay: 0s;    animation-duration: 3.2s; }
.preloader-particles span:nth-child(2)  { width: 6px; height: 6px; left: 18%; animation-delay: 0.4s;  animation-duration: 3.8s; }
.preloader-particles span:nth-child(3)  { width: 3px; height: 3px; left: 32%; animation-delay: 0.8s;  animation-duration: 4.2s; }
.preloader-particles span:nth-child(4)  { width: 5px; height: 5px; left: 42%; animation-delay: 0.2s;  animation-duration: 3.4s; }
.preloader-particles span:nth-child(5)  { width: 4px; height: 4px; left: 56%; animation-delay: 1s;    animation-duration: 3.9s; }
.preloader-particles span:nth-child(6)  { width: 7px; height: 7px; left: 68%; animation-delay: 0.6s;  animation-duration: 3.5s; }
.preloader-particles span:nth-child(7)  { width: 3px; height: 3px; left: 76%; animation-delay: 0.3s;  animation-duration: 4.4s; }
.preloader-particles span:nth-child(8)  { width: 5px; height: 5px; left: 84%; animation-delay: 0.9s;  animation-duration: 3.7s; }
.preloader-particles span:nth-child(9)  { width: 4px; height: 4px; left: 93%; animation-delay: 0.5s;  animation-duration: 3.1s; }
.preloader-particles span:nth-child(10) { width: 6px; height: 6px; left: 50%; animation-delay: 1.2s;  animation-duration: 3.6s; }

@keyframes particleDrift {
    0% {
        bottom: -5%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    15% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        bottom: 105%;
        opacity: 0;
        transform: translateX(35px) scale(0.3);
    }
}

/* Flying Plane */
.preloader-plane {
    position: absolute;
    top: 18%;
    left: -10%;
    z-index: 2;
    color: rgba(255, 255, 255, 0.18);
    font-size: 1.4rem;
    animation: planeCross 5s linear infinite;
}

.preloader-plane::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 80px;
    height: 1px;
    background: linear-gradient(to left, rgba(255,255,255,0.12), transparent);
    transform: translateY(-50%);
}

@keyframes planeCross {
    0%   { left: -10%; top: 22%; }
    100% { left: 110%; top: 10%; }
}

/* Center Content */
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    position: relative;
}

/* Compass Ring */
.preloader-compass {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 35px;
}

.preloader-compass-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid var(--secondary);
    border-right: 2px solid rgba(232, 165, 74, 0.3);
    border-bottom: 2px solid rgba(232, 165, 74, 0.08);
    animation: compassRotate 2s linear infinite;
}

.preloader-compass-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px dashed rgba(232, 165, 74, 0.15);
    animation: compassRotate 4s linear infinite reverse;
}

.preloader-compass-ring::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(232, 165, 74, 0.6);
}

@keyframes compassRotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Center Icon */
.preloader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(232, 165, 74, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.preloader-icon i {
    font-size: 2rem;
    color: var(--secondary);
    filter: drop-shadow(0 0 10px rgba(232, 165, 74, 0.4));
}

@keyframes iconReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) rotate(-120deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

/* Brand Name */
.preloader-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0;
    animation: textSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.preloader-brand .brand-kas {
    color: var(--secondary);
}

/* Tagline */
.preloader-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 45px;
    opacity: 0;
    animation: textSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes textSlideUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Progress Bar */
.preloader-progress {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: preloaderFadeIn 0.4s ease 1s forwards;
}

.preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), #f0c078, var(--secondary));
    background-size: 200% 100%;
    border-radius: 2px;
    width: 0%;
    animation: progressGrow 2.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards,
               progressShimmer 1.2s linear infinite;
}

@keyframes progressGrow {
    0%   { width: 0%; }
    20%  { width: 25%; }
    50%  { width: 58%; }
    75%  { width: 80%; }
    100% { width: 100%; }
}

@keyframes progressShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes preloaderFadeIn {
    to { opacity: 1; }
}

/* Ocean Waves */
.preloader-ocean {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 3;
}

.preloader-wave {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 100%;
}

.preloader-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.preloader-wave:nth-child(1) {
    animation: waveSlide 6s ease-in-out infinite alternate;
    z-index: 3;
}

.preloader-wave:nth-child(2) {
    animation: waveSlide 8s ease-in-out infinite alternate-reverse;
    z-index: 2;
    bottom: -5px;
}

.preloader-wave:nth-child(3) {
    animation: waveSlide 10s ease-in-out infinite alternate;
    z-index: 1;
    bottom: -10px;
}

@keyframes waveSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(10%); }
}

/* Sailboat */
.preloader-boat {
    position: absolute;
    bottom: 68px;
    left: 18%;
    z-index: 4;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.45);
    animation: boatBob 2.2s ease-in-out infinite,
               boatDrift 6s ease-in-out infinite alternate;
}

@keyframes boatBob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-9px) rotate(2deg); }
}

@keyframes boatDrift {
    0%   { left: 18%; }
    100% { left: 28%; }
}

/* Preloader Responsive */
@media (max-width: 768px) {
    .preloader-compass {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }

    .preloader-icon {
        width: 56px;
        height: 56px;
    }

    .preloader-icon i {
        font-size: 1.5rem;
    }

    .preloader-brand {
        font-size: 2rem;
    }

    .preloader-tagline {
        font-size: 0.75rem;
        letter-spacing: 3px;
        margin-bottom: 35px;
    }

    .preloader-progress {
        width: 140px;
    }

    .preloader-plane {
        font-size: 1rem;
    }

    .preloader-boat {
        font-size: 1rem;
        bottom: 55px;
    }

    .preloader-ocean {
        height: 70px;
    }
}
