/*
Theme Name: Centrum SPA Custom
Description: Pure HTML/CSS Lightweight Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #080706;
    --amber-glow: #1A1009; 
    --text-light: #F3EFEA;
    --pearl-white: #FDFBF7; 
    --accent-ruby: #9B111E; 
    --wa-green: #25D366; 
}

* { box-sizing: border-box; }

body {
    margin: 0; padding: 0;
    font-family: 'Jost', sans-serif !important; 
    background: radial-gradient(circle at 30% 20%, var(--amber-glow) 0%, var(--bg-dark) 80%) no-repeat center center fixed;
    background-size: cover; color: var(--text-light); line-height: 1.6; min-height: 100vh;
    scroll-behavior: smooth;
    display: flex; flex-direction: column;
}

h1, h2, h3, h4, span, a, p { font-family: 'Jost', sans-serif !important; }
a { color: var(--text-light); text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; margin: 0; padding: 0; }


/* =========================================
   1. MASTER HEADER & MENÜ YAPISI (YENİ VE KESİN)
   ========================================= */
#centrum-master-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 99999;
    background: rgba(8, 7, 6, 0.90);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(243, 239, 234, 0.08);
    transition: all 0.3s ease;
}

/* --- MASAÜSTÜ TASARIMI --- */
.desktop-header-container {
    display: flex; justify-content: space-between; align-items: center;
    height: 80px; padding: 0 60px; width: 100%;
}
.desktop-header-container .nav-left, .desktop-header-container .nav-right { display: flex; flex: 1; align-items: center; }
.desktop-header-container .nav-left { justify-content: flex-end; padding-right: 50px; }
.desktop-header-container .nav-right { justify-content: flex-start; padding-left: 50px; }
.desktop-header-container ul { display: flex; gap: 40px; list-style: none; margin: 0; padding: 0; }
.desktop-header-container a { font-size: 14px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--pearl-white); opacity: 0.8; transition: all 0.3s ease; text-decoration: none; }
.desktop-header-container a:hover { opacity: 1; transform: scale(1.05); text-shadow: 0 0 8px rgba(253, 251, 247, 0.5); }
.desktop-header-container .logo-center { flex: 0 0 auto; text-align: center; }
.desktop-header-container .logo-center a { font-size: 36px; letter-spacing: 10px; font-weight: 400; color: var(--pearl-white); display: inline-block; }

/* --- MOBİL HEADER (Masaüstünde Varsayılan Olarak Gizli) --- */
.mobile-header-container { display: none; }

/* --- MOBİL ÇEKMECE MENÜSÜ --- */
.mobile-drawer {
    position: fixed; top: 70px; left: 0; width: 100%; background: rgba(8, 7, 6, 0.98);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-bottom: 1px solid rgba(243, 239, 234, 0.1);
    z-index: 99998; padding: 40px 20px; display: flex; flex-direction: column; align-items: center;
    transform: translateY(-150%); opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.menu-active { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer-close-btn { position: absolute; top: 15px; right: 25px; background: transparent; border: none; font-size: 28px; color: var(--pearl-white); cursor: pointer; padding: 5px; }
.drawer-nav ul { display: flex; flex-direction: column; gap: 25px; text-align: center; list-style: none; margin: 0; padding: 0; }
.drawer-nav a { font-size: 18px; letter-spacing: 5px; color: var(--pearl-white); text-transform: uppercase; font-weight: 400; text-decoration: none; }


/* =========================================
   2. ANA İÇERİK TAŞIYICI
   ========================================= */
.site-content { padding-top: 80px; display: flex; flex-direction: column; align-items: center; width: 100%; overflow-x: hidden; flex: 1; }

/* =========================================
   3. HERO ALANI
   ========================================= */
.hero-section { position: relative; padding: 50px 60px; width: 100%; max-width: 1400px; margin: 15px 20px 0 20px; border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.01); border: 1px solid rgba(243, 239, 234, 0.03); }
.hero-bg-illusion { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s; z-index: 1; filter: brightness(0.4) contrast(1.1); pointer-events: none; will-change: opacity; }
.hero-section:has(.expandable-image-wrapper:hover) .hero-bg-illusion { opacity: 1; visibility: visible; }
.hero-container { width: 100%; display: flex; gap: 60px; align-items: center; position: relative; z-index: 10; }
.hero-content { flex: 1; max-width: 50%; }
.hero-kicker { display: block; font-size: 14px; letter-spacing: 5px; color: var(--accent-ruby); text-shadow: 0 0 12px rgba(155, 17, 30, 0.5); margin-bottom: 20px; font-weight: 600; }
.hero-title { font-size: 52px; font-weight: 400; line-height: 1.1; margin-bottom: 25px; letter-spacing: 4px; color: var(--text-light); text-transform: uppercase; }
.hero-desc { font-size: 17px; font-weight: 300; color: rgba(243, 239, 234, 0.9); margin-bottom: 40px; line-height: 1.8; }
.hero-desc strong { font-weight: 500; color: var(--pearl-white); text-shadow: 0 0 8px rgba(253, 251, 247, 0.3); }

.hero-actions { display: flex; gap: 20px; }
.btn-deep { position: relative; padding: 16px 36px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 50px; border: 1px solid rgba(243, 239, 234, 0.2); color: var(--text-light); background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); overflow: hidden; z-index: 1; }
.btn-deep::before { content: ''; position: absolute; top: 0; left: 50%; width: 100%; height: 100%; background: var(--accent-ruby); transform: translateX(-50%) scaleX(0); transform-origin: center; transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1); z-index: -1; }
.btn-deep:hover::before { transform: translateX(-50%) scaleX(1); }
.btn-deep:hover { color: var(--pearl-white); border-color: var(--accent-ruby); }

.hero-visual { position: relative; flex: 1; max-width: 50%; height: 450px; perspective: 1000px;}
.expandable-image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 30px; overflow: hidden; cursor: pointer; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); transition: transform 0.3s ease, box-shadow 0.3s ease; z-index: 20; }
.dark-spa-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) contrast(1.1); transition: opacity 0.3s ease; }
.expandable-image-wrapper:hover { transform: scale(1.02); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8); }
.expandable-image-wrapper:hover .dark-spa-img { opacity: 0; }

/* =========================================
   EDİTORYAL SEO VE HİZMETLER BÖLÜMÜ
   ========================================= */
.editorial-seo-section { position: relative; padding: 80px 60px; margin: 40px 20px 0 20px; width: 100%; max-width: 1400px; border-radius: 20px; overflow: hidden; display: flex; justify-content: center; background: rgba(255, 255, 255, 0.01); border: 1px solid rgba(243, 239, 234, 0.03); }
.service-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s; z-index: 1; filter: brightness(0.20) contrast(1.1); pointer-events: none; will-change: opacity; }

.bg-aromaterapi { background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=1200&auto=format&fit=crop'); }
.bg-isvec { background-image: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?q=80&w=1200&auto=format&fit=crop'); }
.bg-bali { background-image: url('https://images.unsplash.com/photo-1519824145371-296894a0daa9?q=80&w=1200&auto=format&fit=crop'); }
.bg-derin { background-image: url('https://centrumspacankaya.com/wp-content/uploads/2026/09/derindokumasaji.jpg'); }
.bg-bolgesel { background-image: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?q=80&w=1200&auto=format&fit=crop'); }
.bg-cift { background-image: url('https://images.unsplash.com/photo-1552693673-1bf958298935?q=80&w=1200&auto=format&fit=crop'); }

.editorial-seo-section:has(.hover-aromaterapi:hover) .bg-aromaterapi { opacity: 1; visibility: visible; }
.editorial-seo-section:has(.hover-isvec:hover) .bg-isvec { opacity: 1; visibility: visible; }
.editorial-seo-section:has(.hover-bali:hover) .bg-bali { opacity: 1; visibility: visible; }
.editorial-seo-section:has(.hover-derin:hover) .bg-derin { opacity: 1; visibility: visible; }
.editorial-seo-section:has(.hover-bolgesel:hover) .bg-bolgesel { opacity: 1; visibility: visible; }
.editorial-seo-section:has(.hover-cift:hover) .bg-cift { opacity: 1; visibility: visible; }

.editorial-container { width: 100%; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 100px; align-items: center; position: relative; z-index: 10; }
.section-kicker { display: block; font-size: 13px; letter-spacing: 5px; color: var(--accent-ruby); text-shadow: 0 0 10px rgba(155, 17, 30, 0.3); margin-bottom: 20px; font-weight: 600; display: flex; }
.section-title { font-size: 42px; font-weight: 400; line-height: 1.2; margin-bottom: 35px; letter-spacing: 2px; color: var(--text-light); }
.seo-paragraph { font-size: 16px; font-weight: 300; color: rgba(243, 239, 234, 0.75); margin-bottom: 25px; line-height: 1.9; text-align: justify; }
.seo-paragraph strong { font-weight: 500; color: var(--pearl-white); text-shadow: 0 0 8px rgba(253, 251, 247, 0.3); }

.mobile-visual-break { display: none; }
.services-title { font-size: 14px; letter-spacing: 4px; color: rgba(243, 239, 234, 0.4); margin-bottom: 30px; border-bottom: 1px solid rgba(243, 239, 234, 0.1); padding-bottom: 15px; font-weight: 500; }

.luxury-service-list { display: flex; flex-direction: column; gap: 15px; }
.service-card { display: flex; flex-direction: column; background: rgba(255, 255, 255, 0.015); border: 1px solid rgba(253, 251, 247, 0.05); border-radius: 15px; transition: all 0.4s ease; position: relative; z-index: 10; overflow: hidden; }
.service-card:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(253, 251, 247, 0.15); transform: translateX(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.mobile-card-img { display: none; }
.service-card-info { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 25px 30px; }
.service-card-left { max-width: 65%; }
.service-card-title { font-size: 20px; font-weight: 400; color: var(--pearl-white); margin: 0 0 8px 0; letter-spacing: 1px; }
.service-card-desc { font-size: 14px; font-weight: 300; color: rgba(253, 251, 247, 0.6); margin: 0; line-height: 1.6; }
.service-card-link { font-size: 12px; font-weight: 500; letter-spacing: 2px; color: rgba(253, 251, 247, 0.4); text-decoration: none; text-transform: uppercase; transition: all 0.3s ease; white-space: nowrap; }
.service-card:hover .service-card-link { color: var(--wa-green); text-shadow: 0 0 8px rgba(37, 211, 102, 0.3); }

/* =========================================
   SPA DONANIMLARI VE İMKANLAR
   ========================================= */
.facilities-section { padding: 80px 60px 20px 60px; width: 100%; max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.facilities-container { width: 100%; text-align: center; }
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; width: 100%; }
.facility-card { position: relative; border-radius: 15px; overflow: hidden; border: 1px solid rgba(253, 251, 247, 0.05); aspect-ratio: 4/5; cursor: pointer; }
.facility-img { width: 100%; height: 100%; position: absolute; top:0; left:0; z-index: 1;}
.facility-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) contrast(1.05); transition: all 0.5s ease; }
.facility-card:hover .facility-img img { transform: scale(1.05); filter: brightness(0.95); }
.facility-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 35px 20px 20px 20px; background: linear-gradient(to top, rgba(8,7,6,0.8) 0%, rgba(8,7,6,0) 80%); z-index: 2; text-align: center; }
.facility-title { font-size: 16px; font-weight: 500; color: var(--pearl-white); letter-spacing: 2px; text-transform: uppercase; margin: 0; text-shadow: 0 0 5px rgba(0,0,0,0.8); }

/* =========================================
   KAYAN ŞERİT (INFINITE MARQUEE)
   ========================================= */
.scrolling-ticker { width: 100%; background: rgba(253, 251, 247, 0.02); border-top: 1px solid rgba(243, 239, 234, 0.04); border-bottom: 1px solid rgba(243, 239, 234, 0.04); padding: 35px 0; margin: 80px 0; display: flex; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; align-items: center; animation: scroll-ticker 30s linear infinite; will-change: transform; }
.ticker-track span:not(.ticker-separator) { font-size: 20px; letter-spacing: 6px; color: var(--pearl-white); font-weight: 400; text-transform: uppercase; }
.ticker-track .ticker-separator { display: inline-block; width: 1px; height: 24px; background-color: var(--pearl-white); opacity: 0.2; margin: 0 60px; vertical-align: middle; }
@keyframes scroll-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   WHATSAPP REZERVASYON BÖLÜMÜ
   ========================================= */
.booking-section { padding: 0 60px 80px 60px; width: 100%; max-width: 1400px; margin: 0 auto 80px auto; display: flex; justify-content: center; align-items: center; }
.booking-container { background: rgba(255, 255, 255, 0.015); border: 1px solid rgba(253, 251, 247, 0.05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 20px; padding: 80px 40px; text-align: center; width: 100%; max-width: 900px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); }
.booking-kicker { display: block; font-size: 13px; letter-spacing: 5px; color: var(--accent-ruby); text-shadow: 0 0 10px rgba(155, 17, 30, 0.3); margin-bottom: 20px; font-weight: 600; }
.booking-title { font-size: 42px; font-weight: 400; letter-spacing: 2px; color: var(--pearl-white); margin-bottom: 25px; }
.booking-desc { font-size: 17px; font-weight: 300; line-height: 1.8; color: rgba(243, 239, 234, 0.8); max-width: 700px; margin: 0 auto 40px auto; }
.btn-whatsapp-large { display: inline-flex; align-items: center; justify-content: center; padding: 18px 45px; font-size: 14px; letter-spacing: 2px; font-weight: 600; text-transform: uppercase; background-color: var(--pearl-white); color: var(--bg-dark); border-radius: 50px; transition: all 0.4s ease; text-decoration: none; box-shadow: 0 10px 30px rgba(253, 251, 247, 0.1); }
.btn-whatsapp-large:hover { background-color: var(--wa-green); color: var(--pearl-white); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3); transform: translateY(-3px); }

/* =========================================
   KUSURSUZ FOOTER
   ========================================= */
.centrum-footer { width: 100%; background-color: var(--bg-dark); border-top: 1px solid rgba(253, 251, 247, 0.05); padding: 80px 60px 20px 60px; color: var(--text-light); }
.footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(253, 251, 247, 0.05); }
.footer-col { display: flex; flex-direction: column; }
.footer-title { font-size: 26px; letter-spacing: 6px; font-weight: 400; color: var(--pearl-white); margin-bottom: 25px; text-transform: uppercase; white-space: nowrap; }
.footer-text { font-size: 16px; font-weight: 300; color: rgba(253, 251, 247, 0.7); margin-bottom: 10px; letter-spacing: 1px; }
.footer-left { align-items: flex-start; }
.footer-map-wrapper { width: 100%; height: 120px; border-radius: 12px; overflow: hidden; margin-bottom: 20px; border: 1px solid rgba(253, 251, 247, 0.1); }
.footer-map-wrapper iframe { filter: invert(90%) hue-rotate(180deg) grayscale(100%) contrast(1.1); opacity: 0.8; transition: opacity 0.3s ease; }
.footer-map-wrapper:hover iframe { opacity: 1; }
.phone-text { margin-top: 10px; color: var(--pearl-white); font-weight: 500; }
.footer-center { align-items: center; text-align: center; }
.footer-socials { display: flex; gap: 20px; margin-bottom: 40px; }
.social-icon { color: var(--pearl-white); opacity: 0.6; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.social-icon:hover { opacity: 1; transform: translateY(-3px); }
.social-icon.icon-ig:hover { color: var(--accent-ruby); }
.social-icon.icon-wa:hover { color: var(--wa-green); }
.footer-hours { padding-top: 30px; border-top: 1px solid rgba(253, 251, 247, 0.05); width: 60%; }
.hours-title { display: block; font-size: 12px; letter-spacing: 4px; color: rgba(253, 251, 247, 0.4); margin-bottom: 10px; }
.footer-right { align-items: flex-end; text-align: right; }
.footer-subtitle { font-size: 14px; font-weight: 300; letter-spacing: 4px; color: rgba(253, 251, 247, 0.5); margin-bottom: 8px; text-transform: uppercase; }
.footer-bottom { padding-top: 20px; }
.footer-bottom-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; font-weight: 300; letter-spacing: 2px; color: rgba(253, 251, 247, 0.4); margin: 0; }
.footer-legal { display: flex; gap: 30px; }
.footer-legal a { font-size: 13px; font-weight: 300; letter-spacing: 1px; color: rgba(253, 251, 247, 0.4); transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--pearl-white); }

/* =========================================
   YAPIŞKAN BUTONLAR (MASAÜSTÜ & MOBİL)
   ========================================= */
.floating-contact { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.float-btn { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; }
.float-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7); }
.phone-btn { background-color: var(--pearl-white); color: var(--bg-dark); }
.wa-btn { background-color: var(--wa-green); color: #ffffff; }
.mobile-float-text { display: none; }

/* =========================================
   MOBİL (TELEFON) UYUMU - KESİN AYRIM
   ========================================= */
@media (max-width: 992px) {
    /* 1. MASAÜSTÜ MENÜSÜNÜ TAMAMEN YOK ET */
    .desktop-header-container { display: none !important; }
    
    /* 2. MOBİL MENÜYÜ ORTAYA ÇIKAR */
    .mobile-header-container { display: flex !important; justify-content: space-between; align-items: center; height: 70px; padding: 0 20px; width: 100%; }

    /* Mobil Hamburger İkonu */
    .hamburger-btn { display: flex; flex-direction: column; justify-content: space-between; width: 32px; height: 22px; background: transparent; border: none; cursor: pointer; padding: 0; margin: 0; flex: 0 0 32px; }
    .hamburger-btn span { display: block; width: 100%; height: 2px; background-color: var(--pearl-white); border-radius: 2px; }
    
    /* Mobil Ortalanmış Logo */
    .mobile-logo { flex: 1; display: flex; justify-content: center; align-items: center; }
    .mobile-logo a { font-size: 18px; letter-spacing: 4px; color: var(--pearl-white); text-decoration: none; font-weight: 400; text-transform: uppercase; }
    
    /* Mobil Sağ Boşluk (Logoyu merkezde kilitler) */
    .mobile-spacer { display: block; flex: 0 0 32px; }

    /* İçeriklerin Üstten Başlama Mesafesi */
    .site-content { padding-top: 70px !important; }

    /* Ana Sayfa Geri Kalan Mobil Uyarlamaları */
    .hero-section { padding: 50px 20px !important; margin: 15px 10px 0 10px !important; min-height: 480px !important; }
    .hero-container { position: static !important; flex-direction: column !important; gap: 0 !important; }
    .hero-visual { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; max-width: none !important; z-index: 1 !important; margin: 0 !important; }
    .expandable-image-wrapper { border-radius: 0 !important; box-shadow: none !important; }
    .hero-visual .dark-spa-img { filter: brightness(0.60) contrast(1.05) !important; }
    .hero-content { position: relative !important; z-index: 2 !important; text-align: center !important; margin-top: 30px !important; }
    .hero-title { font-size: 36px !important; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
    .hero-desc { font-size: 15px !important; text-shadow: 0 2px 10px rgba(0,0,0,0.8); font-weight: 400; color: #ffffff; }
    .hero-kicker { text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
    .hero-actions { justify-content: center !important; flex-direction: column !important; gap: 15px !important; }
    .btn-deep { width: 100% !important; }

    .editorial-seo-section { padding: 60px 20px; margin: 20px 10px 0 10px; }
    .editorial-container { grid-template-columns: 1fr; gap: 40px; }
    .section-title { font-size: 32px; }
    .seo-paragraph { text-align: left; }
    
    .service-card { background: rgba(255, 255, 255, 0.02); }
    .mobile-card-img { display: block; width: 100%; height: 220px; }
    .mobile-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) contrast(1.05); }
    .service-card-info { flex-direction: column; align-items: flex-start; padding: 25px 20px; gap: 15px; }
    .service-card-left { max-width: 100%; }
    .service-card-link { align-self: flex-end; font-size: 11px; padding-top: 10px; border-top: 1px solid rgba(253, 251, 247, 0.05); width: 100%; justify-content: flex-end; }

    .mobile-visual-break { display: block; width: 100%; height: 250px; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
    .mobile-break-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) contrast(1.1); }

    .facilities-section { padding: 40px 20px 20px 20px; }
    .facilities-grid { grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
    .facility-title { font-size: 13px; letter-spacing: 1px; }
    .facility-content { padding: 15px 10px; }
    
    .scrolling-ticker { margin: 50px 0; }
    .ticker-track span:not(.ticker-separator) { font-size: 16px; }
    
    .booking-section { padding: 0 20px 80px 20px; margin: 0 10px 80px 10px; }
    .booking-container { padding: 50px 20px; }
    .booking-title { font-size: 32px; }

    .centrum-footer { padding: 60px 20px 20px 20px; padding-top: 80px; padding-bottom: 85px; }
    .footer-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .footer-col { align-items: center; text-align: center; }
    .footer-title { font-size: 22px; letter-spacing: 4px; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }

    .floating-contact { bottom: 0; right: 0; width: 100%; flex-direction: row; gap: 0; z-index: 99999; }
    .float-btn { width: 50%; height: 65px; border-radius: 0; box-shadow: none; font-size: 13px; font-weight: 600; letter-spacing: 2px; gap: 8px; }
    .float-btn:hover { transform: none; box-shadow: none; }
    .mobile-float-text { display: inline-block; } 
    .phone-btn { border-top: 1px solid rgba(0,0,0,0.1); border-right: 1px solid rgba(0,0,0,0.05); }
    .wa-btn { border-top: 1px solid rgba(0,0,0,0.1); }
}