/* ==========================================================================
   MARINA SPA KAYSERİ - STİL DOSYASI
   Tema: Lüks, Premium, Gold & Dark
   ========================================================================== */

/* Değişkenler ve Temel Tasarım Sistemi */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #121212;
    --bg-light-dark: #181818;
    
    --gold: #d4af37;
    --gold-rgb: 212, 175, 55;
    --gold-light: #e5c05d;
    --gold-dark: #aa851c;
    
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light-gray: #d1d1d1;
    
    --whatsapp-green: #25d366;
    --whatsapp-hover: #20ba5a;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

/* Sıfırlama (Reset) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light-gray);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Düzen Elemanları (Grid & Container) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.gold-text {
    color: var(--gold) !important;
}

/* Buton Tasarımları */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* Bölüm Başlıkları */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px auto;
}

.section-divider.left {
    margin: 20px 0;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
}

/* Badge (Rozet) */
.badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.gold-badge {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* ==========================================================================
   1. Üst Şerit (Top Bar)
   ========================================================================== */
.top-bar {
    background-color: #050505;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-phone {
    font-weight: 600;
    color: var(--text-white);
}

.top-phone:hover {
    color: var(--gold);
}

/* ==========================================================================
   2. Navigasyon (Header)
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light-gray);
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-right-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-mobile-cta {
    display: none;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger Açık Durumu */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--gold);
}

/* ==========================================================================
   3. Kahraman (Hero) Bölümü
   ========================================================================== */
.hero-section {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    background-image: url('assets/hero-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 40%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light-gray);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   4. Önemli Bilgilendirme (Disclaimer)
   ========================================================================== */
.disclaimer-section {
    padding: 40px 0 0 0;
    background-color: var(--bg-dark);
}

.disclaimer-card {
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-icon i {
    font-size: 2.5rem;
}

.disclaimer-text h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.disclaimer-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.disclaimer-text strong {
    color: var(--gold);
}

/* ==========================================================================
   5. Masaj Hizmetleri (Services)
   ========================================================================== */
.services-section {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.15);
}

.service-card:hover::before {
    background-color: var(--gold);
}

.service-card.featured {
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card.featured::before {
    background-color: var(--gold);
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.service-image-box {
    margin-bottom: 25px;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--gold);
    transform: scale(1.1);
}

.service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.9rem;
}

.duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
}

.service-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
}

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

.service-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   6. Neden Biz? (Why Choose Us)
   ========================================================================== */
.why-us-section {
    background-color: var(--bg-light-dark);
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.why-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.8);
}

.why-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-white);
}

.why-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.why-desc {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-info h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   7. Randevu Formu (Booking)
   ========================================================================== */
.booking-section {
    background-color: var(--bg-dark);
}

.booking-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.booking-header {
    text-align: center;
    margin-bottom: 45px;
}

.booking-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.booking-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.booking-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light-gray);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: var(--bg-light-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-white);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    background-color: rgba(212, 175, 55, 0.03);
    padding: 15px 20px;
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   8. İletişim ve Harita (Contact)
   ========================================================================== */
.contact-section {
    background-color: var(--bg-light-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 50px;
    background-color: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-info-card {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.contact-sub {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    display: block;
}

.detail-text a, 
.detail-text p {
    font-size: 1.05rem;
    color: var(--text-white);
    font-weight: 500;
}

.detail-text a:hover {
    color: var(--gold);
}

.map-box {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.map-box iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(1.2);
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.main-footer {
    background-color: #050505;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 20px;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4, 
.footer-contact h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after, 
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.footer-contact p a {
    color: var(--text-light-gray);
}

.footer-contact p a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.sponsor-credit {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #e2ff00;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(226, 255, 0, 0.5), 0 0 20px rgba(226, 255, 0, 0.2);
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 20px;
    border: 1px dashed rgba(226, 255, 0, 0.4);
    border-radius: 8px;
    background-color: rgba(226, 255, 0, 0.05);
    transition: var(--transition);
}

.sponsor-credit a {
    color: #ffffff;
    text-decoration: underline;
}

.sponsor-credit a:hover {
    color: #e2ff00;
    text-shadow: 0 0 8px #e2ff00;
}

.seo-text {
    margin-top: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 1px;
}

/* ==========================================================================
   10. WhatsApp Hızlı Destek Balonu (Floating Widget)
   ========================================================================== */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
}

.whatsapp-icon-btn {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: var(--transition);
}

.whatsapp-icon-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.08);
}

.whatsapp-tooltip {
    background-color: var(--bg-card);
    color: var(--text-white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-right: 15px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-floating-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Ping Animasyonu */
.ping-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--whatsapp-green);
    animation: ping 2s infinite ease-in-out;
    pointer-events: none;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================================================
   11. Mobil Responsive (Duyarlılık) Tasarımı
   ========================================================================== */

/* 1024px Genişlik Altı */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-image {
        height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-box {
        min-height: 350px;
    }
}

/* 768px Genişlik Altı (Tablet & Mobil) */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .top-bar {
        display: none; /* Mobilde sade görünüm için topbar gizlenebilir veya sıkıştırılabilir */
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .header-right-ctas .btn-outline {
        display: none; /* Mobil menü içindeki CTA kullanılacağı için başlıkta gizliyoruz */
    }
    
    .btn-mobile-cta {
        display: flex;
        width: 80%;
        margin-top: 20px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .disclaimer-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-floating-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Mobilde tooltip gizlenir */
    }
}
