/* ==========================================================================
   TÜRK KAYAK MERKEZLERİ - BRAND IDENTITY CSS
   Based on Türk Devletleri Teşkilatı Color Palette
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES - BRAND COLOR PALETTE
   ========================================================================== */
:root {
    /* Primary Colors */
    --color-primary: #009CBF;
    /* Turkuaz - Butonlar, İkonlar, Vurgular */
    --color-primary-dark: #007a96;
    /* Hover state */
    --color-primary-light: #00b8e0;
    /* Light variant */

    /* Secondary Colors */
    --color-secondary: #15202B;
    /* Derin Lacivert - Header, Footer */
    --color-secondary-light: #1c2d3a;
    /* Lighter variant */

    /* Accent & Background */
    --color-accent: #F5F8FA;
    /* Buz Grisi - Sayfa Arka Planı */
    --color-white: #FFFFFF;
    /* Kar Beyazı */

    /* Text Colors */
    --color-text: #343a40;
    /* Antrasit - Gövde Metinleri */
    --color-text-light: #6c757d;
    /* Secondary text */
    --color-text-muted: #8892b0;
    /* Muted text */

    /* Status Colors */
    --color-success: #10b981;
    /* Açık - Yeşil */
    --color-warning: #f59e0b;
    /* Kısmi - Sarı */
    --color-danger: #E74C3C;
    /* Kapalı/Hata - Kırmızı */

    /* Shadows & Borders */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --border-radius: 8px;
}

/* ==========================================================================
   2. BASE STYLES
   ========================================================================== */
body {
    color: var(--color-text);
    background-color: var(--color-accent);
}

.widget-title,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-secondary);
}

/* ==========================================================================
   3. HEADER - SOLID DARK BACKGROUND (Scroll-friendly)
   ========================================================================== */
.ct-menuMobile,
.ct-navbar,
.ct-navbar.affix,
#ct-js-wrapper>header,
header.ct-header,
nav.navbar {
    background-color: var(--color-secondary) !important;
    background: var(--color-secondary) !important;
}

.ct-navbar .navbar-nav>li>a,
.ct-menuDesktop .navbar-nav>li>a {
    color: var(--color-white) !important;
    transition: color 0.2s ease;
}

.ct-navbar .navbar-nav>li>a:hover,
.ct-navbar .navbar-nav>li.active>a {
    color: var(--color-primary) !important;
}

/* Logo styling */
.ct-navbar .navbar-brand img {
    filter: brightness(1.1);
}

/* ==========================================================================
   4. DROPDOWN MENU - HIGH CONTRAST
   ========================================================================== */
.dropdown-menu {
    background-color: var(--color-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999 !important;
    padding: 8px 0;
}

.dropdown-menu>li>a {
    color: var(--color-white) !important;
    padding: 12px 24px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.dropdown-menu .divider {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   5. HERO OVERLAY
   ========================================================================== */
.ct-header.ct-u-mask:before,
.ct-u-mask:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(21, 32, 43, 0.7) 0%, rgba(21, 32, 43, 0.4) 100%);
    z-index: 1;
}

.ct-header .inner {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   6. RESORT DASHBOARD WIDGET - UNIFIED STATUS BAR
   ========================================================================== */
.ct-resort-dashboard {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #1c2d3a 100%);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 156, 191, 0.2);
}

.ct-resort-dashboard__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Left Section: Stats */
.ct-dashboard__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.ct-dashboard__stat-item {
    text-align: center;
    min-width: 90px;
}

.ct-dashboard__stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.ct-dashboard__stat-value small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.ct-dashboard__stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Center Section: Weather */
.ct-dashboard__weather {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    background: rgba(0, 156, 191, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(0, 156, 191, 0.3);
}

.ct-dashboard__weather-icon {
    font-size: 48px;
    color: var(--color-primary);
}

.ct-dashboard__weather-icon--pending {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.ct-dashboard__weather-temp {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
}

.ct-dashboard__weather-condition {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: capitalize;
}

/* Right Section: Status & CTA */
.ct-dashboard__status {
    text-align: center;
}

.ct-dashboard__badge {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.ct-dashboard__badge--open {
    background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.ct-dashboard__badge--limited {
    background: linear-gradient(135deg, var(--color-warning) 0%, #d97706 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.ct-dashboard__badge--closed {
    background: linear-gradient(135deg, var(--color-danger) 0%, #c0392b 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.ct-dashboard__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--color-primary);
    border: none;
    color: var(--color-white);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-dashboard__cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 156, 191, 0.4);
}

/* ==========================================================================
   7. DETAIL PAGE - DESCRIPTION TEXT FIX
   ========================================================================== */
.ct-resort-description,
.tab-pane .ct-description,
#overview p,
#overview .description {
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-white) !important;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    line-height: 1.7;
}

.ct-resort-description p,
.tab-pane p {
    color: var(--color-text) !important;
}

/* ==========================================================================
   8. FACILITY CARDS - ENHANCED STYLING
   ========================================================================== */
.ct-facility-box {
    background: var(--color-white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.ct-facility-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.ct-facility-box__icon {
    margin-bottom: 15px;
}

.ct-facility-box__icon i {
    color: var(--color-primary);
}

.ct-facility-box__content h4 {
    color: var(--color-secondary) !important;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.ct-facility-box__type {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white) !important;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.ct-facility-box__content p {
    color: var(--color-text-light) !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   9. BUTTONS - BRAND STYLING
   ========================================================================== */
.btn-primary,
.ct-button--primary,
.btn.btn-primary {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.ct-button--primary:hover,
.btn.btn-primary:hover {
    background: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 156, 191, 0.3);
}

/* ==========================================================================
   10. TABS - BRAND STYLING
   ========================================================================== */
.nav-tabs>li>a {
    color: var(--color-text);
    border-radius: 6px 6px 0 0;
    transition: all 0.2s ease;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.nav-tabs>li>a:hover {
    background: var(--color-accent);
    border-color: #ddd;
}

/* ==========================================================================
   11. TABLES - LIFT STATUS
   ========================================================================== */
.table>tbody>tr>td {
    vertical-align: middle;
    color: var(--color-text);
    font-weight: 500;
}

.ct-lift--closed {
    opacity: 0.6;
    background-color: #fff5f5 !important;
}

.ct-lift--closed td {
    color: var(--color-danger);
}

/* ==========================================================================
   12. FOOTER - BRAND COLORS
   ========================================================================== */
footer,
.ct-footer,
#footer {
    background: var(--color-secondary) !important;
}

.ct-footer h4,
.ct-footer .widget-title,
footer h4 {
    color: var(--color-white) !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ct-footer a,
footer a {
    color: var(--color-text-muted) !important;
    transition: color 0.2s ease;
}

.ct-footer a:hover,
footer a:hover {
    color: var(--color-primary) !important;
}

.ct-footer p,
footer p {
    color: var(--color-text-muted) !important;
}

/* Footer social icons */
.ct-footer .ct-socials a,
footer .social-icons a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ct-footer .ct-socials a:hover,
footer .social-icons a:hover {
    background: var(--color-primary);
    color: var(--color-white) !important;
}

/* Footer newsletter button */
.ct-footer .btn,
footer .btn-subscribe {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

/* ==========================================================================
   13. RESORT STATUS BADGES (Global)
   ========================================================================== */
.ct-badge--success,
.label-success {
    background: var(--color-success) !important;
}

.ct-badge--warning,
.label-warning {
    background: var(--color-warning) !important;
}

.ct-badge--danger,
.label-danger {
    background: var(--color-danger) !important;
}

/* ==========================================================================
   14. RESORT CARDS ON LIST PAGE
   ========================================================================== */
.ct-product-box__title {
    color: var(--color-secondary);
    font-weight: 700;
}

.ct-product-box__title a {
    color: var(--color-secondary);
}

.ct-product-box__title a:hover {
    color: var(--color-primary);
}

.ct-resort--closed {
    filter: grayscale(70%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.ct-resort--closed:hover {
    filter: grayscale(40%);
    opacity: 1;
}

/* ==========================================================================
   15. LINKS & ICONS
   ========================================================================== */
a {
    color: var(--color-primary);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

.fa {
    color: inherit;
}

/* ==========================================================================
   16. STAT BOXES (General)
   ========================================================================== */
.ct-stat-box,
.ct-weather-box {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.ct-stat-box__value,
.ct-weather-box__value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
}

.ct-stat-box__label,
.ct-weather-box__label {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   17. RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .ct-resort-dashboard__grid {
        flex-direction: column;
        text-align: center;
    }

    .ct-dashboard__stats {
        justify-content: center;
    }

    .ct-dashboard__stat-value {
        font-size: 24px;
    }

    .ct-dashboard__weather-temp {
        font-size: 32px;
    }
}

/* ==========================================================================
   18. ANIMATIONS & TRANSITIONS
   ========================================================================== */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.ct-stat-pending {
    opacity: 0.5;
}

.ct-stat-pending i {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   19. RED ERADICATION - AGGRESSIVE COLOR OVERRIDE
   Legacy kırmızı renkleri marka rengine dönüştür
   İstisna: Sadece .ct-dashboard__badge--closed ve .text-danger kalır
   ========================================================================== */

/* --- TAB NAVIGATION (Aktif Tab Kırmızı -> Turkuaz) --- */
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus,
.ct-tabs .nav-tabs>li.active>a,
.ct-productTabs .nav-tabs>li.active>a,
ul.nav-tabs>li.active>a {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.nav-tabs>li>a:hover,
.ct-tabs .nav-tabs>li>a:hover {
    border-color: var(--color-primary) !important;
}

/* --- RESORT CARD BUTTONS (Kırmızı Butonlar -> Turkuaz) --- */
.ct-product-box .btn,
.ct-product-box__buttons .btn,
.ct-product-box__buttons a,
.ct-product-box .ct-button,
.ct-product-box__button,
.ct-productBox__button,
.ct-resort-card .btn,
.ct-resort-card a.btn,
.btn-details,
.btn-map,
.btn-weather,
a[class*="btn-"][style*="background"],
.ct-productBox .ct-button,
.ct-productBox__buttons a,
.ct-productBox__icons .btn,
.ct-productBox__icons a {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.ct-product-box .btn:hover,
.ct-product-box__buttons .btn:hover,
.ct-product-box__buttons a:hover,
.ct-resort-card .btn:hover {
    background-color: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
}

/* --- FOOTER ICONS (Kırmızı İkonlar -> Turkuaz) --- */
.ct-footer i,
.ct-footer .fa,
footer i,
footer .fa,
.ct-footer-info i,
.ct-footer-contact i,
.ct-contactDetails i,
.ct-address i,
.widget i.fa {
    color: var(--color-primary) !important;
}

/* --- GENERAL RED OVERRIDE (Global) --- */
/* Herhangi bir yerde kalan kırmızı metin veya arka plan */
[style*="color: #dc3545"],
[style*="color: #ff0000"],
[style*="color: red"],
[style*="background-color: #dc3545"],
[style*="background: #dc3545"] {
    color: var(--color-primary) !important;
}

/* Bootstrap danger sınıfları (sadece KAPALI durumu hariç) */
.btn-danger:not(.ct-dashboard__badge--closed),
.bg-danger:not(.ct-dashboard__badge--closed),
.alert-danger,
.label-danger:not(.ct-status-closed) {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

/* Eski tema accent renkleri */
.ct-accent,
.ct-accent-color,
.accent-color,
[class*="ct-u-colorAccent"],
.ct-u-colorRed {
    color: var(--color-primary) !important;
}

.ct-accent-bg,
.accent-bg,
[class*="ct-u-backgroundAccent"],
.ct-u-backgroundRed {
    background-color: var(--color-primary) !important;
}

/* --- LINK COLORS --- */
a.text-danger:not(.ct-status-closed),
span.text-danger:not(.ct-status-closed):not(.ct-lift--closed *) {
    color: var(--color-primary) !important;
}

/* --- BORDER COLORS --- */
.border-danger:not(.ct-status-closed),
[style*="border-color: #dc3545"],
[style*="border: 1px solid #dc3545"] {
    border-color: var(--color-primary) !important;
}

/* --- ICON BUTTONS IN CARDS --- */
.ct-productBox__icons a,
.ct-product-box__icons a,
.ct-resort-icons a,
.resort-action-icons a {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.ct-productBox__icons a:hover,
.ct-product-box__icons a:hover {
    background-color: var(--color-primary-dark) !important;
}

/* ==========================================================================
   20. NULL DATA HANDLING - GRACEFUL DEGRADATION
   Veri yoksa şık görünsün
   ========================================================================== */

/* Veri Bekleniyor stili */
.ct-data-pending,
.data-pending {
    color: var(--color-text-muted) !important;
    font-style: italic;
    font-size: 0.9em;
}

.ct-data-pending i,
.data-pending i {
    margin-right: 5px;
    animation: pulse 2s infinite;
}

/* Boş veri tooltip */
[data-tooltip="Bilgi Bekleniyor"] {
    position: relative;
    cursor: help;
}

[data-tooltip="Bilgi Bekleniyor"]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

[data-tooltip="Bilgi Bekleniyor"]:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Ziyaret Et butonu */
.ct-info-box a[href*="website"],
.ct-info-box a[target="_blank"],
table a[rel="noopener"],
.ct-sidebar a.btn-visit,
a.visit-website-btn {
    display: inline-block;
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.ct-info-box a[href*="website"]:hover,
.ct-info-box a[target="_blank"]:hover,
table a[rel="noopener"]:hover {
    background: var(--color-primary-dark) !important;
    color: var(--color-white) !important;
}

/* Sidebar genel bilgiler tablosu */
.ct-info-box table td {
    color: var(--color-text) !important;
}

.ct-info-box table td a {
    color: var(--color-primary) !important;
}

/* ==========================================================================
   21. FINAL RED ERADICATION SWEEP
   Pace progress bar, tab underlines, and any remaining legacy red
   ========================================================================== */

/* Pace.js loading bar */
.pace .pace-progress,
.pace-progress {
    background: var(--color-primary) !important;
}

.pace .pace-activity,
.pace-activity {
    border-top-color: var(--color-primary) !important;
    border-left-color: var(--color-primary) !important;
}

/* Tab underline/border */
.nav-tabs,
.ct-tabs .nav-tabs,
ul.nav-tabs {
    border-bottom-color: var(--color-primary) !important;
}

/* Tab link accents */
.nav-tabs>li>a::after,
.nav-tabs>li.active>a::before,
.nav-tabs>li.active>a::after {
    background-color: var(--color-primary) !important;
}

/* Product box icon links */
.ct-productBox__icons,
.ct-product-box__icons {
    background: transparent !important;
}

.ct-productBox__icons a,
.ct-product-box__icons a {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: none !important;
}

/* Hover effect */
.ct-productBox__icons a:hover,
.ct-product-box__icons a:hover {
    background-color: var(--color-primary-dark) !important;
}

/* Progress bars */
.progress-bar,
.progress-bar-danger,
.progress-bar-primary {
    background-color: var(--color-primary) !important;
}

/* Any inline red styles on SVG/icons */
svg[fill="#dc3545"],
svg[fill="#ff0000"],
path[fill="#dc3545"],
path[fill="#ff0000"] {
    fill: var(--color-primary) !important;
}

/* Box shadows with red */
[style*="box-shadow"][style*="#dc3545"],
[style*="box-shadow"][style*="red"] {
    box-shadow: 0 4px 15px rgba(0, 156, 191, 0.4) !important;
}

/* Detail page lines/separators */
.ct-productTab hr,
.ct-productTabs hr,
.tab-content hr,
hr.accent,
hr.red {
    border-color: var(--color-primary) !important;
    background-color: var(--color-primary) !important;
}

/* ==========================================================================
   22. HEADER AND TEXT COLOR CORRECTION
   Navy (#1A2C38) for headers, Turkuaz (#009CBF) for accents
   ========================================================================== */

/* All headers to Navy (Lacivert) */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.ct-u-color-black,
.section-title {
    color: var(--color-secondary) !important;
    /* #15202B */
}

/* Active states and accents to Turkuaz */
a:hover,
a:focus,
a:active,
.btn:hover,
.btn:focus,
li.active>a,
.ct-product-box__title:hover,
.ct-newsletter-widget__title span {
    color: var(--color-primary) !important;
}

/* Specific red text overrides */
.text-danger:not(.ct-dashboard__badge--closed),
span[style*="color: #ff0000"],
span[style*="color: red"],
p[style*="color: #ff0000"],
p[style*="color: red"] {
    color: var(--color-primary) !important;
}

/* Icon box titles */
.ct-iconBox .ct-iconBox__title,
.ct-icon-box .ct-icon-box__title {
    color: var(--color-secondary) !important;
}

/* Blockquote borders */
blockquote {
    border-left-color: var(--color-primary) !important;
}

/* Pagination active state */
.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    border-color: var(--color-primary) !important;
}

/* Layout view toggle buttons */
.ct-view-toggle .btn {
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
    background: transparent !important;
}

.ct-view-toggle .btn.active,
.ct-view-toggle .btn:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

/* ==========================================================================
   23. BRAND COLOR PALETTE OVERRIDES (User Request)
   Turkuaz (#00A3C4) & Navy (#1A2C38)
   ========================================================================== */

/* 1. HEADER & NAVIGATION (Koyu Zemin) */
.ct-menu .navbar,
.navbar-default,
.navbar-fixed {
    background-color: #1A2C38 !important;
    /* Derin Lacivert */
    border-color: #1A2C38 !important;
}

.ct-menu .navbar .navbar-nav>li>a,
.ct-menu .navbar .dropdown-menu>li>a,
.ct-language-dropdown .dropdown-menu>li>a,
.navbar-header .navbar-brand {
    color: #fff !important;
    /* Beyaz Metin */
}

/* Dropdown background */
.dropdown-menu {
    background-color: #1A2C38 !important;
}

/* 2. HERO BÖLÜMÜ (Turkuaz Vurgular) */
/* Büyük Başlık ve Altındaki Kırmızı Yazı */
.ct-resort-title,
.ct-resort-title small {
    color: #00A3C4 !important;
    /* Turkuaz */
}

/* İstatistik Daireleri ve Çizgileri */
.ct-stat-circle {
    border-color: #00A3C4 !important;
    /* Turkuaz Çerçeve */
}

/* İkon ve Metin Renkleri */
.ct-stat-circle i,
.ct-stat-circle span,
.ct-stat-circle {
    color: #fff !important;
}

.ct-stat-weather i {
    color: #00A3C4 !important;
    /* Hava durumu ikonu Turkuaz */
}

/* Bağlantı Çizgileri */
.ct-stat-line-left,
.ct-stat-line-right {
    background-color: #00A3C4 !important;
}

/* 3. HABERLER BÖLÜMÜ */
#news-section {
    background-color: #F0F8FF !important;
    /* Buz Mavisi Zemin */
}

/* News Box Date */
.ct-newsBox__date {
    background-color: #00A3C4 !important;
}

/* Section Title in News */
#news-section .ct-section-title {
    color: #1A2C38 !important;
}

/* Buttons (Tümünü Gör vb.) */
.btn-motive,
.ct-slick-arrow {
    background-color: #00A3C4 !important;
    border-color: #00A3C4 !important;
    color: #fff !important;
}

.btn-motive:hover {
    background-color: #008ba8 !important;
}

/* 4. ALT SLIDER ETIKETLERI (Küçük Resim Etiketleri) */
.ct-slick--thumbs .item .inner span {
    background-color: #00A3C4 !important;
    /* Turkuaz */
    color: #fff !important;
}

/* Thumbnail Slider - Fixed Size & Blue Border */
.ct-slick--thumbs {
    max-width: 1000px !important;
    padding: 15px 70px !important;
}

.ct-slick--thumbs .item {
    padding: 0 12px !important;
}

.ct-slick--thumbs .item .inner {
    width: 180px !important;
    height: auto;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s ease;
    background: #fff;
}

.ct-slick--thumbs .item .inner img {
    width: 180px !important;
    height: 90px !important;
    object-fit: cover;
    display: block;
}

.ct-slick--thumbs .item .inner span {
    font-size: 11px !important;
    padding: 5px 8px !important;
}

.ct-slick--thumbs .item:hover .inner,
.ct-slick--thumbs .item.slick-current .inner {
    border-color: #00A3C4 !important;
}

.ct-slick--thumbs .slick-current .inner {
    border-color: #00A3C4 !important;
    box-shadow: 0 4px 15px rgba(0, 163, 196, 0.4);
}

@media (max-width: 991px) {
    .ct-slick--thumbs .item .inner,
    .ct-slick--thumbs .item .inner img {
        width: 150px !important;
    }
    .ct-slick--thumbs .item .inner img {
        height: 75px !important;
    }
}

@media (max-width: 767px) {
    .ct-slick--thumbs {
        padding: 10px 50px !important;
    }
    .ct-slick--thumbs .item {
        padding: 0 6px !important;
    }
    .ct-slick--thumbs .item .inner,
    .ct-slick--thumbs .item .inner img {
        width: 120px !important;
    }
    .ct-slick--thumbs .item .inner img {
        height: 60px !important;
    }
    .ct-slick--thumbs .item .inner span {
        font-size: 9px !important;
        padding: 4px 6px !important;
    }
}

/* 5. KALAN KIRMIZI ELEMANLAR İÇİN AGRESIF OVERRIDE */
/* Stat circles border and lines */
.ct-stat-circle,
.ct-stat-weather,
.ct-stat-temp,
.ct-stat-snow,
.ct-stat-lift {
    border-color: #00A3C4 !important;
}

/* Any remaining red text/border in hero */
.ct-resort-stats-grid,
.ct-stat-row-grid {
    color: #fff !important;
}

/* Stat line connectors */
.ct-stat-line-left::before,
.ct-stat-line-right::before,
.ct-stat-line-left::after,
.ct-stat-line-right::after {
    background-color: #00A3C4 !important;
}

/* 6. HABER KUTUSU DETAYLARI (Date & Icons) */
.ct-newsBox__day {
    background-color: #00A3C4 !important;
    /* Date circle background */
}

.ct-newsBox .fa-map-marker {
    color: #00A3C4 !important;
    /* Map icon in news */
}

/* Ensure entire news date box is correct */
.ct-newsBox__date {
    background-color: #00A3C4 !important;
}

/* 7. GENEL KIRMIZI TEXT TEMİZLİĞİ */
.text-danger,
.text-red {
    color: #00A3C4 !important;
}

/* ==========================================================================
   24. MOBILE RESPONSIVENESS OVERRIDES (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* --- 1. GLOBAL NAVIGATION --- */
    /* Hamburger Icon */
    .navbar-toggle .icon-bar,
    .ct-mobile-menu-toggle i,
    .ct-icon i {
        color: #00A3C4 !important;
        /* Turkuaz */
    }

    /* Mobile Menu Container */
    .ct-menuMobile,
    .navbar-collapse,
    .ct-navbar {
        background-color: #1A2C38 !important;
        /* Lacivert */
    }

    /* Mobile Menu Links */
    .ct-menuMobile .nav-item>a,
    .navbar-collapse .nav>li>a,
    .ct-menuMobile a {
        color: #FFFFFF !important;
        font-size: 16px !important;
        padding: 10px 15px !important;
    }

    .ct-menuMobile .nav-item>a:hover,
    .ct-menuMobile .nav-item>a:focus {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #00A3C4 !important;
    }

    /* --- 2. HOME PAGE HERO --- */
    /* Smaller Headings */
    h1,
    .ct-resort-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    h2,
    .hero-slider-content h2 {
        font-size: 1.5rem !important;
    }

    /* Hero Stats Grid (2x2) */
    .ct-resort-stats-grid,
    .hero-slider-content .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    /* Ensure stat items fit in grid */
    .ct-stat-item,
    .single-counter-box {
        width: 100% !important;
        margin-bottom: 0 !important;
        text-align: center !important;
    }

    /* Adjust stat circles size if needed */
    .ct-stat-circle {
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        margin: 0 auto !important;
    }

    /* Full Width Buttons */
    .btn-motive,
    .hero-slider-content a.btn,
    .btn-primary {
        width: 100% !important;
        display: block !important;
        margin-bottom: 10px !important;
    }

    /* --- 3. DETAIL PAGE DASHBOARD --- */
    /* Stack components vertically */
    .ct-dashboard,
    .resort-dashboard {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Top Stats in Grid */
    .ct-dashboard__stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* Middle Weather */
    .ct-dashboard__weather {
        width: 100% !important;
        margin: 15px 0 !important;
        text-align: center !important;
        border-right: none !important;
        /* Remove separator */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-bottom: 15px !important;
    }

    /* Bottom Actions */
    .ct-dashboard__cta,
    .ct-dashboard__status {
        width: 100% !important;
        text-align: center !important;
    }

    /* Facilities Tabs Scroll */
    .nav-tabs-wrapper,
    .ct-resort-facilities {
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tabs>li {
        float: none !important;
        display: inline-block !important;
    }

    /* --- 4. LIST & SIDEBAR --- */
    /* Sidebar adjustments */
    .ct-sidebar {
        margin-bottom: 30px !important;
    }

    .ct-sidebar .btn {
        width: 100% !important;
    }

    /* Contact Map/Form */
    .contact-map iframe,
    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
    }
}

/* ==========================================================================
   25. TABLET OPTIMIZATION (768px - 1024px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {

    /* --- 1. DASHBOARD WIDGET (2-Row Grid) --- */
    .ct-dashboard,
    .resort-dashboard {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 15px !important;
    }

    /* Stats - Top Left */
    .ct-dashboard__stats {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    /* Weather - Top Right */
    .ct-dashboard__weather {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    /* CTA/Status - Bottom (Full Width) */
    .ct-dashboard__cta,
    .ct-dashboard__status {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        width: 100% !important;
        text-align: center !important;
    }

    /* Reduce font sizes ~10-15% */
    .ct-dashboard .stat-value,
    .ct-dashboard__stats .value {
        font-size: 1.5rem !important;
    }

    .ct-dashboard .stat-label,
    .ct-dashboard__stats .label {
        font-size: 0.75rem !important;
    }

    /* --- 2. RESORT CARDS (2 Column) --- */
    .ct-resortItem,
    .resort-card,
    [class*="col-lg-4"].resort-item,
    .resorts-list>div[class*="col-"] {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    /* Ensure proper spacing */
    .resorts-list,
    .resorts-container {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    /* --- 3. TYPOGRAPHY & HERO --- */
    h1,
    .ct-resort-title,
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }

    h2,
    .hero-subtitle {
        font-size: 1.75rem !important;
        margin-bottom: 10px !important;
    }

    /* Reduce hero spacing */
    .hero-slider-content,
    .ct-slider--content {
        padding: 30px 20px !important;
    }

    /* Button margin reduction */
    .btn-motive,
    .hero-slider-content .btn {
        margin-top: 15px !important;
        margin-bottom: 10px !important;
    }

    /* --- 4. SIDEBAR ADAPTATION --- */
    /* Portrait Mode (< 992px width) - Sidebar below content */
    .ct-sidebar {
        order: 2 !important;
        margin-top: 30px !important;
    }

    .main-content,
    .ct-content-area {
        order: 1 !important;
    }

    /* Narrow sidebar in landscape */
    @media (orientation: landscape) {
        .ct-sidebar {
            flex: 0 0 25% !important;
            max-width: 25% !important;
            order: 0 !important;
            margin-top: 0 !important;
        }

        .main-content,
        .ct-content-area {
            flex: 0 0 75% !important;
            max-width: 75% !important;
        }
    }

    /* Filter button full width */
    .ct-sidebar .btn,
    .filter-btn {
        width: 100% !important;
    }
}

/* ==========================================================================
   26. SMALL DESKTOP (1024px - 1280px)
   ========================================================================== */
@media (min-width: 1024px) and (max-width: 1280px) {

    /* --- RESORT CARDS (2 Column) --- */
    .ct-resortItem,
    .resort-card,
    [class*="col-lg-4"].resort-item,
    .resorts-list>div[class*="col-"],
    .row>[class*="col-lg-4"] {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    /* Fix row display */
    .resorts-list .row,
    .resorts-container .row {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    /* --- DASHBOARD WIDGET --- */
    .ct-dashboard,
    .resort-dashboard {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    /* Stats take 60% */
    .ct-dashboard__stats {
        flex: 0 0 60% !important;
        max-width: 60% !important;
    }

    /* Weather takes 40% */
    .ct-dashboard__weather {
        flex: 0 0 40% !important;
        max-width: 40% !important;
    }

    /* CTA full width below */
    .ct-dashboard__cta,
    .ct-dashboard__status {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-top: 15px !important;
    }

    /* --- TYPOGRAPHY --- */
    h1,
    .ct-resort-title {
        font-size: 2.25rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    /* --- SIDEBAR --- */
    .ct-sidebar {
        flex: 0 0 30% !important;
        max-width: 30% !important;
    }

    .main-content,
    .ct-content-area {
        flex: 0 0 70% !important;
        max-width: 70% !important;
    }
}

/* ==========================================================================
   27. MOBILE MENU FINALIZATION
   ========================================================================== */

/* --- 1. DESKTOP (≥1024px): Hide Hamburger, Show Main Menu --- */
@media (min-width: 1024px) {

    /* Hide hamburger on desktop */
    .navbar .ct-menu-icons>li.ct-mobile-toggle,
    .navbar .ct-menu-icons>.ct-mobile-toggle,
    .navbar .ct-menu-icons .ct-mobile-toggle,
    .ct-menu .ct-menu-icons>li.ct-mobile-toggle,
    .ct-menu .ct-menu-icons .ct-mobile-toggle,
    li.ct-mobile-toggle,
    .ct-mobile-toggle {
        display: none !important;
        visibility: hidden !important;
    }

    /* Ensure main menu is visible */
    .main-menu,
    .ct-menu .navbar-nav,
    .ct-menu .navbar-nav.navbar-right {
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Hide mobile navbar on desktop */
    .ct-navbar-mobile,
    .ct-mobile-menu,
    .ct-mobile-overlay {
        display: none !important;
    }
}

/* --- 2. MOBILE/TABLET (<1024px): Show Hamburger, Hide Main Menu --- */
@media (max-width: 1023px) {

    /* Show hamburger icon */
    .ct-mobile-toggle {
        display: block !important;
        visibility: visible !important;
        color: #00A3C4 !important;
        font-size: 24px !important;
        cursor: pointer !important;
    }

    /* Style the icon bars */
    .ct-mobile-toggle .icon-bar,
    .navbar-toggle .icon-bar {
        background-color: #00A3C4 !important;
    }

    /* Hide standard desktop menu */
    .main-menu,
    .ct-menu .navbar-nav.navbar-right {
        display: none !important;
    }
    
    /* Show mobile navbar */
    .ct-navbar-mobile {
        display: flex !important;
    }
}

/* --- 3. MOBILE MENU CONTAINER STYLING --- */
.mean-container .mean-nav,
.ct-menuMobile,
.mobile-nav-container,
.navbar-collapse.in,
.navbar-collapse.show {
    background-color: #1A2C38 !important;
    /* Derin Lacivert */
    border: none !important;
}

/* Menu Links */
.mean-container .mean-nav ul li a,
.ct-menuMobile a,
.ct-menuMobile .nav-item>a,
.mobile-nav-container a {
    color: #FFFFFF !important;
    /* Beyaz */
    font-size: 16px !important;
    padding: 12px 20px !important;
    display: block !important;
    border-bottom: 1px solid #2C3E50 !important;
    /* İnce çizgi */
    text-decoration: none !important;
}

/* Hover / Active State */
.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li a.active,
.ct-menuMobile a:hover,
.ct-menuMobile a:focus,
.ct-menuMobile .nav-item>a:hover {
    color: #00A3C4 !important;
    /* Turkuaz */
    background-color: rgba(0, 163, 196, 0.1) !important;
}

/* Submenu Toggle (if exists) */
.mean-container .mean-push,
.ct-menuMobile .dropdown-toggle::after {
    border-color: #00A3C4 !important;
}

/* Submenu Background */
.mean-container .mean-nav ul li li a,
.ct-menuMobile .dropdown-menu a {
    background-color: #15202B !important;
    padding-left: 30px !important;
}

/* Close button styling */
.mean-close,
.ct-menuMobile-close {
    color: #00A3C4 !important;
}

/* ==========================================================================
   28. FOOTER RESPONSIVE
   ========================================================================== */
@media (max-width: 767px) {
    /* Footer kolonları full-width */
    .ct-footer .col-md-3,
    .ct-footer .col-sm-6,
    footer .col-md-3,
    footer .col-sm-6 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }

    /* Footer heading ortalama */
    .ct-footer__heading,
    .ct-footer h3,
    footer h3 {
        text-align: center !important;
    }

    /* Footer sosyal ikonlar ortalama */
    .ct-footer .ct-socials,
    .ct-footer .list-inline {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    /* Footer iletişim bilgileri ortalama */
    .ct-footer__contact-info,
    .ct-footer__links {
        text-align: center !important;
    }

    .ct-footer__contact-info li,
    .ct-footer__links li {
        padding: 8px 0 !important;
    }

    /* Newsletter form */
    .ct-footer__newsletter {
        max-width: 100% !important;
    }

    .ct-footer__newsletter input,
    .ct-footer__newsletter-input input {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .ct-footer__newsletter .btn,
    .ct-footer .btn {
        width: 100% !important;
    }

    /* Copyright */
    .ct-copyright .col-sm-6 {
        width: 100% !important;
        text-align: center !important;
    }

    .ct-copyright .text-right {
        text-align: center !important;
        margin-top: 10px !important;
    }

    .ct-copyright .list-inline {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
}

/* ==========================================================================
   29. EXTRA SMALL DEVICES (320px and below)
   ========================================================================== */
@media (max-width: 375px) {
    /* Daha küçük font boyutları */
    h1, .ct-resort-title {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.25rem !important;
    }

    h3 {
        font-size: 1rem !important;
    }

    body {
        font-size: 13px !important;
    }

    /* Dashboard stat değerleri küçült */
    .ct-dashboard__stat-value {
        font-size: 20px !important;
    }

    .ct-dashboard__weather-temp {
        font-size: 28px !important;
    }

    /* Butonlar */
    .btn {
        padding: 10px 15px !important;
        font-size: 13px !important;
    }

    /* Container padding azalt */
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Tab navigation daha kompakt */
    .nav-tabs > li > a {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    /* Stat circle küçült */
    .ct-stat-circle {
        width: 50px !important;
        height: 50px !important;
        font-size: 10px !important;
    }

    /* Resort kartları */
    .ct-resortCard__image {
        height: 150px !important;
    }

    /* Filter form */
    .ct-filter-form .form-group {
        margin-bottom: 10px !important;
    }

    .ct-filter-form select,
    .ct-filter-form input {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   30. LANDSCAPE ORIENTATION FIX
   ========================================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    /* Hero alanını küçült */
    .ct-header,
    .hero-slider {
        min-height: 100vh !important;
    }

    .ct-header .inner {
        padding-top: 60px !important;
        padding-bottom: 20px !important;
    }

    /* Dashboard widget kompakt */
    .ct-resort-dashboard {
        padding: 15px !important;
    }

    .ct-dashboard__stat-value {
        font-size: 22px !important;
    }
}

/* ==========================================================================
   31. UI/UX IMPROVEMENTS - CARDS & SPACING
   ========================================================================== */

/* --- KART BOŞLUKLARI VE TUTARLİLİK --- */
.ct-resort-item,
.ct-product-box,
.ct-resort-box {
    margin-bottom: 30px;
}

/* Kartlar için daha iyi grid boşlukları */
.ct-resorts-grid {
    margin-left: -15px;
    margin-right: -15px;
}

.ct-resorts-grid > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* Kart içi tutarlı padding */
.ct-product-box__inner {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ct-product-box__inner:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Kart resim alanı */
.ct-product-box__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.ct-product-box__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ct-product-box:hover .ct-product-box__img {
    transform: scale(1.08);
}

/* Kart içerik alanı */
.ct-product-box__heading {
    padding: 20px;
    flex-grow: 1;
}

/* ==========================================================================
   32. UI/UX - TYPOGRAPHY & READABILITY
   ========================================================================== */

/* Başlıklar */
.ct-product-box__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.ct-product-box__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ct-product-box__title a:hover {
    color: var(--color-primary);
}

/* Lokasyon */
.ct-product-box__price,
.ct-product-box__location {
    font-size: 14px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-product-box__location i {
    color: var(--color-primary);
    font-size: 12px;
}

/* İstatistikler */
.ct-resort-box__stats {
    padding: 16px 20px;
    background: var(--color-accent);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ct-resort-box__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ct-resort-box__stat i {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.ct-resort-box__stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.ct-resort-box__stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kar Kalınlığı */
.ct-resort-box__snow {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 13px;
}

.ct-resort-box__snow i {
    margin-right: 6px;
}

.ct-resort-box__snow strong {
    font-weight: 700;
}

/* Kart Footer */
.ct-product-box__footer {
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ct-product-box__button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
    border: none;
    cursor: pointer;
}

.ct-product-box__button:last-child {
    border-right: none;
}

.ct-product-box__button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.ct-product-box__button--wide {
    flex: 2;
    background: var(--color-primary);
    color: var(--color-white);
}

.ct-product-box__button--wide:hover {
    background: var(--color-primary-dark);
}

/* ==========================================================================
   33. UI/UX - COLOR HARMONY (Kırmızı -> Turkuaz Dönüşümü)
   ========================================================================== */

/* Haber Kutusu */
.ct-newsBox__day {
    background: var(--color-primary) !important;
}

.ct-newsBox__title a:hover {
    color: var(--color-primary) !important;
}

.ct-newsBox__meta i {
    color: var(--color-primary) !important;
}

/* Slider Okları */
.ct-slick-arrow:hover {
    background: var(--color-primary) !important;
}

/* Footer Sosyal İkonlar */
.ct-socials--circle li a:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

/* Footer Contact */
.ct-footer__contact-info li i {
    color: var(--color-primary) !important;
}

.ct-footer__contact-info li a {
    color: var(--color-primary) !important;
}

/* Footer Copyright Links */
.ct-copyright .list-inline li a {
    color: var(--color-primary) !important;
}

/* Newsletter Input Focus */
.ct-footer__newsletter-input input:focus {
    border-color: var(--color-primary) !important;
}

/* Component Title Border */
.component-title {
    border-bottom-color: var(--color-primary) !important;
}

/* Motive class renk değişimi */
.btn-motive,
.ct-u-background--motive {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.btn-motive:hover {
    background-color: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
}

/* Resort Title Small */
.ct-resort-title small {
    color: var(--color-primary) !important;
}

/* Stat Line Colors */
.ct-stat-line-left,
.ct-stat-line-right {
    background: var(--color-primary) !important;
}

.ct-stat-circle {
    border-color: var(--color-primary) !important;
}

/* ==========================================================================
   34. UI/UX - HOVER EFFECTS & TRANSITIONS
   ========================================================================== */

/* Genel Link Hover */
a {
    transition: color 0.2s ease;
}

/* Buton Hover Efektleri */
.btn,
.ct-button,
button {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States for Accessibility */
.btn:focus,
.ct-button:focus,
button:focus,
a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 156, 191, 0.15) !important;
}

/* ==========================================================================
   35. UI/UX - SHADOWS & DEPTH
   ========================================================================== */

/* Tutarlı gölge sistemi */
.ct-card,
.ct-box,
.widget,
.panel {
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    background: var(--color-white);
}

.ct-card:hover,
.ct-box:hover {
    box-shadow: var(--shadow-md);
}

/* Dashboard Widget Gölge */
.ct-resort-dashboard {
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   36. UI/UX - FILTER & FORM STYLING
   ========================================================================== */

.ct-filter-form {
    background: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.ct-filter-form .form-group {
    margin-bottom: 0;
}

.ct-filter-form label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.ct-filter-form .form-control {
    height: 44px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    font-size: 14px;
    padding: 10px 14px;
    transition: all 0.2s ease;
}

.ct-filter-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 156, 191, 0.1);
}

.ct-filter-form .ct-button--primary,
.ct-filter-form .btn-primary {
    height: 44px;
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================================================
   37. UI/UX - RESULTS & PAGINATION
   ========================================================================== */

.ct-results-count {
    font-size: 15px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 38px;
}

.ct-view-toggle .btn {
    padding: 8px 14px;
    border-color: #e0e6ed;
}

.ct-view-toggle .btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Pagination */
.ct-pagination {
    margin: 40px 0;
}

.ct-pagination > li > a,
.ct-pagination > li > span {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    border-color: #e0e6ed;
    margin: 0 3px;
    border-radius: 6px !important;
}

.ct-pagination > li.active > a {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.ct-pagination > li > a:hover {
    background: var(--color-accent);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ==========================================================================
   38. UI/UX - SECTION HEADERS
   ========================================================================== */

.ct-section-header {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.ct-section-header span {
    color: var(--color-primary);
}

.ct-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

/* Lead paragraphs */
.lead {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   39. UI/UX - PIN/BADGE STYLING
   ========================================================================== */

/* Durum Pinleri */
.ct-product-box__pin {
    position: absolute;
    top: 0;
    right: 16px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 0 0 6px 6px;
}

.ct-product-box__pin svg {
    display: none;
}

.ct-product-box__pin--new {
    background: var(--color-success);
    color: var(--color-white);
}

.ct-product-box__pin--hot {
    background: var(--color-warning);
    color: var(--color-white);
}

.ct-product-box__pin--sale {
    background: var(--color-danger);
    color: var(--color-white);
}

/* ==========================================================================
   40. UI/UX - REGION BOXES
   ========================================================================== */

.ct-region-box {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.ct-region-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.ct-region-box__media {
    position: relative;
    aspect-ratio: 4/3;
}

.ct-region-box__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ct-region-box:hover img {
    transform: scale(1.08);
}

.ct-region-box__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(21, 32, 43, 0.9) 0%, transparent 100%);
    color: var(--color-white);
}

.ct-region-box__overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--color-white);
}

.ct-region-box__overlay span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   41. UI/UX - ICON BOXES
   ========================================================================== */

.ct-icon-box {
    margin-bottom: 20px;
}

.ct-icon-box__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ct-icon-box__heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0;
}

/* ==========================================================================
   42. UI/UX - NO RESULTS STATE
   ========================================================================== */

.ct-no-results {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 60px 30px;
    box-shadow: var(--shadow-sm);
}

.ct-no-results i {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.ct-no-results h3 {
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.ct-no-results p {
    color: var(--color-text-light);
    max-width: 400px;
    margin: 0 auto 20px;
}

/* ==========================================================================
   43. UI/UX - SOCIAL MEDIA LINKS (Resort Detail)
   ========================================================================== */

.ct-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.ct-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    background: var(--color-secondary);
    color: var(--color-white) !important;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.ct-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Platform-specific colors */
.ct-social-link--facebook {
    background: #1877F2;
}

.ct-social-link--facebook:hover {
    background: #0d65d9;
}

.ct-social-link--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.ct-social-link--instagram:hover {
    background: linear-gradient(45deg, #d97e25 0%, #c75530 25%, #b91f3a 50%, #a21d58 75%, #9c1472 100%);
}

.ct-social-link--twitter,
.ct-social-link--x {
    background: #000000;
}

.ct-social-link--twitter:hover,
.ct-social-link--x:hover {
    background: #333333;
}

.ct-social-link--youtube {
    background: #FF0000;
}

.ct-social-link--youtube:hover {
    background: #cc0000;
}

.ct-social-link--linkedin {
    background: #0A66C2;
}

.ct-social-link--linkedin:hover {
    background: #084d94;
}

.ct-social-link--tiktok {
    background: #000000;
}

.ct-social-link--tiktok:hover {
    background: #333333;
}

.ct-social-link--whatsapp {
    background: #25D366;
}

.ct-social-link--whatsapp:hover {
    background: #1da851;
}

.ct-social-link--telegram {
    background: #0088cc;
}

.ct-social-link--telegram:hover {
    background: #006699;
}

/* Info box styling */
.ct-info-box {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.ct-info-box h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-secondary);
    margin: 0 0 5px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

/* Visit website button */
.visit-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--color-primary);
    color: var(--color-white) !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.visit-website-btn:hover {
    background: var(--color-primary-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

/* ==========================================================================
   44. MODERN RESORT CARD - Complete Redesign
   ========================================================================== */

.ct-resort-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ct-resort-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ct-resort-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.ct-resort-card__link:hover,
.ct-resort-card__link:focus {
    text-decoration: none;
    color: inherit;
}

/* --- Media Section --- */
.ct-resort-card__media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ct-resort-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-resort-card:hover .ct-resort-card__img {
    transform: scale(1.1);
}

.ct-resort-card__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

/* --- Badge --- */
.ct-resort-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ct-resort-card__badge i {
    font-size: 10px;
}

.ct-resort-card__badge--open {
    background: rgba(16, 185, 129, 0.9);
    color: var(--color-white);
}

.ct-resort-card__badge--limited {
    background: rgba(245, 158, 11, 0.9);
    color: var(--color-white);
}

.ct-resort-card__badge--closed {
    background: rgba(231, 76, 60, 0.9);
    color: var(--color-white);
}

/* --- Snow Info --- */
.ct-resort-card__snow {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ct-resort-card__snow i {
    font-size: 14px;
}

.ct-resort-card__snow small {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
}

/* --- Country Tag --- */
.ct-resort-card__country {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ct-resort-card__country i {
    font-size: 10px;
    color: var(--color-primary);
}

/* --- Body Section --- */
.ct-resort-card__body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ct-resort-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.ct-resort-card:hover .ct-resort-card__title {
    color: var(--color-primary);
}

.ct-resort-card__desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

/* --- Stats Grid --- */
.ct-resort-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-resort-card__stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ct-resort-card__stat > i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: 6px;
    color: var(--color-primary);
    font-size: 11px;
    flex-shrink: 0;
}

.ct-resort-card__stat-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ct-resort-card__stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
}

.ct-resort-card__stat-value small {
    font-size: 9px;
    font-weight: 500;
    opacity: 0.6;
}

.ct-resort-card__stat-label {
    font-size: 9px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* --- Footer / CTA --- */
.ct-resort-card__footer {
    padding: 16px 20px;
    background: var(--color-accent);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.ct-resort-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.ct-resort-card__cta i {
    transition: transform 0.3s ease;
}

.ct-resort-card:hover .ct-resort-card__cta {
    color: var(--color-primary-dark);
}

.ct-resort-card:hover .ct-resort-card__cta i {
    transform: translateX(4px);
}

/* --- Closed State --- */
.ct-resort-card--closed {
    opacity: 0.85;
}

.ct-resort-card--closed .ct-resort-card__img {
    filter: grayscale(40%);
}

.ct-resort-card--closed:hover .ct-resort-card__img {
    filter: grayscale(20%);
}

/* ==========================================================================
   45. RESORT GRID - 4 Column Layout
   ========================================================================== */

.ct-resorts-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.ct-resort-item {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
    display: flex;
}

.ct-resort-item > .ct-resort-card {
    width: 100%;
}

/* 4 Column on large screens */
@media (min-width: 1200px) {
    .ct-resort-item {
        width: 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* 3 Column on medium screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .ct-resort-item {
        width: 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* 2 Column on tablets */
@media (min-width: 576px) and (max-width: 991px) {
    .ct-resort-item {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .ct-resort-card__media {
        height: 180px;
    }
    
    .ct-resort-card__stat > i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .ct-resort-card__stat-value {
        font-size: 14px;
    }
}

/* 1 Column on mobile */
@media (max-width: 575px) {
    .ct-resort-item {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .ct-resort-card__media {
        height: 200px;
    }
    
    .ct-resort-card__body {
        padding: 16px;
    }
    
    .ct-resort-card__stats {
        gap: 8px;
    }
    
    .ct-resort-card__stat > i {
        display: none;
    }
    
    .ct-resort-card__stat {
        flex-direction: column;
        text-align: center;
        gap: 2px;
    }
    
    .ct-resort-card__stat-value {
        font-size: 18px;
    }
    
    .ct-resort-card__stat-label {
        font-size: 9px;
    }
}

/* ==========================================================================
   46. RESULTS HEADER - Responsive Margin
   ========================================================================== */

.ct-results-header {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ct-results-header .ct-results-count {
    margin: 0;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 38px;
}

.ct-results-header .ct-view-toggle {
    display: inline-flex;
}

.ct-results-header .ct-view-toggle .btn {
    padding: 8px 14px;
    border-color: #e0e6ed;
    background: var(--color-white);
    color: var(--color-text-light);
    transition: all 0.2s ease;
}

.ct-results-header .ct-view-toggle .btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.ct-results-header .ct-view-toggle .btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Tablet */
@media (max-width: 767px) {
    .ct-results-header {
        margin-bottom: 20px;
    }
    
    .ct-results-header > .col-sm-6 {
        width: 100%;
        text-align: center !important;
    }
    
    .ct-results-header .ct-results-count {
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .ct-results-header .ct-view-toggle {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .ct-results-header {
        margin-bottom: 16px;
    }
    
    .ct-results-header .ct-results-count {
        font-size: 14px;
    }
    
    .ct-results-header .ct-view-toggle .btn {
        padding: 6px 12px;
    }
}

/* ==========================================================================
   47. MODERN MOBILE MENU - Complete Redesign
   ========================================================================== */

/* --- CSS Variables for Mobile Menu --- */
:root {
    --mobile-menu-width: 320px;
    --mobile-menu-bg: linear-gradient(180deg, #0D1B2A 0%, #1B2838 100%);
    --mobile-menu-overlay: rgba(0, 0, 0, 0.6);
    --mobile-menu-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --mobile-menu-accent: #00A3C4;
    --mobile-menu-accent-glow: rgba(0, 163, 196, 0.3);
}

/* --- Hamburger Icon (Modern Animated) --- */
.ct-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

.ct-hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary, #00A3C4);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.ct-hamburger__line:nth-child(1) {
    top: 0;
}

.ct-hamburger__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.ct-hamburger__line:nth-child(3) {
    bottom: 0;
}

/* Hamburger to X animation when menu open */
.mobile-open .ct-hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-open .ct-hamburger__line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-open .ct-hamburger__line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* --- Mobile Toggle Button Styling --- */
.ct-mobile-toggle {
    display: none;
}

@media (max-width: 1023px) {
    .ct-mobile-toggle {
        display: block !important;
        visibility: visible !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        left: auto !important;
    }

    .ct-mobile-toggle__btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 8px !important;
        border-radius: 8px;
        transition: background-color 0.2s ease;
        cursor: pointer;
    }

    .ct-mobile-toggle__btn:hover {
        background-color: rgba(0, 163, 196, 0.1);
    }

    /* Hide old FontAwesome icons */
    .ct-mobile-toggle .fa-bars,
    .ct-mobile-toggle .fa-times {
        display: none !important;
    }
    
    /* Hamburger lines should be visible */
    .ct-hamburger {
        display: flex !important;
    }
    
    .ct-hamburger__line {
        display: block !important;
        background-color: var(--color-primary, #00A3C4) !important;
    }
}

/* --- Mobile Menu Overlay --- */
.ct-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mobile-menu-overlay);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--mobile-menu-transition), visibility var(--mobile-menu-transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-open .ct-mobile-overlay {
    opacity: 1;
    visibility: visible;
}

/* --- Mobile Menu Panel --- */
.ct-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--mobile-menu-width);
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--mobile-menu-bg);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: right var(--mobile-menu-transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-open .ct-mobile-menu {
    right: 0;
}

/* Scrollbar styling */
.ct-mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.ct-mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.ct-mobile-menu::-webkit-scrollbar-thumb {
    background: var(--mobile-menu-accent);
    border-radius: 2px;
}

/* --- Mobile Menu Header --- */
.ct-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.ct-mobile-menu__logo {
    display: block;
}

.ct-mobile-menu__logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.ct-mobile-menu__close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.ct-mobile-menu__close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--mobile-menu-accent);
    transform: rotate(90deg);
}

.ct-mobile-menu__close:focus {
    outline: 2px solid var(--mobile-menu-accent);
    outline-offset: 2px;
}

/* --- Mobile Menu Content --- */
.ct-mobile-menu__content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* --- Mobile Menu Navigation --- */
.ct-mobile-menu__nav {
    list-style: none;
    margin: 0;
    padding: 16px 0;
}

.ct-mobile-menu__item {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ct-mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.ct-mobile-menu__link:hover,
.ct-mobile-menu__link:focus {
    background: linear-gradient(90deg, rgba(0, 163, 196, 0.15) 0%, transparent 100%);
    color: #fff;
    text-decoration: none;
}

.ct-mobile-menu__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--mobile-menu-accent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ct-mobile-menu__link:hover::before,
.ct-mobile-menu__item.active .ct-mobile-menu__link::before {
    opacity: 1;
}

.ct-mobile-menu__item.active .ct-mobile-menu__link {
    background: linear-gradient(90deg, rgba(0, 163, 196, 0.2) 0%, transparent 100%);
    color: var(--mobile-menu-accent);
}

.ct-mobile-menu__link i:first-child {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: var(--mobile-menu-accent);
    opacity: 0.8;
}

.ct-mobile-menu__arrow {
    margin-left: auto;
    font-size: 12px !important;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

/* Submenu toggle as div - must look clickable */
div.ct-mobile-submenu-toggle {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

div.ct-mobile-submenu-toggle:hover {
    background: linear-gradient(90deg, rgba(0, 163, 196, 0.15) 0%, transparent 100%);
}

/* --- Submenu --- */
.ct-mobile-menu__item--has-submenu.active .ct-mobile-menu__arrow {
    transform: rotate(180deg);
}

.ct-mobile-menu__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.ct-mobile-menu__item--has-submenu.active .ct-mobile-menu__submenu {
    max-height: 500px;
}

.ct-mobile-menu__submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px 12px 62px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ct-mobile-menu__submenu li a:hover {
    background: rgba(0, 163, 196, 0.1);
    color: #fff;
    text-decoration: none;
}

.ct-mobile-menu__submenu li a i {
    font-size: 12px;
    opacity: 0.6;
}

.ct-mobile-menu__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 24px;
}

/* --- Language Section --- */
.ct-mobile-menu__languages {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.ct-mobile-menu__section-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ct-mobile-menu__section-title i {
    color: var(--mobile-menu-accent);
}

.ct-mobile-menu__lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ct-mobile-menu__lang-btn {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ct-mobile-menu__lang-btn:hover {
    background: rgba(0, 163, 196, 0.2);
    border-color: var(--mobile-menu-accent);
    color: #fff;
    text-decoration: none;
}

.ct-mobile-menu__lang-btn.active {
    background: var(--mobile-menu-accent);
    border-color: var(--mobile-menu-accent);
    color: #fff;
}

/* --- Social Section --- */
.ct-mobile-menu__social {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.15);
}

.ct-mobile-menu__social-icons {
    display: flex;
    gap: 12px;
}

.ct-mobile-menu__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-mobile-menu__social-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.ct-mobile-menu__social-link--facebook:hover {
    background: #1877F2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.ct-mobile-menu__social-link--twitter:hover {
    background: #1DA1F2;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.ct-mobile-menu__social-link--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.ct-mobile-menu__social-link--youtube:hover {
    background: #FF0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

/* --- Body Lock when menu open --- */
html.mobile-open {
    overflow: hidden;
}

html.mobile-open body {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* --- Navbar Mobile Styling --- */
@media (max-width: 1023px) {
    .ct-navbar-mobile {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: linear-gradient(180deg, #0D1B2A 0%, #15202B 100%);
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .ct-navbar-mobile__logo img {
        height: 36px;
        width: auto;
    }

    .ct-navbar-mobile .list-inline {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }

    .ct-navbar-mobile .list-inline > li {
        margin: 0;
    }

    .ct-navbar-mobile .ct-icon {
        color: #fff !important;
        font-size: 20px;
        padding: 10px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Hamburger toggle styling for mobile navbar */
    .ct-navbar-mobile .ct-mobile-toggle {
        display: block !important;
    }
    
    .ct-navbar-mobile .ct-mobile-toggle__btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 10px;
        cursor: pointer;
    }
}

/* Hide desktop navigation on tablet/mobile */
@media (max-width: 1023px) {
    .ct-menu .navbar-nav.navbar-right {
        display: none !important;
    }
    
    .ct-menu .navbar {
        padding: 8px 16px;
    }
    
    /* Hide desktop header on mobile, show mobile navbar */
    .ct-menu {
        display: none !important;
    }
}

/* ==========================================================================
   48. CRITICAL MOBILE OVERRIDE - Final Priority Rules
   ========================================================================== */

/* Force mobile navbar visibility at tablet/mobile breakpoints */
@media screen and (max-width: 1023px) {
    /* DEFINITELY show mobile navbar */
    html body .ct-navbar-mobile,
    body .ct-navbar-mobile,
    .ct-pageWrapper .ct-navbar-mobile,
    .ct-navbar-mobile {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 9990 !important;
        background: linear-gradient(180deg, #0D1B2A 0%, #15202B 100%) !important;
        padding: 12px 16px !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4) !important;
    }
    
    /* DEFINITELY hide desktop header */
    html body nav.ct-menu,
    body nav.ct-menu,
    nav.ct-menu,
    .ct-menu {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Force hamburger visibility */
    html body .ct-mobile-toggle,
    body .ct-mobile-toggle,
    .ct-navbar-mobile .ct-mobile-toggle,
    .ct-mobile-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Force hamburger lines visibility */
    .ct-hamburger {
        display: flex !important;
        width: 24px !important;
        height: 20px !important;
    }
    
    .ct-hamburger__line {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: #00A3C4 !important;
        border-radius: 2px !important;
    }
}

/* Desktop visibility */
@media screen and (min-width: 1024px) {
    html body .ct-navbar-mobile,
    body .ct-navbar-mobile,
    .ct-navbar-mobile {
        display: none !important;
    }
    
    html body nav.ct-menu,
    body nav.ct-menu,
    nav.ct-menu,
    .ct-menu {
        display: block !important;
        visibility: visible !important;
    }
}

/* ==========================================================================
   49. PAGE HEADER STYLING - Brand Colors
   ========================================================================== */

/* Page header with brand gradient */
.ct-page-header,
.ct-page-header.ct-u-background--black,
header.ct-page-header {
    background: linear-gradient(135deg, #0D1B2A 0%, #15202B 60%, #1A2C38 100%) !important;
    border-bottom: 3px solid var(--color-primary, #009CBF);
    position: relative;
}

/* Add subtle glow effect */
.ct-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 163, 196, 0.5), 
        var(--color-primary, #009CBF), 
        rgba(0, 163, 196, 0.5), 
        transparent);
}

/* Page header title */
.ct-page-header__title {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb links in header */
.ct-page-header .ct-breadcrumb a,
.ct-page-header .breadcrumb a {
    color: var(--color-primary, #009CBF) !important;
    transition: color 0.2s ease;
}

.ct-page-header .ct-breadcrumb a:hover,
.ct-page-header .breadcrumb a:hover {
    color: #fff !important;
}

/* Responsive page header */
@media (max-width: 767px) {
    .ct-page-header {
        padding: 20px 0 !important;
    }
    
    .ct-page-header__title {
        font-size: 22px !important;
        text-align: center;
    }
    
    .ct-page-header .ct-breadcrumb,
    .ct-page-header .breadcrumb {
        justify-content: center;
        text-align: center;
    }
}

/* ==========================================================================
   50. MOBILE NAVBAR LANGUAGE DROPDOWN
   ========================================================================== */

/* Language toggle button in mobile navbar */
.ct-navbar-mobile .ct-lang-toggle {
    position: relative;
}

.ct-navbar-mobile .ct-lang-toggle .ct-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    cursor: pointer;
}

.ct-navbar-mobile .ct-current-lang {
    font-size: 20px;
    line-height: 1;
}

/* Language dropdown styling */
.ct-lang-dropdown {
    background: #15202B !important;
    border: 1px solid rgba(0, 163, 196, 0.3) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    padding: 8px 0 !important;
    min-width: 140px !important;
    margin-top: 8px !important;
}

.ct-lang-dropdown li {
    margin: 0 !important;
}

.ct-lang-dropdown li a {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 16px !important;
    display: block !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
}

.ct-lang-dropdown li a:hover,
.ct-lang-dropdown li a:focus {
    background: rgba(0, 163, 196, 0.15) !important;
    color: #fff !important;
}

.ct-lang-dropdown li.active a {
    background: var(--color-primary, #009CBF) !important;
    color: #fff !important;
}

/* ==========================================================================
   51. SEARCH FORM BUTTON STYLING
   ========================================================================== */

/* Search form large variant */
.ct-search-form--large {
    max-width: 600px;
    margin: 0 auto;
}

.ct-search-form--large .input-group,
.ct-search-input-group {
    display: flex !important;
    align-items: stretch !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: visible;
}

.ct-search-form--large .form-control {
    height: 56px !important;
    font-size: 16px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-right: none !important;
    border-radius: 8px 0 0 8px !important;
    flex: 1;
    min-width: 0;
}

.ct-search-form--large .form-control:focus {
    border-color: var(--color-primary, #009CBF);
    box-shadow: none;
}

/* Input group button container */
.ct-search-form--large .input-group-btn,
.ct-search-input-group .input-group-btn {
    display: flex !important;
    align-items: stretch !important;
    width: auto !important;
    position: relative !important;
}

/* Search button styling */
.ct-search-btn {
    height: 56px !important;
    min-width: 60px !important;
    width: 60px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--color-primary, #009CBF) !important;
    border: 2px solid var(--color-primary, #009CBF) !important;
    border-left: none !important;
    border-radius: 0 8px 8px 0 !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
    position: relative !important;
    top: 0 !important;
}

.ct-search-btn:hover,
.ct-search-btn:focus {
    background: #007A99 !important;
    border-color: #007A99 !important;
}

.ct-search-btn .fa {
    font-size: 20px !important;
    color: #fff !important;
    line-height: 1 !important;
}

.ct-search-btn .fa-search {
    display: inline-block !important;
    visibility: visible !important;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .ct-search-form--large .form-control {
        height: 50px !important;
        font-size: 15px;
    }
    
    .ct-search-btn {
        height: 50px !important;
        min-width: 50px !important;
        width: 50px !important;
    }
    
    .ct-search-btn .fa {
        font-size: 18px !important;
    }
}

/* ==========================================================================
   52. MOBILE NAVBAR ACTIONS STYLING
   ========================================================================== */

.ct-navbar-mobile__actions {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ct-navbar-mobile__actions > li {
    margin: 0 !important;
    padding: 0 !important;
}

.ct-navbar-mobile__actions .ct-icon {
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.ct-navbar-mobile__actions .ct-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ensure dropdown works in mobile navbar */
.ct-navbar-mobile .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    top: 100%;
}

/* ===== SNOW GALLERY - WINTER THEME CARDS ===== */

/* Gallery Container */
.ct-snow-gallery {
    padding: 24px 0;
}

.ct-snow-gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8f4f8;
}

.ct-snow-gallery__header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
}

.ct-snow-gallery__header h3 i {
    color: #5dade2;
    margin-right: 10px;
}

.ct-snow-gallery__count {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Gallery Grid */
.ct-snow-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

@media (min-width: 768px) {
    .ct-snow-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .ct-snow-gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Snow Card */
.ct-snow-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ct-snow-card:hover {
    transform: translateY(-6px);
}

.ct-snow-card__frame {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(116, 185, 255, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.ct-snow-card:hover .ct-snow-card__frame {
    border-color: #74b9ff;
    box-shadow: 
        0 12px 40px rgba(116, 185, 255, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.ct-snow-card__image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.ct-snow-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ct-snow-card:hover .ct-snow-card__image-wrap img {
    transform: scale(1.05);
}

/* Frost Effect - Subtle Winter Border */
.ct-snow-card__frost {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border: 3px solid transparent;
    border-radius: 14px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 255, 255, 0.3) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-snow-card:hover .ct-snow-card__frost {
    opacity: 1;
}

/* Card Content Overlay */
.ct-snow-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 30, 60, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-snow-card:hover .ct-snow-card__content {
    opacity: 1;
}

/* Expand Icon */
.ct-snow-card__expand {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0984e3;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.ct-snow-card:hover .ct-snow-card__expand {
    background: #0984e3;
    color: #fff;
}

/* Card Title */
.ct-snow-card__title {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    margin-right: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* ===== LIGHTBOX STYLES ===== */
.ct-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
}

.ct-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.3s ease;
}

@keyframes lbFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ct-lightbox__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.97), rgba(20, 40, 60, 0.97));
    cursor: pointer;
}

.ct-lightbox__container {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ct-lightbox__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: calc(90vh - 80px);
}

.ct-lightbox__image {
    max-width: 90vw;
    max-height: calc(90vh - 120px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: lbZoomIn 0.3s ease;
}

@keyframes lbZoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.ct-lightbox__caption {
    color: #fff;
    font-size: 15px;
    margin-top: 16px;
    text-align: center;
    padding: 0 20px;
    opacity: 0.9;
}

/* Lightbox Navigation */
.ct-lightbox__close,
.ct-lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-lightbox__close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    z-index: 10;
}

.ct-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.ct-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 18px;
}

.ct-lightbox__nav--prev {
    left: 24px;
}

.ct-lightbox__nav--next {
    right: 24px;
}

.ct-lightbox__nav:hover {
    background: rgba(116, 185, 255, 0.3);
    border-color: rgba(116, 185, 255, 0.5);
    transform: translateY(-50%) scale(1.08);
}

/* Counter */
.ct-lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .ct-snow-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .ct-snow-gallery__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .ct-snow-card__frame {
        border-radius: 12px;
    }
    
    .ct-snow-card__expand {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .ct-lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .ct-lightbox__nav--prev {
        left: 12px;
    }
    
    .ct-lightbox__nav--next {
        right: 12px;
    }
    
    .ct-lightbox__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
}