/* --- VARIABLES --- */
:root {
    --sage: #89b09d;       
    --sage-dark: #729683; 
    --salmon: #e7bcba;
    --salmon-dark: #d0a09e;
    --grey-dark: #7e8085;
    --grey-light: #b6bbc2;
    --bg-alt: #FDFCFB; 
    --font-display: 'Abhaya Libre', serif;
    --font-body: 'Manrope', sans-serif;
    --site-width: 1200px;
    --nav-height: 80px;
}

/* --- LANGUAGE HIDING --- */
body.lang-en [lang="tr"] { display: none !important; }
body.lang-tr [lang="en"] { display: none !important; }

/* --- RESET --- */
body {
    background-color: #fff; color: var(--grey-dark);
    font-family: var(--font-body); line-height: 1.7;
    margin: 0; padding: 0; padding-top: var(--nav-height);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; color: var(--grey-dark); line-height: 1.2; margin-top: 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- UTILITY --- */
.dk-container { max-width: var(--site-width); margin: 0 auto; padding: 0 25px; }
.text-center { text-align: center; }
.mb-60 { margin-bottom: 60px; }
.mb-large { margin-bottom: 80px; }
.dk-bg-alt { background-color: var(--bg-alt); }
.dk-section { padding: 100px 0; }

.dk-label {
    display: inline-block; font-family: var(--font-body); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 2.5px; color: var(--sage);
    margin-bottom: 20px; font-weight: 600; position: relative; padding-left: 40px;
}
.dk-label::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 30px; height: 1px; background: var(--sage);
}

/* --- HEADER --- */
.dk-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; height: var(--nav-height);
    background: rgba(255,255,255,0.98); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-img { height: 50px; width: auto; }

.desktop-nav { display: flex; gap: 30px; align-items: center; }
.desktop-nav a { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--grey-dark); }
.desktop-nav a:hover { color: var(--sage); }

.lang-switcher-desk { display: flex; gap: 10px; font-size: 0.85rem; font-weight: 700; cursor: pointer; }
.lang-btn { opacity: 0.5; transition: 0.3s; }
.lang-btn.active { opacity: 1; color: var(--sage); }

/* Header Button */
.nav-btn {
    padding: 12px 28px; background: var(--sage); color: white !important;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.nav-btn:hover { background: var(--sage-dark); }

/* Hamburger - GREEN BG, WHITE LINES */
.hamburger { 
    display: none; 
    background-color: var(--sage) !important;
    border: none; cursor: pointer; padding: 12px; border-radius: 4px;
}
.hamburger span { 
    display: block; width: 24px; height: 2px; 
    background-color: white !important; 
    margin: 5px 0; transition: 0.3s;
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed; top: var(--nav-height); left: -100%; /* Hidden by default */
    width: 100%; height: calc(100vh - var(--nav-height));
    background: white; border-top: 1px solid #eee; 
    transition: left 0.4s ease-in-out; /* Smooth slide */
    z-index: 999; display: flex; flex-direction: column;
}
.mobile-menu.active { left: 0; /* Show on active */ }

.mobile-menu-inner { 
    padding: 40px 30px; display: flex; flex-direction: column; 
    justify-content: space-between; height: 100%; overflow-y: auto;
}
.m-links-group { display: flex; flex-direction: column; gap: 20px; }
.m-link { font-size: 1.3rem; font-weight: 700; color: var(--grey-dark); border-bottom: 1px solid #f5f5f5; padding-bottom: 15px; display: block;}

/* Contact Section (Stacked) */
.m-contact-group { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; border-bottom: 1px solid #f5f5f5; padding-bottom: 30px; }
.m-contact-link { display: flex; align-items: center; gap: 15px; background: #f0f0f0; padding: 15px; font-weight: 700; color: var(--grey-dark) !important; font-size: 1rem; border-radius: 4px; text-decoration: none !important;}
.m-contact-link:hover { color: var(--sage) !important; }
.m-contact-link i { color: var(--sage); font-size: 1.2rem; }

.m-bottom-group { margin-top: auto; padding-bottom: 40px; }
.btn-full { width: 100%; text-align: center; display: block; margin-top: 20px; padding: 15px; font-size: 1rem; }
.mobile-lang-group { display: flex; gap: 15px; margin-top: 30px; }
.m-lang-btn { background: #f0f0f0; border: none; padding: 15px; flex: 1; cursor: pointer; font-weight: 700; color: var(--grey-dark); font-size: 1rem; border-radius: 4px; }
.m-lang-btn.active { background: var(--sage); color: white !important; }

/* --- HERO --- */
.dk-hero { padding: 80px 0 100px; background: radial-gradient(circle at 20% 50%, #fcfcfc 0%, #ffffff 60%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { max-width: 550px; }
.hero-content h1 { font-size: 4.2rem; margin-bottom: 25px; line-height: 1.1; color: var(--sage); }
.btn-group { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-img-wrap { display: flex; justify-content: flex-end; height: 600px; }
.hero-img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.03)); }

.dk-btn { display: inline-block; padding: 15px 35px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; }
.dk-btn-primary { background: var(--sage); color: white !important; border: 2px solid var(--sage); }
.dk-btn-primary:hover { background: transparent; color: var(--sage) !important; }
.dk-btn-outline { background: transparent; color: var(--sage) !important; border: 2px solid var(--sage); }
.dk-btn-outline:hover { background: var(--sage); color: white !important; }

/* --- BENEFITS --- */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.benefits-img-wrap img { width: 100%; border-radius: 4px; }
.benefits-content h2 { font-size: 3rem; margin-bottom: 20px; }
.benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.benefit-item h4 { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.benefit-item i { color: var(--sage); font-size: 1.3rem; }

/* --- SERVICES --- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.svc-item { padding: 40px 30px; background: white; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.svc-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.svc-icon { font-size: 2.2rem; color: var(--sage); margin-bottom: 20px; display: block; }
.svc-item h3 { font-size: 1.4rem; margin-bottom: 15px; }

/* --- PACKAGES --- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; margin-top: 60px; }
.pkg-card { background: white; padding: 40px 30px; border: 1px solid #f0f0f0; transition: 0.3s; position: relative; display: flex; flex-direction: column; }
.pkg-card:hover { border-color: var(--sage); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.pkg-card.featured { border: 2px solid var(--sage); background: #fafafa; transform: scale(1.05); z-index: 2; }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--sage); color: white; padding: 5px 15px; font-size: 0.75rem; border-radius: 30px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; white-space: nowrap; }
.pkg-card h3 { font-size: 1.6rem; color: var(--grey-dark); margin-bottom: 5px; text-align: center; }
.pkg-sub { display: block; text-align: center; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; opacity: 0.6; }
.pkg-card ul { margin: 0; padding: 0; list-style: none; flex-grow: 1; }
.pkg-card li { margin-bottom: 18px; display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; opacity: 0.8; line-height: 1.5; }
.pkg-card li i { color: var(--sage); margin-top: 4px; flex-shrink: 0; }

/* --- DESTINATION --- */
.dest-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.dest-list i { color: var(--sage); }

/* --- PROCESS --- */
.process-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 50px; border-top: 1px solid #eee; padding-top: 40px; }
.step-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--salmon); opacity: 0.6; display: block; margin-bottom: 10px; }
.step h4 { font-size: 1.1rem; }

/* --- CONTACT --- */
.contact-section { padding: 100px 0; background: var(--sage); color: white; text-align: center; }
.contact-section h2 { color: white; font-size: 3.5rem; margin-bottom: 20px; }
.form-wrap { max-width: 800px; margin: 0 auto; margin-top: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-input { 
    width: 100%; padding: 18px 25px; border: none; font-size: 1rem; font-family: var(--font-body); 
    color: var(--grey-dark); margin-bottom: 20px; box-sizing: border-box; background: white;
}
select.form-input { color: var(--grey-dark); -webkit-appearance: none; appearance: none; }
.form-btn-salmon { 
    padding: 18px 50px; background: var(--salmon) !important; color: white !important; 
    border: none !important; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; 
    cursor: pointer; transition: 0.3s; font-size: 1rem; margin-top: 10px;
}
.form-btn-salmon:hover { background: var(--salmon-dark) !important; }

/* --- FOOTER --- */
.dk-footer-dark { padding: 60px 0 40px; background-color: #2a2a2a !important; color: #b6bbc2; }
.compliance-box { 
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 40px; 
    font-size: 0.85rem; opacity: 0.7; text-align: center;
}
.footer-grid { display: grid; grid-template-columns: 1fr; align-items: center; justify-items: center; text-align: center; }
.footer-center { display: flex; flex-direction: column; align-items: center; }
.footer-logo { height: 50px; margin-bottom: 20px; }
.contact-info { line-height: 1.8; margin-bottom: 15px; font-size: 0.95rem; }
.contact-info a { color: #b6bbc2; }
.socials-light { margin-top: 20px; }
.socials-light a { margin: 0 15px; font-size: 1.3rem; color: white; opacity: 0.7; }

/* --- MOBILE --- */
@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .hamburger { display: block; }
}

@media (max-width: 992px) {
    .dk-section { padding: 40px 0; }
    
    /* Hero Tweaks */
    /* Increased bottom padding to fix overlap */
    .dk-hero { padding: 40px 0 80px 0; } 
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-content { order: 1; text-align: left !important; }
    .hero-content h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero-img-wrap { order: 2; height: 300px; justify-content: center; margin-bottom: 40px; }
    
    /* Mobile Buttons: Rectangle */
    .dk-btn { 
        padding: 12px 25px; 
        font-size: 0.8rem; 
        margin-bottom: 10px; 
        border-radius: 0 !important; /* Forces Rectangle */
    }
    .btn-group { gap: 10px; }
    
    .benefits-grid { display: flex; flex-direction: column; gap: 30px; }
    .benefits-content { order: 1; }
    .benefits-img-wrap { order: 2; height: 300px; width: 100%; }
    .benefits-list { grid-template-columns: 1fr; gap: 20px; }
    
    .service-grid, .pkg-grid { grid-template-columns: 1fr; gap: 30px; }
    .pkg-card.featured { transform: none; border-width: 1px; }
    
    .process-steps { grid-template-columns: 1fr 1fr; gap: 15px; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .contact-section h2 { font-size: 2rem; }
    
    .dk-label { padding-left: 0; } .dk-label::before { display: none; }
}