/* CSS Variables for White & Gold Theme */
:root {
    --primary-gold: #D4AF37; /* Premium Gold */
    --primary-gold-hover: #C5A028;
    --text-dark: #2C2C2C; /* Softer than pure black */
    --text-light: #ffffff;
    --bg-white: #ffffff;
    --bg-overlay: rgba(255, 255, 255, 0.75); /* White glassmorphism base */
    --font-heading: 'Playfair Display', serif; /* Elegant serif for headings */
    --font-body: 'Poppins', sans-serif; /* Clean sans-serif for body */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #1a1a1a; /* Koyu zemin rengi */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
        url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-light); /* Koyu zeminde metinler default beyaz olsun */
    overflow-x: hidden;
}

/* ===== TOP INFO BAR ===== */
.top-info-bar {
    position: fixed;
    top: 90px; /* Sabit header'in hemen altinda */
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #2b373e;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 99;
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    font-family: var(--font-body);
}



.info-items {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
}

.info-item i {
    color: var(--primary-gold);
    font-size: 15px;
}

.btn-gold-solid {
    background-color: var(--primary-gold);
    color: var(--bg-white);
    padding: 6px 18px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-gold-solid:hover {
    background-color: #C5A028;
    transform: scale(1.05);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* Sabit yukseklik */
    padding: 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background: #36454F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.6);
    transition: background 0.4s ease; /* Sadece arkaplan degisir */
}

.header.scrolled {
    background: rgba(43, 55, 62, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.9);
}

.logo {
    position: absolute;
    left: 50px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-light); /* Koyu arkaplan uzerinde beyaz yazi */
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

/* Hover altin cizgi efekti */
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ===== MOBILE HAMBURGER MENU ===== */
.menu-toggle {
    display: none; /* Masaustunde gizli */
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101; 
    padding: 10px;
}

.menu-toggle .bar {
    width: 32px;
    height: 2px;
    background-color: var(--primary-gold);
    transition: all 0.4s ease-in-out;
}

/* Hamburger to X Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%; /* Default right */
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: left 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Darker overlay for darker images */
    z-index: 1;
}

.slide.active {
    left: 0;
}

.slide.previous {
    left: -100%; /* Default left */
}

.slide-content {
    position: relative;
    z-index: 2; /* Above the dark overlay */
    text-align: center;
    max-width: 800px;
    padding: 0 25px;
}

.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--text-light); /* White text */
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: 20px;
    color: #f1f1f1;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

/* Animation for active slide content (staggered) */
.slide.active .slide-content h1 {
    animation: fadeSlideUp 0.8s ease both;
    animation-delay: 0.4s;
}

.slide.active .slide-content p {
    animation: fadeSlideUp 0.8s ease both;
    animation-delay: 0.6s;
}

.slide.active .slide-content .hero-buttons {
    animation: fadeSlideUp 0.8s ease both;
    animation-delay: 0.8s;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--text-light); /* White text */
    text-decoration: none;
    border: 1px solid var(--primary-gold);
    background: transparent;
    border-radius: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ===== SLIDER ARROWS ===== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-white);
    border-color: var(--primary-gold);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* ===== SERVICES INTRO ===== */
.services-intro {
    padding: 100px 20px;
    background-color: transparent; /* Arka plandaki sabit resmin gorunmesi icin */
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-gold);
    line-height: 1.4;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* ===== SERVICES CARDS ===== */
.services-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

.service-card {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: transform 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.8);
}

.service-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s ease;
}

.service-card:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-title {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 26px;
    font-weight: 500;
}

.card-desc {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.card-duration {
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 500;
    margin-top: 5px;
}

.card-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--primary-gold);
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 1024px) {
    .info-item:nth-child(3),
    .info-item:nth-child(4) {
        display: none; /* Hide address and clock on tablets */
    }
}

@media (max-width: 768px) {
    .top-info-bar {
        padding: 0 25px;
        justify-content: flex-end; /* Sadece butonu saga yasla */
    }
    .info-items {
        display: none; /* Mobilde tum text bilgileri gizle, yer yok */
    }
    .header {
        justify-content: space-between; /* Aralari acarak sag/sol yapar */
        padding: 15px 25px;
    }
    
    .logo {
        position: static; /* Mobilde ortalama iptal, sola yapisik */
    }

    
    .menu-toggle {
        display: flex; /* Hamburger menuyu goster */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Ekran disina gizle */
        width: 100%;
        height: 100vh;
        background: #36454F; /* Ayni koyu kul rengi */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        gap: 40px;
    }
    
    .nav-menu.active {
        right: 0; /* Menu acilinca ekrana gelsin */
    }
    
    .nav-menu a {
        font-size: 24px; /* Mobilde yazilar daha buyuk ve okunakli */
    }
    
    .slide-content h1 {
        font-size: 42px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }

    /* Services Intro Mobile Adjustments */
    .services-intro {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }
}
/* ==== NEW SECTIONS: BENEFITS, SESSION DETAILS, RELATED SERVICES, FOOTER ==== */

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-align: center;
}

.benefits-section {
    margin-top: 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.benefits-section ul {
    list-style: none;
}

.benefits-section li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e0e0e0;
}

.benefits-section li i {
    color: var(--primary-gold);
    font-size: 20px;
}

.session-details {
    margin-top: 50px;
    padding: 40px;
    background: rgba(0,0,0,0.8);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.session-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.session-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
}

.session-item i {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.session-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.session-item p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

.session-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #fff;
}

.related-services {
    margin-top: 60px;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover img {
    transform: scale(1.1);
}

.related-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.related-card:hover .related-overlay {
    background: rgba(212, 175, 55, 0.7);
}

/* FOOTER */
.main-footer {
    background-color: #111;
    color: #ccc;
    padding: 60px 50px 20px 50px;
    border-top: 3px solid var(--primary-gold);
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.footer-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-list li i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* RESPONSIVE UPDATES FOR NEW SECTIONS */
@media (max-width: 992px) {
    .session-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .session-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .session-actions { flex-direction: column; }
    .detail-page { padding: 100px 20px 30px 20px; }
}

/* Adjust Session Actions Buttons to be identical in size */
.session-actions .btn-gold-solid {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border: 2px solid var(--primary-gold);
    border-radius: 5px;
    letter-spacing: normal;
}

.session-actions .btn-outline-gold {
    font-size: 16px;
    font-family: inherit;
    letter-spacing: normal;
}

/* FLOATING CONTACT BUTTONS */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    color: white;
}

.wa-btn {
    background-color: #25D366; /* WhatsApp Green */
}
.wa-btn:hover {
    background-color: #20BA56;
}

.phone-btn {
    background-color: var(--primary-gold);
}
.phone-btn:hover {
    background-color: #C5A028;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        left: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* SPECIAL PACKAGES SECTION */
.packages-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05); /* subtle glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    text-align: center;
}

.packages-intro {
    margin-bottom: 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.package-card {
    background-color: #f5f0e8; /* Cream */
    padding: 40px 30px;
    border-radius: 15px;
    color: #1e1e1e;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-icon {
    width: 70px;
    height: 70px;
    background-color: #ffffff; /* Beyaz zemin */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid #dcdcdc; /* A��k gri kenarl�k */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.package-icon i {
    font-size: 32px;
    color: #9f9f9f; /* Acik gri ikon rengi */
}

.package-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #b49464; /* Gold on cream */
    margin-bottom: 10px;
    text-shadow: none; /* override default heading shadow */
}

.package-duration {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
    padding: 0;
}

.package-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-features li i {
    color: #b49464;
    font-size: 14px;
}

/* Ensure outline gold button works well on cream background */
.package-card .btn-outline-gold {
    margin-top: auto;
    color: #b49464;
    border-color: #b49464;
    padding: 12px 30px;
    font-weight: 600;
}

.package-card .btn-outline-gold:hover {
    background: #b49464;
    color: #fff;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .packages-section {
        margin: 40px 20px;
        padding: 40px 20px;
    }
}




/* PACKAGES CTA SECTION */
.packages-cta {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.cta-text {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn-large-outline {
    display: inline-block;
    padding: 18px 45px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
    border: 3px solid var(--primary-gold);
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    transition: all 0.4s ease;
    white-space: nowrap; /* Ensures label fits without breaking */
}

.btn-large-outline:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .cta-title { font-size: 32px; }
    .btn-large-outline {
    display: inline-block;
    padding: 18px 45px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
    border: 3px solid var(--primary-gold);
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    transition: all 0.4s ease;
    white-space: nowrap; /* Ensures label fits without breaking */
}
}


/* LUXURY SECTION */
.luxury-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 60px 0; /* Top and bottom padding */
    background: rgba(255, 255, 255, 0.05); /* glassmorphism */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    text-align: center;
    overflow: hidden; /* to clip the grid inside the rounded corners */
}

.luxury-header {
    padding: 0 40px 50px 40px;
}

.luxury-subtitle {
    font-size: 16px;
    color: var(--primary-gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.luxury-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.luxury-grid {
    display: flex;
    width: 100%;
}

.luxury-card {
    flex: 1; /* equal width, 4 items = 25% each */
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.luxury-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.luxury-card:hover .luxury-overlay {
    opacity: 1;
}

.luxury-overlay i {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    transform: translateY(-20px);
    transition: transform 0.4s ease;
}

.luxury-overlay h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #fff;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.luxury-card:hover .luxury-overlay i,
.luxury-card:hover .luxury-overlay h3 {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .luxury-grid {
        flex-wrap: wrap;
    }
    .luxury-card {
        flex: 0 0 50%; /* 2x2 grid on tablet */
    }
    .luxury-title { font-size: 32px; }
}
@media (max-width: 576px) {
    .luxury-card {
        flex: 0 0 100%; /* 1 column on mobile */
    }
    .luxury-title { font-size: 28px; }
}
.luxury-header .package-icon {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}
.luxury-header .package-icon i {
    color: var(--primary-gold);
    font-size: 40px;
}


/* WHY SHINE SPA SECTION */
.why-section {
    max-width: 1200px;
    margin: 100px auto 80px auto; /* gap from luxury section */
    padding: 0 20px;
    text-align: center;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-gold);
    margin-bottom: 50px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.why-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.3); /* 3D shadow on hover */
    transform: translateY(-10px);
}

.why-icon {
    font-size: 38px;
    color: var(--primary-gold);
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

/* Animations for icons */
@keyframes wifi-wave {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(1); }
}
.why-card:hover .fa-wifi {
    animation: wifi-wave 1.2s infinite;
}

@keyframes float-icon {
    0%, 100% {transform: translateY(0) scale(1.1);}
    50% {transform: translateY(-8px) scale(1.1);}
}
.why-card:hover .fa-mug-hot, 
.why-card:hover .fa-leaf, 
.why-card:hover .fa-crown {
    animation: float-icon 1.5s infinite ease-in-out;
}

@keyframes sparkle {
    0% { transform: scale(1.1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(15deg); opacity: 0.7; }
    100% { transform: scale(1.1) rotate(0deg); opacity: 1; }
}
.why-card:hover .fa-hand-sparkles,
.why-card:hover .fa-spa {
    animation: sparkle 1.5s infinite;
}

@keyframes shake-clock {
    0%, 100% {transform: translateX(0) scale(1.1);}
    25% {transform: translateX(-4px) rotate(-10deg) scale(1.1);}
    75% {transform: translateX(4px) rotate(10deg) scale(1.1);}
}
.why-card:hover .fa-clock,
.why-card:hover .fa-square-parking {
    animation: shake-clock 0.6s infinite;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 19px; /* normal + 3px */
    color: #1e1e1e;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card-text {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .why-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 768px) {
    .why-card { flex: 0 0 100%; }
}

/* GALLERY PREVIEW SECTION */
.gallery-preview-section {
    max-width: 1200px;
    margin: 100px auto 80px auto; /* gap from previous section */
    padding: 0 20px;
    text-align: center;
    background: transparent; /* zemini olmayan */
}

.gallery-slogan {
    font-family: var(--font-heading);
    font-size: 38px;
    color: #fff; /* or var(--primary-gold) */
    margin-bottom: 50px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    line-height: 1.3;
}

.gallery-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px; /* aralarında boşluk olacak şekilde */
}

.gallery-item {
    flex: 1; /* yan yana 4 kart sığacak şekilde */
    aspect-ratio: 1 / 1; /* tam kare */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05); /* hover effect */
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* resmin kareye tam oturması için */
    display: block;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* inside zoom effect */
}

@media (max-width: 992px) {
    .gallery-grid {
        flex-wrap: wrap;
    }
    .gallery-item {
        flex: 0 0 calc(50% - 15px); /* tablet'te 2x2 kare */
    }
    .gallery-slogan {
        font-size: 32px;
    }
}
@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 100%; /* mobilde tek sütun kare */
    }
    .gallery-slogan {
        font-size: 26px;
    }
}

/* GALLERY ZOOM OVERLAY */
.gallery-item {
    position: relative;
}

.zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .zoom-overlay {
    opacity: 1;
}

.zoom-overlay i {
    color: var(--primary-gold);
    font-size: 40px;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover .zoom-overlay i {
    transform: scale(1);
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-wrapper {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 95vw;
    height: 90vh;
    width: auto;
    object-fit: contain;
    border: 3px solid var(--primary-gold);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0,0,0,0.5);
    border: none;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
    border-radius: 3px 0 0 3px;
}

.lightbox-next {
    right: 20px;
    border-radius: 0 3px 3px 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--primary-gold);
    color: #1e1e1e;
}



/* TESTIMONIALS SECTION */
.testimonials-section {
    width: 100%;
    margin: 80px 0 0 0;
    padding: 60px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden; /* Prevent horizontal scrollbar on body */
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 46px;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.testimonials-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gradient masks for smooth fading edges */
.testimonials-slider-container::before,
.testimonials-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.testimonials-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0) 100%);
}
.testimonials-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0) 100%);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding-left: 30px;
    animation: scrollLeft 40s linear infinite;
}

.testimonials-slider-container:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 30px 40px;
    width: 450px;
    min-width: 450px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Quote icon background */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.15);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 18px;
    text-align: right;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 320px;
        min-width: 320px;
        padding: 25px;
    }
}

/* HOME CONTACT FULLWIDTH SECTION */
.home-contact-full {
    width: 100%;
    display: flex;
    background: rgba(10,10,10,0.85); /* Slightly darker to contrast with glassmorphism */
    border-top: 1px solid rgba(255,255,255,0.1);
}

.home-contact-info { flex: 0 0 50%; width: 50%; box-sizing: border-box; padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-contact-info h2 {
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 40px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.home-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.home-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.5;
}

.home-contact-info li i {
    color: var(--primary-gold);
    font-size: 26px;
    width: 30px;
    text-align: center;
    margin-top: -2px;
}

.home-contact-map { flex: 0 0 50%; width: 50%; box-sizing: border-box; position: relative;
    min-height: 500px;
}

.map-tab {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-gold);
    color: #1e1e1e;
    padding: 15px 35px;
    font-weight: bold;
    text-decoration: none;
    border-bottom-right-radius: 20px;
    z-index: 10;
    font-size: 17px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    transition: background 0.3s;
    font-family: var(--font-heading);
}
.map-tab:hover {
    background: #fff;
}

@media (max-width: 992px) {
    .home-contact-full {
        flex-direction: column;
    }
    .home-contact-info { width: 100%; flex: 1 1 auto; padding: 50px 20px; }
    .home-contact-map { width: 100%; flex: 1 1 auto; min-height: 400px; }
}



.float-btn i { font-size: 30px !important; color: white !important; z-index: 10 !important; visibility: visible !important; display: inline-block !important; }
.phone-btn { background-color: var(--primary-gold) !important; }
.wa-btn { background-color: #25D366 !important; }


/* Scrolling Address Bar */
.scrolling-address-bar {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 15px 0;
    color: var(--text-color);
    font-size: 16px;
    white-space: nowrap;
    border: none;
    box-sizing: border-box;
    display: flex;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.scrolling-address-bar:hover .scrolling-text {
    animation-play-state: paused;
}


/* Stylish White Headings for Services */
.stylish-white-heading {
    font-family: var(--font-heading);
    color: #ffffff !important;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
h3.stylish-white-heading {
    font-size: 26px;
    text-transform: none;
}
h4.stylish-white-heading {
    font-style: normal;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .btn-outline {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px !important;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 65vh !important;
        min-height: 450px;
    }
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
    .main-footer {
        padding: 40px 20px 20px 20px !important;
    }
}

@media (max-width: 768px) {
    .btn-gold-solid {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 768px) {
    /* Header inceltme */
    .header {
        height: 60px !important;
        padding: 0 20px !important;
    }
    .logo a img {
        height: 40px !important;
    }
    .menu-toggle {
        margin-top: 5px;
    }

    /* Top info bar ayari */
    .top-info-bar {
        height: 45px !important;
        padding: 0 10px !important;
        top: 60px !important;
    }
    
    /* Icerikleri kucultup goster */
    .info-items {
        display: flex !important;
        gap: 10px !important;
        flex: 1;
        overflow-x: auto; /* Tasarsa kaydirilabilir */
        white-space: nowrap;
    }
    .info-items::-webkit-scrollbar {
        display: none; /* Gizli kaydirma cubugu */
    }
    
    .info-item {
        font-size: 11px !important;
    }
    .info-item i {
        font-size: 12px !important;
    }
    
    .info-action {
        margin-left: 5px;
    }
}

@media (max-width: 768px) { .info-item:nth-child(3), .info-item:nth-child(4) { display: flex !important; } }

@media (max-width: 768px) {
    .btn-large-outline {
        padding: 12px 25px !important;
        font-size: 15px !important;
    }
}

/* Fixed header margin fixes */
.hero-slider, .page-header { margin-top: 130px; }\n.hero-slider { height: calc(100vh - 130px); }
@media (max-width: 768px) {
    .hero-slider, .page-header { margin-top: 105px; }\n    .hero-slider { height: calc(65vh - 105px) !important; min-height: 400px; }
}
