/**
 * FC Gayrimenkul - Özel Düzeltmeler
 * Tema override'ları ve özel stiller
 */

/* ========================================
   APPLE-STYLE DESIGN TOKENS
   Glassmorphism + Layered Shadows
   ======================================== */

:root {
    /* === Glassmorphism === */
    --glass-bg-light: rgba(255, 255, 255, 0.12);
    --glass-bg-light-solid: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(28, 28, 28, 0.72);
    --glass-bg-dark-solid: rgba(28, 28, 28, 0.92);
    --glass-blur: blur(20px);
    --glass-blur-heavy: blur(40px);
    --glass-blur-light: blur(10px);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-border-subtle: rgba(255, 255, 255, 0.08);
    --glass-border-dark: rgba(0, 0, 0, 0.08);

    /* === Layered Shadows - Apple Style === */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-md:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg:
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.06),
        0 32px 64px rgba(0, 0, 0, 0.04);
    --shadow-xl:
        0 12px 24px rgba(0, 0, 0, 0.1),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 48px 96px rgba(0, 0, 0, 0.06);

    /* Hover Lift Shadow */
    --shadow-hover:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);

    /* Inner Shadows */
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-inner-light: inset 0 1px 2px rgba(255, 255, 255, 0.1);

    /* Glow Effects */
    --glow-subtle: 0 0 20px rgba(255, 255, 255, 0.1);
    --glow-button: 0 4px 20px rgba(0, 0, 0, 0.2);

    /* === Animated Transitions - Apple Curves === */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* === Border Radius - Consistent Rounding === */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ========================================
   MOUSE CURSOR FOLLOWER GİZLEME
   ======================================== */
.mouseCursor,
.cursor-inner,
.cursor-outer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ========================================
   FLOATING GLASSMORPHISM HEADER
   ======================================== */

/* Desktop Header - Floating Style */
@media (min-width: 992px) {

    /* === CRITICAL: Override container-fluid padding === */
    .header-1 .container-fluid,
    .header-2 .container-fluid,
    #header-sticky .container-fluid {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* === Floating Header Base === */
    .header-1,
    .header-2,
    #header-sticky {
        position: fixed !important;
        top: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 95% !important;
        max-width: 1400px !important;
        box-sizing: border-box !important;
        border-radius: 16px !important;
        background: rgba(28, 28, 28, 0.88) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
        transition: all 0.3s ease !important;
        padding: 15px 40px !important;
        z-index: 9999 !important;
        overflow: hidden !important;
    }

    /* Scroll - Sticky State */
    .header-1.sticky,
    .header-2.sticky,
    #header-sticky.sticky {
        top: 10px !important;
        background: rgba(28, 28, 28, 0.95) !important;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35) !important;
        border-color: rgba(255, 255, 255, 0.15) !important;
    }

    /* Scroll Down - Header Hidden */
    .header-1.header-hidden,
    .header-2.header-hidden,
    #header-sticky.header-hidden {
        transform: translateX(-50%) translateY(-150%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* === Inner Wrapper - Full Width === */
    .mega-menu-wrapper {
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* === Header Main - Flex Layout === */
    .header-main {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        padding: 0 !important;
        gap: 30px !important;
        box-sizing: border-box !important;
    }

    /* === Logo === */
    .logo,
    .header-logo,
    .header-logo-2 {
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    .logo-img,
    .logo-icon-text img,
    .header-logo>img,
    .header-logo-2>img {
        height: 42px !important;
        width: auto !important;
    }

    .logo-icon-text {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .logo-icon-text .logo-text,
    .logo-text-only {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #fff !important;
        white-space: nowrap !important;
    }

    /* === Menu === */
    .mean__menu-wrapper {
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        min-width: 0 !important;
    }

    .main-menu ul {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 5px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-menu ul li,
    .header-main .main-menu ul li,
    .header-1 .header-main .main-menu ul li,
    .header-2 .header-main .main-menu ul li {
        margin: 0 !important;
        margin-inline-end: 0 !important;
        display: inline-flex !important;
    }

    .main-menu ul li a {
        padding: 10px 14px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #fff !important;
        white-space: nowrap !important;
        transition: color 0.3s ease !important;
    }

    .main-menu ul li a:hover {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* === Hide Hamburger on Desktop === */
    .header__hamburger,
    .sidebar__toggle {
        display: none !important;
    }

    /* === Header Right - CTA Button === */
    .header-right {
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .header-right .gt-theme-btn {
        padding: 12px 24px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        border-radius: 25px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .header-right .gt-theme-btn i {
        font-size: 14px !important;
    }
}

/* Tablet & Mobile Header */
@media (max-width: 991px) {

    .header-1,
    .header-2,
    #header-sticky {
        position: fixed !important;
        top: 10px !important;
        left: 10px !important;
        right: 10px !important;
        width: calc(100% - 20px) !important;
        transform: none !important;
        border-radius: 16px !important;
        background: rgba(28, 28, 28, 0.88) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
        padding: 15px 20px !important;
        z-index: 9999 !important;
    }

    /* Container-fluid override for mobile */
    .header-1 .container-fluid,
    .header-2 .container-fluid {
        padding: 0 !important;
    }

    /* Header Main - Centered Logo Layout */
    .header-main {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        padding: 0 !important;
        min-height: 45px !important;
    }

    /* Logo - Centered */
    .logo,
    .header-logo {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .logo-icon-text {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .logo-icon-text img {
        height: 36px !important;
        width: auto !important;
    }

    .logo-icon-text .logo-text,
    .logo-text-only {
        font-size: 16px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }

    /* Image-only logo */
    .logo-img,
    .header-logo>img,
    .header-logo-2>img {
        height: 38px !important;
        width: auto !important;
    }

    /* Hamburger Menu - Absolute Right */
    .header__hamburger,
    .sidebar__toggle {
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }

    /* Hide other header elements */
    .header-right .hero-button,
    .mean__menu-wrapper,
    .main-menu {
        display: none !important;
    }

    /* Hide duplicate logo */
    .header-logo-2 {
        display: none !important;
    }
}

/* Body Padding - Header için boşluk */
body {
    padding-top: 85px;
}

@media (max-width: 991px) {
    body {
        padding-top: 95px;
    }
}

/* Hero Section Düzeltmesi - Padding'i kaldır */
.gt-hero-slider,
.hero-slider,
.gt-hero-section {
    margin-top: -85px;
}

/* Breadcrumb ve diğer ilk içerik - Header arkasına uzanır */
.gt-breadcrumb-wrapper {
    margin-top: -85px;
    padding-top: 120px;
    /* Header (85px) + extra spacing (35px) */
}

/* Portföy hero slider - Header arkasına uzanır */
.listing-hero-slider,
.project-hero-slider {
    margin-top: -85px;
    padding-top: 85px;
}

/* Proje detay galeri - Header arkasına uzanır */
.project-gallery-section {
    margin-top: -85px;
    padding-top: 85px;
}

@media (max-width: 991px) {

    .gt-hero-slider,
    .hero-slider,
    .gt-hero-section {
        margin-top: -95px;
    }

    .gt-breadcrumb-wrapper {
        margin-top: -95px;
        padding-top: 130px;
        /* Header (95px) + extra spacing (35px) */
    }

    .listing-hero-slider,
    .project-hero-slider {
        margin-top: -95px;
        padding-top: 95px;
    }

    .project-gallery-section {
        margin-top: -95px;
        padding-top: 95px;
    }
}

/* Hero sağ şekil gizle */
.gt-hero-section .hero-shape-right {
    display: none !important;
}

/* ========================================
   OFFCANVAS MENU - Glassmorphism Design
   Matches floating header style
   ======================================== */

/* Main Panel - Dark Glass Effect */
.offcanvas__info {
    background: rgba(18, 18, 18, 0.95) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5) !important;
}

/* Wrapper Padding */
.offcanvas__wrapper {
    padding: 30px 25px !important;
}

/* Top Section - Logo & Close */
.offcanvas__top {
    padding-bottom: 25px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 25px !important;
}

/* Logo Text - White */
.offcanvas__logo .logo-icon-text span,
.offcanvas__logo .logo-text-only,
.offcanvas__logo a span {
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
}

.offcanvas__logo img {
    height: 35px !important;
}

/* Close Button - Glass Style */
.offcanvas__close button {
    width: 42px !important;
    height: 42px !important;
    line-height: 42px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.offcanvas__close button:hover {
    background: #333333 !important;
    border-color: #333333 !important;
    transform: rotate(90deg) !important;
}

.offcanvas__close button i {
    color: #fff !important;
    font-size: 16px !important;
}

/* Description Text */
.offcanvas__wrapper .text {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

/* Mobile Menu Items */
.mobile-menu.fix {
    margin-bottom: 30px !important;
}

.mobile-menu .mean-nav>ul>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.mobile-menu .mean-nav ul li a {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 14px 0 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.mobile-menu .mean-nav ul li a:hover {
    color: #ffffff !important;
    padding-left: 10px !important;
}

/* Submenu Arrow */
.mobile-menu .mean-nav ul li a.mean-expand {
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 18px !important;
}

.mobile-menu .mean-nav ul li a.mean-expand:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Submenu */
.mobile-menu .mean-nav ul li ul {
    background: rgba(255, 255, 255, 0.03) !important;
}

.mobile-menu .mean-nav ul li ul li a {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 12px 20px !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Contact Section */
.offcanvas__contact h4 {
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
}

.offcanvas__contact ul li {
    margin-bottom: 15px !important;
}

.offcanvas__contact ul li a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition: color 0.3s ease !important;
}

.offcanvas__contact ul li a:hover {
    color: #ffffff !important;
}

/* Contact Icons */
.offcanvas__contact-icon {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    margin-right: 15px !important;
}

.offcanvas__contact-icon i {
    color: #ffffff !important;
    font-size: 14px !important;
}

/* CTA Button */
.offcanvas__contact .gt-theme-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #000000 0%, #333333 100%) !important;
    color: #fff !important;
    padding: 14px 30px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.offcanvas__contact .gt-theme-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    background: linear-gradient(135deg, #333333 0%, #000000 100%) !important;
}

/* Social Icons */
.offcanvas__contact .social-icon {
    margin-top: 25px !important;
    gap: 10px !important;
}

.offcanvas__contact .social-icon a {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.offcanvas__contact .social-icon a:hover {
    background: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
}

/* Overlay - Blur Effect */
.offcanvas__overlay.overlay-open {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    opacity: 1 !important;
}

/* Animation for menu items */
.offcanvas__info.info-open .mobile-menu .mean-nav>ul>li {
    animation: slideInFromRight 0.4s ease forwards;
    opacity: 0;
}

.offcanvas__info.info-open .mobile-menu .mean-nav>ul>li:nth-child(1) {
    animation-delay: 0.1s;
}

.offcanvas__info.info-open .mobile-menu .mean-nav>ul>li:nth-child(2) {
    animation-delay: 0.15s;
}

.offcanvas__info.info-open .mobile-menu .mean-nav>ul>li:nth-child(3) {
    animation-delay: 0.2s;
}

.offcanvas__info.info-open .mobile-menu .mean-nav>ul>li:nth-child(4) {
    animation-delay: 0.25s;
}

.offcanvas__info.info-open .mobile-menu .mean-nav>ul>li:nth-child(5) {
    animation-delay: 0.3s;
}

.offcanvas__info.info-open .mobile-menu .mean-nav>ul>li:nth-child(6) {
    animation-delay: 0.35s;
}

.offcanvas__info.info-open .mobile-menu .mean-nav>ul>li:nth-child(7) {
    animation-delay: 0.4s;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Small Screen Adjustments */
@media (max-width: 450px) {
    .offcanvas__info {
        width: 100% !important;
    }

    .offcanvas__wrapper {
        padding: 25px 20px !important;
    }
}

/* ========================================
   BREADCRUMB - Elegant & Minimal Tasarım
   ======================================== */

/* Ana wrapper - gradient overlay ile */
.gt-breadcrumb-wrapper {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.85) 0%, rgba(28, 28, 28, 0.6) 100%);
    z-index: 1;
}

/* Dalga şeklini gizle */
.gt-breadcrumb-wrapper .breadcrumb-shape {
    display: none;
}

/* İçerik container */
.gt-breadcrumb-wrapper .gt-page-heading,
.gt-breadcrumb-wrapper .breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
    text-align: center;
}

/* Alt başlık (Bizi Tanıyın vb.) */
.gt-breadcrumb-wrapper .gt-breadcrumb-sub-title,
.gt-breadcrumb-wrapper .gt-breadcrumb-sub-title span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: transparent !important;
    padding: 0 !important;
}

/* Ana başlık */
.gt-breadcrumb-wrapper h1 {
    color: #fff !important;
    font-size: 42px !important;
    font-weight: 400 !important;
    margin: 0 0 20px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .gt-breadcrumb-wrapper h1 {
        font-size: 32px !important;
    }
}

/* Breadcrumb navigasyonu */
.gt-breadcrumb-wrapper .gt-breadcrumb-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gt-breadcrumb-wrapper .gt-breadcrumb-items li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.gt-breadcrumb-wrapper .gt-breadcrumb-items li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.gt-breadcrumb-wrapper .gt-breadcrumb-items li a:hover {
    color: #fff;
}

.gt-breadcrumb-wrapper .gt-breadcrumb-items li i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
}

/* Aktif sayfa (son item) */
.gt-breadcrumb-wrapper .gt-breadcrumb-items li:last-child {
    color: #fff;
    font-weight: 500;
}

/* Dekoratif çizgi */
.gt-breadcrumb-wrapper .breadcrumb-content::after,
.gt-breadcrumb-wrapper .gt-page-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gt-theme, #000000);
    margin: 25px auto 0;
}

/* ========================================
   OKUNABİLİRLİK DÜZELTMELERİ
   Beyaz-üzerine-beyaz metin sorunlarını çöz
   ======================================== */

/* ==== GLOBAL AÇIK ARKA PLAN DÜZELTMELERİ ==== */
/* Tüm gt-section-title'lar için varsayılan koyu renk */
.gt-section-title h2 {
    color: var(--gt-header, #1C1C1C) !important;
}

.gt-section-title h6 {
    color: var(--gt-theme, #000000) !important;
}

/* ==== HİZMETLERİMİZ BÖLÜMÜ ==== */
.gt-hotel-facilities-section-2 .gt-section-title h2 {
    color: #1a1a1a !important;
}

.gt-hotel-facilities-section-2 .gt-section-title h6 {
    color: var(--gt-theme, #000000) !important;
}

.gt-hotel-facilities-section-2 .gt-hotel-text,
.gt-hotel-facilities-section-2 p {
    color: #555 !important;
}

.gt-hotel-facilities-section-2 .gt-box-title,
.gt-hotel-facilities-section-2 h3 {
    color: #1a1a1a !important;
}

.gt-hotel-right-content .gt-section-title h2 {
    color: #1a1a1a !important;
}

/* ==== ÖNE ÇIKAN İLANLAR - KOYU ARKA PLAN ==== */
.room-explore-section-2 .gt-section-title h2 {
    color: #fff !important;
}

.room-explore-section-2 .gt-section-title h6 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ==== ABOUT SECTION - AÇIK ARKA PLAN ==== */
.gt-about-section .gt-section-title h2,
.gt-about-section-2 .gt-section-title h2,
.gt-about-wrapper .gt-section-title h2 {
    color: #1a1a1a !important;
}

/* ==== WHY CHOOSE US - KOYU ARKA PLAN ==== */
.gt-why-choose-us-section .gt-section-title h2,
.section-bg-2 .gt-section-title h2 {
    color: #fff !important;
}

/* ==== SECTION-BG-3 (AÇIK KREM ARKA PLAN) ==== */
.section-bg-3 .gt-section-title h2 {
    color: #1a1a1a !important;
}

.section-bg-3 .gt-section-title h6 {
    color: var(--gt-theme, #000000) !important;
}

.section-bg-3 h3 {
    color: #1a1a1a !important;
}

.section-bg-3 p {
    color: #555 !important;
}

/* ==== NEWS/BLOG SECTION ==== */
.gt-news-section .gt-section-title h2 {
    color: #1a1a1a !important;
}

/* ==== TESTIMONIAL - KOYU ARKA PLAN ==== */
.gt-testimonial-section .gt-section-title h2 {
    color: #fff !important;
}

/* ==== FAQ SECTION ==== */
.gt-faq-section .gt-section-title h2 {
    color: #1a1a1a !important;
}

/* ==== FEATURES SECTION ==== */
.gt-features-section .gt-section-title h2 {
    color: #1a1a1a !important;
}

/* Öne Çıkan İlanlar bölümü - koyu arka plan, beyaz metin */
.room-explore-section-2 .gt-section-title h2 {
    color: #fff !important;
}

.room-explore-section-2 .gt-section-title h6 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Features & FAQ bölümleri */
.gt-features-section .gt-section-title h2,
.gt-faq-section .gt-section-title h2 {
    color: #1a1a1a !important;
}

/* Why Choose Us - koyu arka plan */
.gt-why-choose-us-section .gt-section-title h2 {
    color: #fff !important;
}

/* Button ve link kontrastları */
.gt-theme-btn {
    background: var(--gt-theme, #000000) !important;
    border-color: var(--gt-theme, #000000) !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.gt-theme-btn:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Style-2 Butonlar (Outline/İkincil) */
.gt-theme-btn.style-2 {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}

.gt-theme-btn.style-2:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #1a1a1a !important;
    /* Beyaz bg = koyu font */
}

/* Koyu arka plan üzerindeki butonlar hover'da beyazlaşırsa */
.gt-hero-section .gt-theme-btn.style-2:hover,
.room-explore-section-2 .gt-theme-btn.style-2:hover,
.gt-discount-section-2 .gt-theme-btn.style-2:hover,
.gt-testimonial-section .gt-theme-btn.style-2:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #1a1a1a !important;
}

/* Link buttonları */
.gt-link-btn {
    color: var(--gt-theme, #000000) !important;
    transition: all 0.3s ease;
}

.gt-link-btn:hover {
    color: #1a1a1a !important;
}

/* Genel beyaz hover düzeltmesi - tüm butonlar için */
a.gt-theme-btn:hover,
button.gt-theme-btn:hover,
.gt-theme-btn:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #fff !important;
}

/* ::before pseudo element override (animasyon için) */
.gt-theme-btn::before {
    background: #1a1a1a !important;
}

.gt-theme-btn:hover::before {
    background: #1a1a1a !important;
}

/* Style-2 butonlar - beyaz hover ama koyu font */
a.gt-theme-btn.style-2:hover,
button.gt-theme-btn.style-2:hover,
.gt-theme-btn.style-2:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #1a1a1a !important;
}

.gt-theme-btn.style-2::before {
    background: #fff !important;
}

.gt-theme-btn.style-2:hover::before {
    background: #fff !important;
}

/* Hero overlay iyileştirmesi */
.hero-slider .swiper-slide::before,
.gt-hero-slider .swiper-slide::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
}

/* Blog/News kartları */
.gt-blog-card h3 a,
.gt-news-card h3 a {
    color: #1a1a1a !important;
}

.gt-blog-card h3 a:hover,
.gt-news-card h3 a:hover {
    color: var(--gt-theme, #000000) !important;
}

/* Testimonial bölümü */
.gt-testimonial-section .gt-section-title h2 {
    color: #fff !important;
}

/* Product cards - fiyat ve detay okunabilirliği */
.gt-listing-card .price,
.gt-product-card .price {
    color: var(--gt-theme, #000000) !important;
    font-weight: 700 !important;
}

/* ========================================
   ELEGANT DOKUNUŞLAR (Karakulluk.com ilhamı)
   ======================================== */

/* Yumuşak gölgeler */
.gt-room-items,
.gt-product-card,
.gt-listing-card,
.gt-blog-card,
.gt-single-sideber-widget {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.gt-room-items:hover,
.gt-product-card:hover,
.gt-listing-card:hover,
.gt-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

/* Section başlıkları için altın çizgi */
.gt-section-title h6::before {
    display: none;
}

.gt-section-title h6 img {
    filter: brightness(0) saturate(100%);
}

/* Koyu arka planlı bölümlerde SVG'leri beyaz yap */
.room-explore-section-2 .gt-section-title h6 img,
.gt-discount-section-2 .gt-section-title h6 img {
    filter: brightness(0) saturate(100%) invert(1);
}

/* Aktif İlan Sayısı - koyu kutu üzerinde beyaz */
.gt-about-wrapper-2 .gt-counter-box h2 {
    color: #fff !important;
}

/* Footer iyileştirmesi */
.footer-widget h4,
.footer-widget-title {
    color: #fff !important;
    border-bottom: 2px solid var(--gt-theme, #000000);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Preloader'ı hızlandır */
.preloader {
    animation: fadeOut 0.5s forwards;
    animation-delay: 0.8s;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========================================
   CTA / DISCOUNT SECTION
   Koyu gradyan overlay ile okunabilirlik
   ======================================== */

.gt-discount-section-2 {
    position: relative;
    background-color: #1C1C1C;
}

.gt-discount-section-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.92) 0%, rgba(35, 30, 25, 0.88) 50%, rgba(28, 28, 28, 0.92) 100%);
    z-index: 1;
}

.gt-discount-section-2>.container {
    position: relative;
    z-index: 2;
}

/* Discount içerik stilleri */
.gt-discount-section-2 .gt-section-title h2 {
    color: #fff !important;
}

.gt-discount-section-2 .gt-section-title h6 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.gt-discount-section-2 .text,
.gt-discount-section-2 p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Discount butonlar */
.gt-discount-section-2 .gt-theme-btn {
    background: var(--gt-theme, #000000) !important;
    border: 2px solid var(--gt-theme, #000000) !important;
}

.gt-discount-section-2 .gt-theme-btn:hover {
    background: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
}

/* Discount kutu stilleri */
.discount-left {
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discount-left.style-2 {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

/* YouTube Video Arkaplan */
.gt-discount-section-2 .video-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gt-discount-section-2 .video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ========================================
   GLASSMORPHISM EFEKTLER
   Aydınlık tema için - beyaz cam efekti
   ======================================== */

/* === 1. Fiyat Etiketi - Glassmorphism === */
.gt-room-box-items .gt-thumb .gt-post-box {
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    color: #fff !important;
}

/* === 2. Kategori Badge'leri - Glass Pills === */
/* Badge'ler beyaz arka plan üzerinde, orijinal stillerini koruyoruz */
.gt-room-box-items .gt-content .gt-post-cat {
    background: transparent !important;
    backdrop-filter: none;
    border: 1px solid var(--gt-header, #1C1C1C) !important;
    color: var(--gt-header, #1C1C1C) !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    transition: all 0.3s ease;
}

.gt-room-box-items .gt-content .gt-post-cat:hover {
    background: var(--gt-header, #1C1C1C) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.gt-room-box-items .gt-content .gt-post-cat.style-2 {
    background: var(--gt-theme, #000000) !important;
    border-color: var(--gt-theme, #000000) !important;
    color: #fff !important;
}

.gt-room-box-items .gt-content .gt-post-cat.style-2:hover {
    background: var(--gt-header, #1C1C1C) !important;
    border-color: var(--gt-header, #1C1C1C) !important;
}

/* === 3. Features Şeridi - Aydınlık Glass Kartlar === */
/* Features normalde koyu arka plan üzerinde, orijinal stili koruyoruz */
.gt-hotel-feature-items {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gt-hotel-feature-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* === 4. Scroll Indicator (Hero) === */
.scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gt-theme, #000000);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* === 5. Kart Hover Efekti Güçlendirme === */
.gt-room-box-items {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gt-room-box-items:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(0, 0, 0, 0.3);
}

/* === 6. Room Explore Slider - macOS Frosted Glass === */
.gt-room-explore-wrapper .gt-room-exlore-box-items,
.gt-room-exlore-box-items {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    /* Orijinal main.css gibi rahat spacing */
    padding: 32px !important;
}

.gt-room-explore-wrapper .gt-room-exlore-box-items ul,
.gt-room-exlore-box-items ul {
    margin-bottom: 16px !important;
}

.gt-room-explore-wrapper .gt-room-exlore-box-items ul li,
.gt-room-exlore-box-items ul li {
    padding: 6px 0 !important;
    line-height: 1.5 !important;
    font-size: 15px !important;
}

.gt-room-explore-wrapper .gt-room-exlore-box-items ul li:not(:last-child),
.gt-room-exlore-box-items ul li:not(:last-child) {
    margin-bottom: 8px !important;
}

/* Fiyat badge - beyaz yazı */
.gt-room-exlore-box-items .gt-post-box,
.gt-room-exlore-box-items .price-badge,
.gt-room-exlore-box-items .gt-price {
    color: #fff !important;
}

.gt-room-exlore-box-items .gt-post-box span,
.gt-room-exlore-box-items .gt-price span {
    color: #fff !important;
}

.gt-room-exlore-box-items h3,
.gt-room-exlore-box-items h4,
.gt-room-exlore-box-items .title,
.gt-room-exlore-box-items .title a {
    color: #1C1C1C !important;
}

.gt-room-exlore-box-items p,
.gt-room-exlore-box-items .gt-content-list li {
    color: #444 !important;
}

.gt-room-exlore-box-items .gt-content-list li strong {
    color: #1C1C1C !important;
}

/* === 7. Testimonial - KALDIRILDI (beyaz arka plan üzerinde) === */
/* Testimonial zaten normal çalışıyor, glass eklemeye gerek yok */

/* ========================================
   İLAN DETAY SAYFASI - GLASSMORPHISM
   macOS tarzı buzlu cam efektleri
   ======================================== */

/* === Sidebar Widget'ları - Frosted Glass === */
.gt-room-details .gt-single-sideber-widget {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.gt-room-details .gt-single-sideber-widget:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* === Fiyat Badge (Görsel üzerinde) - Glass === */
.gt-room-details .gt-price-badge {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #1C1C1C !important;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* === Tip Badge (Görsel üzerinde) - Glass === */
.gt-room-details .gt-type-badge {
    background: rgba(28, 28, 28, 0.75) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* === Tag'ler - Glass Pills === */
.gt-room-details .gt-tag {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.gt-room-details .gt-tag.primary {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gt-room-details .gt-tag.secondary {
    background: rgba(28, 28, 28, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gt-room-details .gt-tag.featured {
    background: rgba(25, 50, 95, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gt-room-details .gt-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* === Thumbnail Galeri - Glass Container === */
.gt-room-details .gt-thumbnail-gallery {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.gt-room-details .gt-thumb-item {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gt-room-details .gt-thumb-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* === Ana İçerik Kutusu - Hafif Glass === */
.gt-room-details .gt-room-content {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* === İletişim Kutusu - Premium Glass === */
.gt-room-details .service-details-contact-bg {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(40, 35, 30, 0.92) 100%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/* === Paylaş Butonları - Glass Hover === */
.gt-room-details .gt-share-btn {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gt-room-details .gt-share-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* === Özellikler Listesi İkon Hover === */
.gt-room-details .amenities-list li {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 8px;
}

.gt-room-details .amenities-list li:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

/* === Fiyat Kutusu İç Efekt === */
.gt-room-details .gt-price-box {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 25px 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/* === Ana Görsel Container - Subtle Shadow === */
.gt-room-details .room-image {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
}

.gt-room-details .room-image img {
    border-radius: 16px;
}

/* ========================================
   RESPONSIVE LOGO STYLES
   Tüm cihazlarda ölçeği koruyan logo
   ======================================== */

/* Logo Container */
.logo {
    display: flex;
    align-items: center;
}

.header-logo,
.header-logo-2 {
    display: flex;
    align-items: center;
}

/* Logo Icon + Text Wrapper */
.logo-icon-text {
    display: flex !important;
    align-items: center !important;
    gap: clamp(6px, 1.5vw, 12px) !important;
}

/* Logo Icon Responsive */
.logo-icon-text img {
    height: clamp(28px, 4vw, 45px) !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
}

/* Logo Text Responsive */
.logo-icon-text .logo-text,
.logo-text-only {
    font-size: 18px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Normal Logo Image - Desktop Boyutu */
.logo-img,
.header-logo>img,
.header-logo-2>img,
.logo-icon-text img {
    height: 40px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
}

/* Sadece Yazı Logo Stili */
.logo-text-only {
    display: inline-block;
    font-size: 20px;
    line-height: 1.2;
}

/* Sticky Header - Logo biraz küçülsün */
.header-1.sticky .logo-img,
.header-1.sticky .logo-icon-text img,
.header-1.sticky .header-logo>img,
.header-1.sticky .header-logo-2>img {
    height: 34px !important;
}

.header-1.sticky .logo-icon-text .logo-text,
.header-1.sticky .logo-text-only {
    font-size: 16px !important;
}

/* Tablet */
@media (max-width: 991px) {

    .logo-img,
    .logo-icon-text img,
    .header-logo>img,
    .header-logo-2>img {
        height: 36px !important;
    }

    .logo-icon-text .logo-text,
    .logo-text-only {
        font-size: 16px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header-main {
        position: relative;
    }

    /* Logo Ortalama */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Mobil Logo Boyutları */
    .logo-img,
    .logo-icon-text img,
    .header-logo>img,
    .header-logo-2>img {
        height: 30px !important;
    }

    .logo-icon-text {
        gap: 6px !important;
    }

    .logo-icon-text .logo-text,
    .logo-text-only {
        font-size: 14px !important;
    }
}

/* Offcanvas (Mobil Menü) Logo */
.offcanvas__logo img,
.offcanvas-logo img {
    height: clamp(30px, 5vw, 45px) !important;
    width: auto !important;
}

.offcanvas__logo .logo-icon-text img,
.offcanvas-logo .logo-icon-text img {
    height: 32px !important;
}

.offcanvas__logo .logo-icon-text .logo-text,
.offcanvas-logo .logo-icon-text .logo-text {
    font-size: 16px !important;
    color: #1a1a1a !important;
}

/* Footer Logo */
.footer-logo img,
.gt-footer-logo img {
    height: clamp(35px, 5vw, 50px) !important;
    width: auto !important;
}

.footer-logo .logo-icon-text img,
.gt-footer-logo .logo-icon-text img {
    height: 38px !important;
}

.footer-logo .logo-icon-text .logo-text,
.gt-footer-logo .logo-icon-text .logo-text {
    font-size: 18px !important;
}

/* ========================================
   HERO SECTION SUBTITLE - Beyaz Renk
   ======================================== */
.gt-hero-section.gt-hero-2 .container>div>span,
section.gt-hero-section.gt-hero-2.hero-video-section .container>div>span {
    color: #ffffff !important;
}

.gt-hero-section.gt-hero-2 .container>div>span svg,
section.gt-hero-section.gt-hero-2.hero-video-section .container>div>span svg {
    fill: #ffffff !important;
}

.gt-hero-section.gt-hero-2 .container>div>span svg path,
section.gt-hero-section.gt-hero-2.hero-video-section .container>div>span svg path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* IMG içinde yüklenen SVG'ler için filter */
.gt-hero-section.gt-hero-2 .container>div>span img,
section.gt-hero-section.gt-hero-2.hero-video-section .container>div>span img {
    filter: brightness(0) invert(1) !important;
}

/* ========================================
   HERO SHAPE BOTTOM - 4K+ Uyumluluk
   ======================================== */
.gt-hero-section .hero-shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.gt-hero-section .hero-shape-bottom img {
    width: 100% !important;
    min-width: 100vw !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center bottom !important;
}

/* ========================================
   APPLE-STYLE GLASSMORPHISM COMPONENTS
   Testimonials, FAQ, Filters, CTA, Footer
   ======================================== */

/* === TESTIMONIAL KARTLARI === */
.testimonial-box-2 {
    background: var(--glass-bg-light-solid, rgba(255, 255, 255, 0.92)) !important;
    backdrop-filter: var(--glass-blur-light) !important;
    -webkit-backdrop-filter: var(--glass-blur-light) !important;
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.18)) !important;
    border-radius: var(--radius-xl, 20px) !important;
    box-shadow: var(--shadow-md) !important;
    padding: 28px !important;
    transition: all var(--transition-smooth) !important;
}

.testimonial-box-2:hover {
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-4px) !important;
}

.testimonial-box-2 .star i {
    color: #fbbf24 !important;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.testimonial-box-2 .client-info {
    border-top: 1px solid var(--glass-border-dark, rgba(0, 0, 0, 0.06)) !important;
    padding-top: 16px !important;
    margin-top: 16px !important;
}

/* === FAQ ACCORDION - Ultra Specific Override === */
body .faq-section .accordion-item,
.faq-section .faq-items .accordion-item,
.faq-section .accordion .accordion-item {
    background: #fff !important;
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

body .faq-section .accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

/* Accordion Button - HER DURUMDA koyu yazı */
body .faq-section .accordion-button,
body .faq-section .accordion-item .accordion-button,
body .faq-section .accordion-header .accordion-button,
.faq-section .accordion-item .accordion-header .accordion-button {
    background: #fff !important;
    background-color: #fff !important;
    padding: 20px 24px !important;
    font-weight: 500 !important;
    color: #1C1C1C !important;
    border: none !important;
    box-shadow: none !important;
}

/* Açık durum - yazı hala koyu kalacak */
body .faq-section .accordion-button:not(.collapsed),
body .faq-section .accordion-item .accordion-button:not(.collapsed),
.faq-section .accordion-header .accordion-button:not(.collapsed) {
    background: #f5f5f5 !important;
    background-color: #f5f5f5 !important;
    color: #1C1C1C !important;
    box-shadow: none !important;
}

body .faq-section .accordion-button:focus,
.faq-section .accordion-item .accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* Accordion icon - siyah olacak */
body .faq-section .accordion-button::after,
.faq-section .accordion-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C1C1C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

body .faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C1C1C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

body .faq-section .accordion-body,
.faq-section .accordion-item .accordion-body {
    padding: 0 24px 20px !important;
    background: #f5f5f5 !important;
    background-color: #f5f5f5 !important;
    color: #444 !important;
}

/* === FİLTRE PANELİ - Clean Grid Redesign === */
.gt-booking-reserve-wrapper {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px !important;
    padding: 28px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
}

/* CSS Grid - 8 eşit sütun */
.gt-booking-reserve-wrapper .row {
    display: grid !important;
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 12px !important;
    align-items: stretch !important;
}

/* Her kolon eşit genişlik */
.gt-booking-reserve-wrapper .row>.col,
.gt-booking-reserve-wrapper .row>[class*="col-"] {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

/* Form Field Container - Eşit boyut */
.gt-booking-reserve-wrapper .form-clt {
    background: #f5f5f5 !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    border: 1px solid transparent !important;
    transition: all 0.2s ease !important;
    height: 68px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.gt-booking-reserve-wrapper .form-clt:hover,
.gt-booking-reserve-wrapper .form-clt:focus-within {
    background: #fff !important;
    border-color: #1C1C1C !important;
}

/* Label - Küçük ve tutarlı */
.gt-booking-reserve-wrapper .form-clt>span:first-child {
    color: #888 !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 4px !important;
    display: block !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

/* Input değerleri */
.gt-booking-reserve-wrapper input[type="number"] {
    background: transparent !important;
    border: none !important;
    color: #1C1C1C !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    width: 100% !important;
    outline: none !important;
    height: 22px !important;
    line-height: 22px !important;
}

.gt-booking-reserve-wrapper input::placeholder {
    color: #aaa !important;
}

/* Nice Select - Doğru hizalama */
.gt-booking-reserve-wrapper .nice-select {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    padding-right: 20px !important;
    height: 22px !important;
    line-height: 22px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #1C1C1C !important;
    width: 100% !important;
    float: none !important;
}

.gt-booking-reserve-wrapper .nice-select .current {
    color: #1C1C1C !important;
    display: block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.gt-booking-reserve-wrapper .nice-select::after {
    border-color: #888 !important;
    right: 4px !important;
    top: 50% !important;
    margin-top: -3px !important;
}

.gt-booking-reserve-wrapper .nice-select .list {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    margin-top: 8px !important;
    width: 100% !important;
    min-width: 150px !important;
}

.gt-booking-reserve-wrapper .nice-select .option {
    color: #1C1C1C !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
}

.gt-booking-reserve-wrapper .nice-select .option:hover,
.gt-booking-reserve-wrapper .nice-select .option.selected {
    background: #f5f5f5 !important;
}

/* ARA Butonu - Aynı yükseklik */
.gt-booking-reserve-wrapper .gt-theme-btn {
    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    padding: 0 20px !important;
    border-radius: 12px !important;
}

/* Section Title */
.gt-booking.section-bg-3 .gt-section-title h2 {
    color: #1C1C1C !important;
    font-size: 28px !important;
    margin-bottom: 20px !important;
}

/* Section Background */
.gt-booking.section-bg-3 {
    background: #f0f0f0 !important;
}

/* === RESPONSIVE === */

/* Tablet - 4 sütun */
@media (max-width: 1199px) {
    .gt-booking-reserve-wrapper .row {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Small Tablet - 3 sütun */
@media (max-width: 991px) {
    .gt-booking-reserve-wrapper {
        padding: 20px !important;
    }

    .gt-booking-reserve-wrapper .row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
}

/* Mobile - 2 sütun */
@media (max-width: 767px) {
    .gt-booking-reserve-wrapper .row {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .gt-booking-reserve-wrapper .form-clt,
    .gt-booking-reserve-wrapper .gt-theme-btn {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
    }
}

/* Small Mobile - 1 sütun */
@media (max-width: 480px) {
    .gt-booking-reserve-wrapper .row {
        grid-template-columns: 1fr !important;
    }
}

/* === CTA / DISCOUNT SECTION === */
.gt-discount-section-2 .gt-discount-wrapper {
    position: relative;
}

.gt-discount-section-2 .discount-left {
    background: var(--glass-bg-dark-solid, rgba(28, 28, 28, 0.75)) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: 1px solid var(--glass-border-subtle) !important;
    border-radius: var(--radius-xl, 20px) !important;
    padding: 40px !important;
    transition: all var(--transition-smooth) !important;
}

.gt-discount-section-2 .discount-left:hover {
    background: var(--glass-bg-dark-solid, rgba(28, 28, 28, 0.85)) !important;
    border-color: var(--glass-border) !important;
}

/* === FOOTER === */
.gt-footer-section .footer-widget-items {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: var(--glass-blur-light) !important;
    -webkit-backdrop-filter: var(--glass-blur-light) !important;
    border: 1px solid var(--glass-border-subtle) !important;
    border-radius: var(--radius-lg, 16px) !important;
    padding: 24px !important;
    transition: all var(--transition-smooth) !important;
}

.gt-footer-section .footer-widget-items:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--glass-border) !important;
}

.gt-footer-section .footer-bottom {
    border-top: 1px solid var(--glass-border-subtle) !important;
    background: rgba(0, 0, 0, 0.2) !important;
}

.gt-footer-section .gt-social-icon a {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--glass-border-subtle) !important;
    border-radius: var(--radius-full) !important;
    transition: all var(--transition-smooth) !important;
}

.gt-footer-section .gt-social-icon a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--glass-border) !important;
    transform: translateY(-3px) !important;
}

/* === GENEL BUTONLAR - Apple Style === */
.gt-theme-btn {
    position: relative !important;
    background: var(--gt-header, #1C1C1C) !important;
    border: none !important;
    border-radius: var(--radius-full, 50px) !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    box-shadow: var(--shadow-md), var(--glow-button) !important;
    transition: all var(--transition-smooth) !important;
    overflow: hidden !important;
}

.gt-theme-btn::before {
    border-radius: var(--radius-full) !important;
}

.gt-theme-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(0, 0, 0, 0.25) !important;
}

.gt-theme-btn:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Border Style Button */
.gt-theme-btn.gt-border-style {
    background: transparent !important;
    border: 2px solid var(--gt-header, #1C1C1C) !important;
    color: var(--gt-header, #1C1C1C) !important;
    box-shadow: none !important;
}

.gt-theme-btn.gt-border-style:hover {
    background: var(--gt-header, #1C1C1C) !important;
    color: #fff !important;
    box-shadow: var(--shadow-md) !important;
}

/* === SAYFALAMA - Glass Style === */
.gt-pagination .page-link {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: var(--glass-blur-light) !important;
    -webkit-backdrop-filter: var(--glass-blur-light) !important;
    border: 1px solid var(--glass-border-subtle) !important;
    border-radius: var(--radius-md) !important;
    transition: all var(--transition-smooth) !important;
}

.gt-pagination .page-link:hover,
.gt-pagination .page-item.active .page-link {
    background: var(--gt-header, #1C1C1C) !important;
    border-color: var(--gt-header, #1C1C1C) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-sm) !important;
}

/* === ROOM EXPLORE SLIDER BOX - White Glass === */
.gt-room-exlore-box-items {
    background: var(--glass-bg-light-solid, rgba(255, 255, 255, 0.95)) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: 1px solid var(--glass-border-dark, rgba(0, 0, 0, 0.08)) !important;
    border-radius: var(--radius-xl, 20px) !important;
    padding: 32px !important;
    box-shadow: var(--shadow-lg) !important;
}

/* Room Explore içerik renkleri - Siyah text */
.gt-room-exlore-box-items .gt-rate-title {
    background: var(--gt-header, #1C1C1C) !important;
    color: #fff !important;
}

.gt-room-exlore-box-items h3,
.gt-room-exlore-box-items h3 a {
    color: var(--gt-header, #1C1C1C) !important;
}

.gt-room-exlore-box-items p {
    color: #555 !important;
}

.gt-room-exlore-box-items ul li {
    color: var(--gt-header, #1C1C1C) !important;
}

.gt-room-exlore-box-items ul li span {
    color: #666 !important;
}

/* === SECTION TITLE SUBTLE STYLING === */
.gt-section-title h6 {
    letter-spacing: 2px !important;
}

/* === NICE-SELECT GLASS STYLING === */
.nice-select {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid var(--glass-border-subtle) !important;
    border-radius: var(--radius-md) !important;
    transition: all var(--transition-fast) !important;
}

.nice-select:hover,
.nice-select.open {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--glass-border) !important;
}

.nice-select .list {
    background: var(--glass-bg-dark-solid) !important;
    backdrop-filter: var(--glass-blur-heavy) !important;
    -webkit-backdrop-filter: var(--glass-blur-heavy) !important;
    border: 1px solid var(--glass-border-subtle) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-xl) !important;
    margin-top: 8px !important;
}

.nice-select .option:hover,
.nice-select .option.selected {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* ========================================
   MOBİL UYUMLULUK DÜZELTMELERİ
   Aşırı scroll'u azaltmak için optimizasyon
   ======================================== */

@media (max-width: 767px) {

    /* === 1. GLOBAL SECTION PADDING === */
    .section-padding,
    section.section-padding {
        padding: 50px 0 !important;
    }

    .section-padding.pt-0 {
        padding-top: 0 !important;
    }

    .section-padding.pb-0 {
        padding-bottom: 0 !important;
    }

    /* === 2. BAŞLIK FONT BOYUTLARI === */
    h1,
    .gt-section-title h1,
    .gt-hero-content h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    h2,
    .gt-section-title h2 {
        font-size: 26px !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }

    h3 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    h4 {
        font-size: 18px !important;
    }

    /* Section subtitles */
    .gt-section-title h6 {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    /* =============================================
       3. İLAN KARTLARI - RESPONSIVE TASARIM
       ============================================= */

    /* Grid - 2 sütun (Slider ve Detay sayfası hariç!) */
    .gt-room-section .row,
    .gt-room-section-2 .row,
    section[class*="room"]:not(.room-explore-section-2):not(.gt-room-details) .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 15px !important;
    }

    /* Öne Çıkan İlanlar Slider - Grid uygulama (tek sütun) */
    .room-explore-section-2 .row,
    .gt-room-explore-wrapper .row {
        display: flex !important;
        grid-template-columns: unset !important;
    }

    /* İlan Detay Sayfası - TEK SÜTUN */
    .gt-room-details .row,
    section.gt-room-details .row {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
    }

    .gt-room-section .col,
    .gt-room-section-2 .col,
    section[class*="room"] .row>[class*="col"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* Kart container */
    .gt-room-box-items {
        border-radius: 12px !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
    }

    /* Görsel - büyük ve net */
    .gt-room-box-items .gt-thumb {
        height: 140px !important;
        border-radius: 12px 12px 0 0 !important;
    }

    /* Fiyat Badge */
    .gt-room-box-items .gt-thumb .gt-post-box {
        font-size: 10px !important;
        padding: 4px 8px !important;
        top: 8px !important;
        right: 8px !important;
        border-radius: 6px !important;
    }

    /* İçerik alanı */
    .gt-room-box-items .gt-content {
        padding: 12px !important;
    }

    /* === KATEGORİ ETİKETLERİ - OKUNABİLİR === */

    /* Etiket container */
    .gt-room-box-items .gt-content .gt-post-tags {
        gap: 5px !important;
        margin-bottom: 8px !important;
    }

    /* SATILIK/KİRALIK - Outline etiket */
    .gt-room-box-items .gt-content .gt-post-cat {
        font-size: 11px !important;
        padding: 4px 10px !important;
        border-radius: 4px !important;
        letter-spacing: 0 !important;
    }

    /* VİLLA/DAİRE/ARSA - Dolu etiket */
    .gt-room-box-items .gt-content .gt-post-cat.style-2 {
        font-size: 11px !important;
        padding: 4px 10px !important;
        border-radius: 4px !important;
    }

    /* Başlık - EN BÜYÜK, okunabilir (+15%) */
    .gt-room-box-items .gt-content h3 {
        font-size: 16px !important;
        margin-bottom: 6px !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        font-weight: 600 !important;
    }

    .gt-room-box-items .gt-content h3 a {
        font-size: inherit !important;
    }

    /* Konum - rahat okuma */
    .gt-room-box-items .gt-content .gt-location-text {
        font-size: 12px !important;
        margin-bottom: 0 !important;
        color: #666 !important;
    }

    .gt-room-box-items .gt-content .gt-location-text i {
        font-size: 10px !important;
        margin-right: 4px !important;
    }

    /* Özellikler - Gizle (yer tasarrufu) */
    .gt-room-box-items .gt-content .gt-list {
        display: none !important;
    }

    /* DETAY GÖR Link - Düzgün hizalama */
    .gt-room-box-items .gt-content .gt-link-btn {
        font-size: 11px !important;
        padding: 4px 0 !important;
        /* Sol padding yok - konum ile hizalı */
        margin-top: 6px !important;
        display: inline-block !important;
    }

    /* Room Explore Slider Cards - Öne Çıkan İlanlar */
    /* padding: ana dizindeki gibi 32px korunuyor, sadece mobil font boyutları */
    .gt-room-exlore-box-items h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .gt-room-exlore-box-items p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }

    .gt-room-exlore-box-items ul li {
        font-size: 14px !important;
        padding: 6px 0 !important;
        line-height: 1.4 !important;
    }

    .gt-room-exlore-box-items .gt-theme-btn {
        padding: 14px 28px !important;
        font-size: 13px !important;
        margin-top: 16px !important;
    }

    /* =============================================
       HİZMETLERİMİZ - 2x2 Grid + Glassmorphism
       ============================================= */

    /* Grid container - 2x2 */
    .gt-hotel-feature-section-2 .gt-hotel-feature-area {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 15px !important;
    }

    /* Kartlar - Glassmorphism */
    .gt-hotel-feature-section-2 .gt-hotel-feature-items {
        background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(15px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        border-radius: 16px !important;
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
        padding: 16px !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
    }

    .gt-hotel-feature-section-2 .gt-hotel-feature-items:hover {
        transform: translateY(-3px) !important;
        box-shadow:
            0 8px 30px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    }

    /* İkon büyüklüğü */
    .gt-hotel-feature-section-2 .gt-hotel-feature-items i {
        font-size: 28px !important;
        color: #000000 !important;
        margin-bottom: 10px !important;
        display: block !important;
    }

    /* Başlık */
    .gt-hotel-feature-section-2 .gt-hotel-feature-items h3,
    .gt-hotel-feature-section-2 .gt-hotel-feature-items .content h3 {
        font-size: 13px !important;
        margin-bottom: 4px !important;
        color: #1C1C1C !important;
        line-height: 1.3 !important;
    }

    /* Açıklama */
    .gt-hotel-feature-section-2 .gt-hotel-feature-items p,
    .gt-hotel-feature-section-2 .gt-hotel-feature-items .content p {
        font-size: 11px !important;
        color: #666 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }

    /* =============================================
       İLAN DETAY SAYFASI - MOBİL DÜZELTMELER
       ============================================= */

    /* Ana Container - Tek sütun layout */
    .gt-room-details .row,
    .listing-detail-row,
    .gt-room-details-wrapper .row {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Sol içerik - Tam genişlik */
    .gt-room-details .col-lg-8,
    .gt-room-details .col-xl-8,
    .gt-room-details-wrapper .col-lg-8,
    .listing-main-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 15px !important;
    }

    /* Sağ sidebar - Tam genişlik, ana içerikten sonra */
    .gt-room-details .col-lg-4,
    .gt-room-details .col-xl-4,
    .gt-room-details-wrapper .col-lg-4,
    .listing-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 15px !important;
        order: 2 !important;
        margin-top: 24px !important;
    }

    /* Hero/Galeri - Tam genişlik */
    .gt-room-details .room-image,
    .listing-gallery,
    .gt-room-details-wrapper .room-image,
    .property-gallery {
        width: 100% !important;
        margin: 0 !important;
    }

    .gt-room-details .room-image img,
    .listing-gallery img,
    .property-gallery img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
    }

    /* Galeri thumbnails */
    .gallery-thumbs,
    .room-thumb-items {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
        margin-top: 12px !important;
    }

    .gallery-thumbs img,
    .room-thumb-items img {
        width: 100% !important;
        height: 60px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    /* Başlık */
    .gt-room-details h1,
    .gt-room-details-wrapper h1,
    .listing-title h1 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .gt-room-details h2,
    .gt-room-details-wrapper h2 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    /* =============================================
       ANASAYFA UYUMLU - macOS/iOS Glassmorphism
       Mission/Vision kart stili, multi-layer shadows
       ============================================= */

    /* Gradient page background - like homepage */
    .gt-room-details,
    .gt-room-details-wrapper {
        background: linear-gradient(180deg, #e8f4fc 0%, #ffffff 30%, #f8f8f8 100%) !important;
    }

    /* Main content area - glassmorphic container */
    .gt-room-details .gt-room-content,
    .gt-room-content {
        background: rgba(255, 255, 255, 0.92) !important;
        backdrop-filter: blur(20px) saturate(1.6) !important;
        -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
        border-radius: 24px !important;
        padding: 24px !important;
        border: 0.8px solid rgba(0, 0, 0, 0.06) !important;
        /* Multi-layer shadow like homepage */
        box-shadow:
            0 8px 16px rgba(0, 0, 0, 0.04),
            0 16px 32px rgba(0, 0, 0, 0.03),
            0 32px 64px rgba(0, 0, 0, 0.02) !important;
    }

    /* Parent col'ları tam genişlik yap */
    .gt-room-details .row>[class*="col"],
    .gt-room-details .gt-room-content .row>div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
    }

    /* Section başlıkları - Larger Gilda Display */
    .gt-room-details h3,
    .gt-room-details h4,
    .gt-room-details .section-title,
    .gt-room-details .gt-list h4 {
        font-family: 'Gilda Display', serif !important;
        font-size: 24px !important;
        font-weight: 400 !important;
        color: #1a1a1a !important;
        margin-bottom: 20px !important;
        letter-spacing: 0.5px !important;
    }

    /* UL.chack-list - 2-Column GRID */
    .gt-room-details ul.chack-list,
    ul.chack-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 0 28px 0 !important;
        width: 100% !important;
    }

    /* LI - GLASSMORPHIC CARDS (Mission/Vision style) */
    .gt-room-details ul.chack-list li,
    ul.chack-list li {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        padding: 18px !important;
        /* Glassmorphism - exact homepage specs */
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) saturate(1.8) !important;
        -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
        border-radius: 16px !important;
        border: 0.8px solid rgba(0, 0, 0, 0.06) !important;
        /* Multi-layer shadow */
        box-shadow:
            0 8px 16px rgba(0, 0, 0, 0.04),
            0 16px 32px rgba(0, 0, 0, 0.03) !important;
        min-height: 80px !important;
        transition: all 0.3s ease !important;
    }

    /* SYMMETRY FIX - Last odd item spans full width */
    .gt-room-details ul.chack-list li:last-child:nth-child(odd),
    ul.chack-list li:last-child:nth-child(odd) {
        grid-column: span 2 !important;
        text-align: center !important;
        align-items: center !important;
    }

    /* Hover effect - lift and glow */
    .gt-room-details ul.chack-list li:hover,
    ul.chack-list li:hover {
        transform: translateY(-3px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow:
            0 12px 24px rgba(0, 0, 0, 0.06),
            0 24px 48px rgba(0, 0, 0, 0.04) !important;
    }

    /* Etiketler - Barlow Uppercase */
    ul.chack-list li span:first-child,
    ul.chack-list li .feature-label {
        font-family: 'Barlow', sans-serif !important;
        font-size: 10px !important;
        text-transform: uppercase !important;
        letter-spacing: 1.5px !important;
        color: #888 !important;
        margin-bottom: 6px !important;
        display: block !important;
    }

    /* Değerler - Bold */
    ul.chack-list li span:last-child,
    ul.chack-list li strong,
    ul.chack-list li .feature-value {
        font-family: 'Barlow', sans-serif !important;
        font-size: 17px !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
    }

    /* =============================================
       EK ÖZELLİKLER - Vertical Layout Like Özellikler
       ============================================= */

    .gt-room-details .gt-list .gt-list-content,
    .gt-list-content {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .gt-list-content ul {
        display: contents !important;
    }

    /* Vertical card layout - like Özellikler */
    .gt-list-content ul li,
    .ek-ozellikler li {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 18px 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Same glassmorphism as Özellikler */
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) saturate(1.8) !important;
        -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
        border-radius: 16px !important;
        border: 0.8px solid rgba(0, 0, 0, 0.06) !important;
        /* Multi-layer shadow like Özellikler */
        box-shadow:
            0 8px 16px rgba(0, 0, 0, 0.04),
            0 16px 32px rgba(0, 0, 0, 0.03) !important;
        /* Fixed height for equal cards */
        height: 100px !important;
        min-height: 100px !important;
        transition: all 0.3s ease !important;
    }

    .gt-list-content ul li:hover,
    .ek-ozellikler li:hover {
        background: rgba(255, 255, 255, 0.95) !important;
        transform: translateY(-3px) !important;
        box-shadow:
            0 12px 24px rgba(0, 0, 0, 0.06),
            0 24px 48px rgba(0, 0, 0, 0.04) !important;
    }

    /* Symmetry fix for Ek Özellikler */
    .gt-list-content ul li:last-child:nth-child(odd),
    .ek-ozellikler li:last-child:nth-child(odd) {
        grid-column: span 2 !important;
    }

    /* Icon styling - on top like label in Özellikler */
    .gt-list-content ul li i,
    .ek-ozellikler li i {
        width: 36px !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f8f8f8 !important;
        border-radius: 10px !important;
        color: #1a1a1a !important;
        font-size: 16px !important;
        margin: 0 auto 10px auto !important;
        flex-shrink: 0 !important;
    }

    /* Feature text - centered below icon */
    .gt-list-content ul li span,
    .ek-ozellikler li span {
        font-family: 'Barlow', sans-serif !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #1a1a1a !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 10px !important;
    }

    /* Icon inside span - centered with auto margins */
    .gt-list-content ul li span i,
    .ek-ozellikler li span i {
        width: 36px !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f8f8f8 !important;
        border-radius: 10px !important;
        color: #1a1a1a !important;
        font-size: 16px !important;
        margin: 0 auto !important;
        order: -1 !important;
    }

    /* Açıklama - Clean typography */
    .gt-room-details .gt-room-content p,
    .gt-room-details .gt-description-content,
    .listing-description p {
        font-family: 'Barlow', sans-serif !important;
        font-size: 15px !important;
        line-height: 1.8 !important;
        color: #434343 !important;
    }

    /* =============================================
       SIDEBAR WIDGET'LAR - Glassmorphic Cards
       ============================================= */
    .gt-room-details .gt-single-sideber-widget,
    .gt-room-details .gt-main-sideber,
    .listing-sidebar .widget {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(20px) saturate(1.6) !important;
        -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
        border-radius: 20px !important;
        padding: 24px !important;
        margin-bottom: 16px !important;
        border: 0.8px solid rgba(0, 0, 0, 0.06) !important;
        box-shadow:
            0 8px 16px rgba(0, 0, 0, 0.04),
            0 16px 32px rgba(0, 0, 0, 0.03) !important;
    }

    /* Sidebar Başlıklar - Black on light */
    .gt-room-details .gt-single-sideber-widget h3,
    .gt-room-details .gt-single-sideber-widget h4,
    .gt-room-details .gt-widget-title h3,
    .listing-sidebar .widget h4 {
        font-family: 'Gilda Display', serif !important;
        font-size: 20px !important;
        color: #1a1a1a !important;
        margin-bottom: 16px !important;
        padding-bottom: 12px !important;
        border-bottom: 0.8px solid rgba(0, 0, 0, 0.08) !important;
    }

    /* Fiyat Kutusu - Glassmorphic (like other cards) */
    .gt-room-details .gt-price-box,
    .gt-room-details .price-box,
    .listing-sidebar .price-widget {
        text-align: center !important;
        padding: 24px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) saturate(1.8) !important;
        -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
        border-radius: 16px !important;
        border: 0.8px solid rgba(0, 0, 0, 0.06) !important;
        box-shadow:
            0 8px 16px rgba(0, 0, 0, 0.04),
            0 16px 32px rgba(0, 0, 0, 0.03) !important;
    }

    /* Fiyat Yazısı - Black on light */
    .gt-room-details .gt-big-price,
    .gt-room-details .price-box .price {
        font-family: 'Gilda Display', serif !important;
        font-size: 32px !important;
        font-weight: 400 !important;
        color: #1a1a1a !important;
        letter-spacing: 0.5px !important;
    }
}

.gt-room-details .price-box .price,
.listing-sidebar .price-widget .price {
    font-family: 'Gilda Display', serif !important;
    font-size: 32px !important;
    font-weight: 400 !important;
    color: #fff !important;
}

.gt-room-details .price-box .price-label,
.listing-sidebar .price-widget .price-label {
    font-family: 'Barlow', sans-serif !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 4px !important;
}

/* İletişim Butonları - Premium */
.gt-room-details .contact-buttons,
.listing-sidebar .contact-btn {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.gt-room-details .contact-buttons a,
.listing-sidebar .contact-btn a {
    width: 100% !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
}

/* Ara butonu - Siyah */
.gt-room-details .contact-buttons .call-btn,
.listing-sidebar .call-btn {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
}

/* WhatsApp butonu */
.listing-sidebar .whatsapp-btn,
.gt-room-details .whatsapp-btn {
    background: #25D366 !important;
    color: #fff !important;
}

/* Sticky bottom bar - Düzeltilmiş */
.listing-sticky-bar,
.bottom-sticky-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(28, 28, 28, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    padding: 12px 16px !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Kat planları - Kompakt */
.floor-plans,
.gt-room-details .floor-plan-section {
    overflow-x: auto !important;
}

.floor-plans img,
.gt-room-details .floor-plan-section img {
    max-width: 100% !important;
    height: auto !important;
}

/* Body padding - sticky bar için */
body.listing-detail-page {
    padding-bottom: 80px !important;
}
}

/* =============================================
   TABLET BREAKPOINT (768px - 991px)
   ============================================= */
@media (min-width: 768px) and (max-width: 991px) {

    /* Grid - 2 sütun tablet */
    .gt-room-section .row,
    .gt-room-section-2 .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }

    /* Görsel */
    .gt-room-box-items .gt-thumb {
        height: 180px !important;
    }

    /* İçerik */
    .gt-room-box-items .gt-content {
        padding: 16px !important;
    }

    /* Badge'ler */
    .gt-room-box-items .gt-content .gt-post-cat {
        font-size: 10px !important;
        padding: 4px 12px !important;
    }

    /* Başlık (+15%) */
    .gt-room-box-items .gt-content h3 {
        font-size: 18px !important;
    }

    /* Konum */
    .gt-room-box-items .gt-content .gt-location-text {
        font-size: 13px !important;
    }
}

/* === 4. ABOUT SECTION GÖRSELLERİ === */
.gt-about-image img,
.about-image img,
.gt-about-section img {
    max-height: 280px !important;
    object-fit: cover !important;
    width: 100% !important;
}

.gt-about-image,
.about-image-wrapper {
    margin-bottom: 24px !important;
}

/* About content spacing */
.gt-about-content {
    padding: 0 !important;
}

.gt-about-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* Feature boxes in about */
.gt-service-items,
.gt-feature-box {
    padding: 16px !important;
    margin-bottom: 12px !important;
}

/* === 5. CTA / DISCOUNT KUTUSU === */
.discount-left,
.gt-discount-wrapper .discount-left {
    padding: 24px !important;
}

.discount-left h2 {
    font-size: 24px !important;
    margin-bottom: 12px !important;
}

.discount-left p {
    font-size: 14px !important;
    margin-bottom: 16px !important;
}

/* === 6. FAQ ACCORDION === */
body .faq-section .accordion-button {
    padding: 14px 18px !important;
    font-size: 15px !important;
}

body .faq-section .accordion-body {
    padding: 0 18px 16px !important;
    font-size: 14px !important;
}

.faq-section .accordion-item {
    margin-bottom: 8px !important;
}

/* === 7. TESTIMONIALS === */
.testimonial-box-2 {
    padding: 20px !important;
}

.testimonial-box-2 p {
    font-size: 14px !important;
}

/* === 8. FOOTER === */
.footer-widget-items {
    padding: 20px !important;
    margin-bottom: 16px !important;
}

.footer-widget-items h4 {
    font-size: 18px !important;
    margin-bottom: 16px !important;
}

.footer-widget-items ul li {
    padding: 6px 0 !important;
    font-size: 14px !important;
}

/* === 9. HERO SECTION === */
.gt-hero-content {
    padding-top: 100px !important;
}

.gt-hero-content p {
    font-size: 14px !important;
    margin-top: 12px !important;
}

/* Hero butonları 2x2 yan yana */
.gt-hero-button {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 24px !important;
}

.gt-hero-button .gt-theme-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 16px !important;
    font-size: 12px !important;
}

/* === 9B. MİSYON/VİZYON - Kompakt Horizontal Tasarım === */
.about-content-icon {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.about-content-icon .gt-icon-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 16px !important;
    margin-bottom: 0 !important;
    background: #f8f8f8 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.about-content-icon .gt-icon-box .icon {
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #1C1C1C !important;
    border-radius: 10px !important;
}

.about-content-icon .gt-icon-box .icon i,
.about-content-icon .gt-icon-box .icon svg {
    color: #fff !important;
    fill: #fff !important;
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
}

.about-content-icon .gt-icon-box .content {
    flex: 1 !important;
}

.about-content-icon .gt-icon-box h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
    color: #1C1C1C !important;
}

.about-content-icon .gt-icon-box p {
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    color: #666 !important;
}

/* === 9C. HAKKIMIZDA - TEK GÖRSEL === */
.gt-about-right-image {
    display: none !important;
}

.gt-about-images {
    width: 100% !important;
    margin-bottom: 20px !important;
}

.gt-about-images img {
    border-radius: 16px !important;
    max-height: 220px !important;
    object-fit: cover !important;
}

/* === 10. GENEL MARGIN/PADDING AZALTMA === */
.mb-5 {
    margin-bottom: 2rem !important;
}

.mt-5 {
    margin-top: 2rem !important;
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Row gaps */
.row.g-4 {
    --bs-gutter-y: 1rem !important;
}

.row.g-5 {
    --bs-gutter-y: 1.5rem !important;
}

/* === 11. BUTONLAR === */
.gt-theme-btn {
    padding: 14px 24px !important;
    font-size: 14px !important;
}

/* === 12. SERVICE/FACILITY CARDS === */
.gt-service-box,
.gt-facility-item {
    padding: 20px !important;
    margin-bottom: 12px !important;
}

/* === 13. BLOG CARDS === */
.gt-blog-items .gt-content {
    padding: 16px !important;
}

.gt-blog-items h3 {
    font-size: 17px !important;
}

/* === 14. SLIDER NAV ARROWS === */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
}

/* ========================================
   SIDEBAR PNG ICONS - GRAYSCALE FILTER
   Convert gold icons to black/white
   ======================================== */

/* Sidebar Özellikler listesindeki PNG ikonları siyah-beyaz */
.amenities-list li img,
.gt-single-sideber-widget .amenities-list img,
.gt-main-sideber .amenities-list img,
img[src*="bed.png"],
img[src*="icon-1.png"],
img[src*="icon-2.png"],
img[src*="icon-3.png"],
img[src*="car.png"] {
    filter: grayscale(100%) brightness(0.2) !important;
    -webkit-filter: grayscale(100%) brightness(0.2) !important;
    opacity: 0.9 !important;
}

/* =============================================
   EK ÖZELLİKLER - MASAÜSTÜ PREMIUM TASARIM
   Misyon/Vizyon kartları tarzında
   ============================================= */

/* Section wrapper */
.extra-features-section {
    margin-top: 32px;
    margin-bottom: 32px;
}

/* Section başlığı */
.extra-features-section .section-heading {
    font-family: 'Gilda Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Grid layout - 3 sütun masaüstü */
.extra-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Her bir özellik kartı */
.extra-features-section .feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #f9f9f9;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

/* Hover efekti */
.extra-features-section .feature-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* İkon kutusu - Misyon/Vizyon tarzı */
.extra-features-section .feature-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #1C1C1C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* İkon */
.extra-features-section .feature-icon-box i {
    color: #ffffff;
    font-size: 20px;
}

/* Hover'da ikon kutusu */
.extra-features-section .feature-card:hover .feature-icon-box {
    background: #000000;
    transform: scale(1.05);
}

/* Özellik adı */
.extra-features-section .feature-content .feature-name {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Tablet - 2 sütun */
@media (max-width: 991px) {
    .extra-features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .extra-features-section .feature-card {
        padding: 16px 18px;
    }

    .extra-features-section .feature-icon-box {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .extra-features-section .feature-icon-box i {
        font-size: 18px;
    }

    .extra-features-section .feature-content .feature-name {
        font-size: 14px;
    }
}

/* Mobil - Tek sütun */
@media (max-width: 575px) {
    .extra-features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .extra-features-section .feature-card {
        padding: 14px 16px;
    }

    .extra-features-section .feature-icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }

    .extra-features-section .feature-icon-box i {
        font-size: 16px;
    }

    .extra-features-section .feature-content .feature-name {
        font-size: 13px;
    }

    .extra-features-section .section-heading {
        font-size: 22px;
        margin-bottom: 18px;
    }
}

/* ========================================
   PREMIUM TYPOGRAPHY - Gilda Display Fonts
   Global Homepage Section Styles
   ======================================== */

/* Hero Section Typography */
.gt-hero-content h1,
.gt-hero-section h1,
.hero-content h1 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
}

.gt-hero-content span,
.gt-hero-section .gt-hero-content>span {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.gt-hero-content p,
.gt-hero-section p {
    font-family: 'Barlow', sans-serif !important;
}

/* Section Titles - Premium Typography */
.gt-section-title h2 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px !important;
    color: #1a1a1a;
}

.gt-section-title h6,
.gt-section-title .sub-title,
.gt-section-title span {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 12px !important;
}

/* About Section - Minimal fixes only */
/* Title color fix */
.gt-about-section-2 .gt-section-title h2 {
    font-family: 'Gilda Display', serif !important;
    color: #1a1a1a !important;
}

/* Fix WOW.js animation hiding elements */
.gt-about-section-2 .wow {
    visibility: visible !important;
    opacity: 1 !important;
}

.gt-about-section-2 .gt-about-right-image,
.gt-about-section-2 .gt-about-image,
.gt-about-section-2 .col-lg-5 {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Icon box styling */
.gt-icon-box {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.gt-icon-box h3 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
    font-size: 22px !important;
    color: #1a1a1a !important;
}

.gt-icon-box p {
    font-family: 'Barlow', sans-serif !important;
    color: #666 !important;
}

.gt-counter-box h2 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
}

.gt-counter-box h4 {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
}

/* Room/Listing Cards */
.gt-room-single h4,
.gt-room-single h3,
.room-card h4 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
}

.gt-room-single p,
.room-card p {
    font-family: 'Barlow', sans-serif !important;
}

/* FAQ Section */
.accordion-button,
.faq-item .question {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 600 !important;
}

.accordion-body,
.faq-item .answer {
    font-family: 'Barlow', sans-serif !important;
}

/* Testimonials */
.testimonial-content p,
.gt-testimonial-item p {
    font-family: 'Barlow', sans-serif !important;
    font-style: italic;
}

.testimonial-author h5,
.gt-testimonial-item h5 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
}

/* Footer Typography */
.footer-widget h4,
.gt-footer-widget h4 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
}

.footer-widget p,
.footer-widget li,
.gt-footer-widget p,
.gt-footer-widget li {
    font-family: 'Barlow', sans-serif !important;
}

/* Global Button Styles */
.gt-theme-btn {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

/* Breadcrumb Typography */
.gt-breadcrumb-wrapper h1 {
    font-family: 'Gilda Display', serif !important;
}

.gt-breadcrumb-wrapper .gt-breadcrumb-items li,
.gt-breadcrumb-wrapper .gt-breadcrumb-items li a {
    font-family: 'Barlow', sans-serif !important;
}

/* News/Blog Section */
.gt-news-item h4,
.news-card h4 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
}

.gt-news-item p,
.news-card p {
    font-family: 'Barlow', sans-serif !important;
}

/* Category Badges */
.gt-news-item .category,
.news-card .category,
.blog-category {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

/* Discount/CTA Sections */
.gt-discount-section h2,
.cta-section h2 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
}

.gt-discount-section p,
.cta-section p {
    font-family: 'Barlow', sans-serif !important;
}

/* Facilities Section */
.gt-facility-item h4,
.facility-card h4 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
}

/* Why Choose Us Section */
.gt-choose-item h4,
.choose-card h4 {
    font-family: 'Gilda Display', serif !important;
    font-weight: 400 !important;
}

.gt-choose-item p,
.choose-card p {
    font-family: 'Barlow', sans-serif !important;
}

/* Mobile Typography Adjustments */
@media (max-width: 767px) {

    .gt-hero-content h1,
    .gt-hero-section h1 {
        font-size: 32px !important;
    }

    .gt-section-title h2 {
        font-size: 28px !important;
    }

    .gt-about-section-2 .gt-section-title h2 {
        font-size: 28px !important;
    }
}