:root {
    --white: #ffffff;
    --bg-light: #faf9f6;
    --gold: #d4af37;
    --gold-grad: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728);
    --gold-light: rgba(212, 175, 55, 0.1);
    --dark-green: #0d1f15;
    --pastel-green: #cce3c3;
    --text-main: #1d1d1f;
    --text-muted: #737373;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --curve: cubic-bezier(0.19, 1, 0.22, 1);
    --curve-bouncy: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body, html {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body.loading-state {
    overflow: hidden;
}

/* =========== SPLASH SCREEN =========== */
.splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--dark-green);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}
.splash-screen.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.splash-logo-container {
    position: relative;
    width: 120px; height: 120px;
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 2rem;
}
.splash-logo {
    width: 100px; z-index: 2;
    animation: pulseLogo 2s infinite alternate var(--curve);
}
.splash-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotateRing 4s linear infinite;
}
.splash-text {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.splash-sub {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-align: center;
}
.splash-loading-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 1.5rem;
    letter-spacing: 2px;
    font-weight: 300;
    animation: flashText 1.5s infinite ease-in-out;
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}
@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes flashText {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* =========== AMBIENT BG =========== */
.ambient-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; pointer-events: none;
}
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.5;
}
.blob-1 {
    width: 50vw; height: 50vw; background: var(--gold-light);
    top: -10%; right: -10%;
    animation: float1 15s infinite alternate ease-in-out;
}
.blob-2 {
    width: 60vw; height: 60vw; background: rgba(204, 227, 195, 0.2);
    bottom: -10%; left: -10%;
    animation: float2 20s infinite alternate ease-in-out;
}
.noise-overlay {
    position: absolute; top:0; left:0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    opacity: 0.4; mix-blend-mode: multiply;
}

@keyframes float1 { 100% { transform: translate(-50px, 30px); } }
@keyframes float2 { 100% { transform: translate(50px, -40px); } }

/* =========== NAVIGATION OVERLAY =========== */
.side-menu {
    position: fixed;
    top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh;
    background: #fff; z-index: 10002;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    display: flex; flex-direction: column;
    padding: 3rem 2rem;
    transition: right 0.5s var(--curve);
}
.side-menu.open {
    right: 0;
}
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(13, 31, 21, 0.4); backdrop-filter: blur(5px);
    z-index: 10001; opacity: 0; visibility: hidden; transition: all 0.5s var(--curve);
}
.menu-overlay.active {
    opacity: 1; visibility: visible;
}
.menu-close {
    align-self: flex-end; width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-light); display: flex; justify-content: center; align-items: center;
    color: var(--dark-green); cursor: pointer; margin-bottom: 3rem;
}
.menu-close svg { width: 24px; height: 24px; }
.nav-links {
    list-style: none; display: flex; flex-direction: column; gap: 2rem;
}
.menu-link {
    text-decoration: none; font-family: var(--font-heading); font-size: 1.5rem;
    color: var(--dark-green); font-weight: 500; transition: color 0.3s;
}
.menu-link:hover { color: var(--gold); }
.menu-footer {
    margin-top: auto; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
}

/* =========== LAYOUT & UTILS =========== */
.smooth-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--curve), transform 1s var(--curve);
}
[data-scroll].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========== HERO SECTION =========== */
.hero-section {
    position: relative;
    padding: 2rem 2rem 4rem;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
}
.glass-nav {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    margin-bottom: auto; padding-top: 1rem;
    opacity: 0; transform: translateY(-20px);
    animation: fadeDown 1s 1s forwards var(--curve);
}
.nav-logo { width: 65px; height: 65px; object-fit: contain; }
.nav-title-box { display: flex; flex-direction: column; align-items: center; flex: 1; }
.nav-title-main { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; line-height: 1.1; text-align: center; }
.nav-title-sub { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-top: 0.2rem; }

.hamburger {
    width: 32px; height: 22px; cursor: pointer;
    display: flex; flex-direction: column; justify-content: space-between;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--gold-grad); border-radius: 2px;
}

.hero-content {
    margin-top: auto;
    margin-bottom: 2rem;
}
.hero-badge {
    display: inline-block;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--gold);
    padding-left: 10px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem; line-height: 1.1;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}
.hero-title span {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}
.hero-desc {
    font-size: 0.95rem; line-height: 1.6; color: var(--text-muted);
    margin-bottom: 2.5rem; max-width: 90%;
}
.scroll-down-btn {
    background: none; border: none;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    color: var(--gold);
    display: flex; align-items: center; gap: 1rem;
    cursor: pointer;
}
.scroll-down-btn svg { width: 20px; height: 20px; color: var(--gold); animation: bounce 2s infinite; }

@keyframes fadeDown { to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* =========== SECTION BASE =========== */
.section { padding: 4rem 2rem; }
.section-header { margin-bottom: 3rem; }
.sec-subtitle {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 0.5rem;
}
.sec-title {
    font-family: var(--font-heading); font-size: 2.2rem; color: var(--dark-green);
    line-height: 1.2;
}
.gold-line {
    width: 40px; height: 1px; background: var(--gold); margin-top: 1rem;
}
.center-line { margin: 1rem auto 2rem; }

/* =========== PACKAGES LIST =========== */
.packages-grid {
    display: flex; flex-direction: column; gap: 1.5rem;
}
.pkg-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.4s var(--curve), box-shadow 0.4s var(--curve);
    overflow: hidden;
}
.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(13, 31, 21, 0.08);
}
.pkg-card::before {
    content: ''; position: absolute; top:0; left:0; width: 100%; height: 4px;
    background: var(--gold-grad); opacity: 0; transition: opacity 0.4s;
}
.pkg-card:hover::before { opacity: 1; }

.pkg-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-size: 0.6rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    padding: 0.3rem 0.8rem; border-radius: 100px;
}
.gold-gradient { background: var(--gold-grad); color: #fff; }
.green-tint { background: rgba(204, 227, 195, 0.3); color: var(--dark-green); }
.emerald-tint { background: rgba(13, 31, 21, 0.05); color: var(--dark-green); }

.pkg-name {
    font-family: var(--font-heading); font-size: 1.5rem; color: var(--dark-green);
    margin-bottom: 0.5rem; padding-right: 4rem;
}
.pkg-short {
    font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1.5rem;
}
.pkg-price-row {
    display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 2rem;
}
.price-strikethrough { font-size: 0.8rem; color: #a0a0a0; text-decoration: line-through; }
.price-current { font-size: 1.4rem; font-family: var(--font-heading); font-weight: 600; color: var(--gold); }

.luxury-btn {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    background: var(--dark-green); color: white; border: none; padding: 1.2rem 1.5rem;
    border-radius: 12px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: background 0.4s;
}
.luxury-btn:hover { background: #1a3826; }
.btn-icon { font-size: 1.2rem; transform: translateX(0); transition: transform 0.3s; }
.luxury-btn:hover .btn-icon { transform: translateX(5px); }

/* =========== ABOUT SECTION =========== */
.about-section { background: var(--dark-green); color: var(--white); padding: 5rem 2rem; position: relative; }
.glass-panel {
    background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem; border-radius: 24px;
}
.about-section .sec-title { color: var(--white); }
.elegant-body { font-size: 0.95rem; line-height: 1.8; color: #d0d0d0; text-align: left;}
.elegant-body p { margin-bottom: 1rem; }
.sec-sub-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; margin-top: 2rem;}
.mt-xl { margin-top: 3rem; }

/* =========== FOOTER CONTACT =========== */
.footer { padding: 4rem 2rem; text-align: center; }
.footer-title { font-family: var(--font-heading); font-size: 2rem; color: var(--dark-green); margin-bottom: 1rem; }
.footer-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 3rem; }
.footer-actions { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 4rem; }

.action-card {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.5rem; border-radius: 16px; text-decoration: none;
    border: 1px solid #eee; transition: all 0.3s var(--curve);
}
.action-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.action-card span { font-weight: 500; color: var(--dark-green); font-size: 0.95rem; text-align: left;}
.icon-wrap {
    width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; margin: 0; padding: 0;
}
.wp .icon-wrap { background: #25D366; }
.ig .icon-wrap { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.location .icon-wrap { background: var(--dark-green); }
.location:hover { border-color: var(--gold); }
.copy { font-size: 0.75rem; color: #aaa; text-transform: uppercase; letter-spacing: 2px; }

/* =========== LUXURY MODAL (YARIM PENCERE) =========== */
.modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(13, 31, 21, 0.4); backdrop-filter: blur(10px);
    z-index: 10000; opacity: 0; visibility: hidden; transition: all 0.5s var(--curve);
}
.modal-backdrop.active { opacity: 1; visibility: visible; }

.luxury-modal {
    position: fixed; bottom: -100%; left: 0; width: 100%; max-width: 480px; height: 85vh;
    background: #fff; border-radius: 32px 32px 0 0; z-index: 10001;
    display: flex; flex-direction: column;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.1);
    transition: bottom 0.6s var(--curve-bouncy);
    left: 50%; transform: translateX(-50%);
}
.luxury-modal.open { bottom: 0; }

.modal-drag-area { padding: 1.5rem 0; display: flex; justify-content: center; cursor: grab; }
.handle { width: 50px; height: 4px; background: #e0e0e0; border-radius: 4px; }
.modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem; width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-light); border: none; font-size: 1.2rem; color: var(--dark-green);
    cursor: pointer; display: flex; justify-content: center; align-items: center;
}

.modal-body { padding: 1rem 2rem 3rem; overflow-y: auto; }
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-thumb { background: #eee; border-radius: 4px; }

.modal-header-accent {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.5rem;
}
.green-accent { color: var(--text-muted); }
.modal-title { font-family: var(--font-heading); font-size: 2rem; color: var(--dark-green); margin-bottom: 1rem; line-height: 1.1; }
.modal-price-display { display: flex; align-items: baseline; gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f0f0f0; margin-bottom: 1.5rem; }
.m-old { color: #aaa; text-decoration: line-through; font-size: 1.1rem; }
.m-new { color: var(--gold); font-size: 1.8rem; font-family: var(--font-heading); font-weight: 600; }

.modal-desc { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }
.modal-highlight { background: var(--gold-light); border-left: 2px solid var(--gold); padding: 1rem 1.5rem; font-size: 0.9rem; font-weight: 500; border-radius: 0 12px 12px 0; color: var(--dark-green); }
.warning-tint { background: #fff0f0; border-left-color: #ff4444; color: #cc0000; }

.list-head { font-family: var(--font-heading); font-size: 1.3rem; color: var(--dark-green); margin-bottom: 1rem; }
.modal-list-box ul { list-style: none; }
.modal-list-box li { padding: 0.8rem 0; border-bottom: 1px solid #f9f9f9; display: flex; align-items: center; font-size: 0.9rem; color: var(--text-main); }
.modal-list-box li:last-child { border: none; }
.check { display: inline-block; width: 20px; height: 20px; margin-right: 15px; border-radius: 50%; position: relative; }
.check::after { content: '•'; position: absolute; top:50%; left:50%; transform: translate(-50%, -50%); color: var(--gold); font-size: 20px; }

/* Tables */
.luxury-table { background: #fff; border: 1px solid #eee; border-radius: 16px; overflow: hidden; }
.table-row { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; border-bottom: 1px solid #eee; }
.border-none { border-bottom: none; }
.t-label { font-weight: 500; font-size: 0.95rem; color: var(--dark-green); }
.t-value { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--gold); }
.t-col { display: flex; flex-direction: column; }
.t-sub { font-size: 0.7rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.luxury-bullet-list { list-style: none; }
.luxury-bullet-list li { position: relative; padding-left: 0; margin-bottom: 0.8rem; font-size: 0.9rem; line-height: 1.5; color: var(--text-muted); }

.modal-cta { width: 100%; background: var(--dark-green); color: white; border: none; padding: 1.2rem; border-radius: 12px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-top: 2rem; cursor: pointer; transition: 0.4s; }
.modal-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(13, 31, 21, 0.2); }

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

@media (min-width: 600px) {
    .glass-nav { padding: 1rem 0; }
}
