body.site-lock-active{overflow:hidden}
.site-lock-active > *:not(.site-lock-overlay){opacity:0;pointer-events:none}
.site-lock-overlay{position:fixed;inset:0;z-index:10050;display:flex;align-items:center;justify-content:center;padding:24px;background:#ffffff}
.site-lock-box{max-width:420px;width:100%;background:#ffffff;border-radius:20px;padding:32px;text-align:center;box-shadow:0 24px 72px rgba(15,23,42,0.32)}
.site-lock-icon{width:64px;height:64px;border-radius:50%;background:rgba(37,211,102,0.12);display:flex;align-items:center;justify-content:center;color:#16a34a;font-size:28px;margin:0 auto 16px}
.site-lock-title{font-size:26px;font-weight:700;margin-bottom:12px;color:#0f172a}
.site-lock-text{color:#475569;font-size:15px;margin-bottom:20px}
.site-lock-form{margin-top:20px}
.site-lock-feedback{min-height:20px}
.site-lock-overlay .btn-dark{background:#0f172a;border-color:#0f172a}
.site-lock-overlay .btn-dark:hover{background:#1e293b;border-color:#1e293b}
.site-lock-overlay .btn-primary{background:var(--primary);border-color:var(--primary)}
.site-lock-overlay .btn-primary:disabled{opacity:0.65}
@media (max-width:575px){
    .site-lock-box{padding:28px 24px;border-radius:16px}
    .site-lock-title{font-size:22px}
}
/* overrides.css
   UI redesign overrides — keep purely presentational, do NOT change DOM/JS-related attributes
   Versioned via ?v=1 in layout to assist cache-busting during staging
*/

/* Import Manrope for headings */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&display=swap');

:root {
    /* Primary brand color updated to TAN orange */
    --brand-primary: #EF7D00;
    --brand-accent: #ff7a59;
    --bg: #f7f8fb;
    --card-bg: #ffffff;
    --muted: #6c757d;
    --radius: 10px;
    --max-width: 1200px;
}

/* Apply Manrope to primary headings (h1-h4) as requested. Keep body/system font for other text to preserve readability. */
h1, h2, h3, h4 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* Global resets and base */
html, body {
    background: var(--bg);
    color: #222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.container, .main-container {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Navbar/header tweaks (non-invasive selectors) */
nav.navbar, header.navbar, .site-header {
    background: linear-gradient(90deg, rgba(13,110,253,0.04), transparent);
    padding: 0.85rem 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Logo alignment without changing markup */
.navbar-brand img, .brand img {
    max-height: 90px !important;
    height: 90px !important;
    width: auto;
    display: block;
}

/* Card visuals for caravan list / admin cards */
.card, .caravan-card, .card-body {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(16,24,40,0.06);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover, .caravan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(16,24,40,0.08);
}

.card img, .caravan-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.card .card-title, .caravan-card .card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card .card-text, .caravan-card .card-text {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Buttons */
.btn, .button, .btn-primary {
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-weight: 600;
}
.btn-primary,
.btn-info {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-info:hover,
.btn-info:focus {
    background-color: #d66a00 !important;
    border-color: #d66a00 !important;
    color: #fff !important;
}
.btn-outline-primary {
    color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: #fff !important;
}

/* Ensure site-lock overlay buttons also use the brand orange */
.site-lock-overlay .btn-primary {
    background: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}

.hero, .search-pane {
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(13,110,253,0.03), transparent);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.meta, .meta small {
    color: var(--muted);
    font-size: 0.88rem;
}

/* Simple responsive grid helper - doesn't change existing DOM classes */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    nav.navbar { padding: 0.65rem 0; }
}

@media (max-width: 576px) {
    .cards-grid { grid-template-columns: 1fr; }
    .hero, .search-pane { padding: 1rem; }
}

/* Footer */
footer, .footer {
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

/* Accessibility focus states */
a:focus, button:focus, input:focus {
    outline: 3px solid rgba(13,110,253,0.12);
    outline-offset: 2px;
}

/* Testimonials */
.testimonial-card {
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card .card-text { font-style: italic; color: #333; }

/* End overrides */

/* Star button in admin thumbnail */
.admin-star-btn { padding: 3px 6px; font-size: 0.85rem; }

/* --- Dropdown hover behavior (desktop) ---
     Keep navbar dropdowns open while hovering either the toggle
     or the dropdown menu. Applies only on >= lg screens to avoid
     conflicting with mobile tap behavior. */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    /* Ensure menu stays visible if Bootstrap toggled it via aria-expanded */
    .navbar .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        display: block;
    }
}


/* Footer redesign */
.site-footer {
    margin-top: clamp(3rem, 8vw, 5rem);
    background: #0A1220B8;
    color: rgba(223,230,238,0.88);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    mix-blend-mode: normal;
    opacity: 0;
    z-index: 0;
}
.site-footer::after {
    content: '';
    position: absolute;
    inset: -140px -60px 20px;
    background: none;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}
.site-footer .container {
    max-width: min(1280px, calc(100% - 3rem));
}

.site-footer .container,
.site-footer .footer-top,
.site-footer .footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: clamp(3rem, 8vw, 4.6rem) 0;
}

.footer-top .row {
    justify-content: space-between;
}

.footer-top [class*="col-"] {
    display: flex;
}

.footer-top [class*="col-"] > * {
    width: 100%;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 1.5rem;
}
.footer-logo {
    max-height: 58px;
    width: auto;
    display: block;
}
.footer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-brand-kicker {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.62);
}
.footer-brand-baseline {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
}

.footer-desc {
    color: rgba(223,230,238,0.78);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.footer-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}
.footer-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(223,230,238,0.78);
}
.footer-checklist i {
    color: var(--brand-primary);
    font-size: 0.85rem;
}

.footer-links-block {
    margin-bottom: 2rem;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 1rem;
    position: relative;
}
.footer-heading::after {
    content: '';
    display: block;
    width: 46px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
    margin-top: 10px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
}
.footer-links-grid a {
    color: rgba(223,230,238,0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-links-grid a:hover,
.footer-links-grid a:focus {
    color: #fff;
}

.footer-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}
.footer-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(223,230,238,0.78);
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.footer-contact-card {
    background: rgba(10,18,32,0.72);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 28px 60px rgba(0,0,0,0.22);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.1rem;
}
.footer-contact-item i {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.footer-contact-item.align-items-start {
    align-items: flex-start;
}
.footer-contact-item.align-items-start i {
    margin-top: 0;
}
.footer-contact-item span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.68rem;
    color: rgba(223,230,238,0.5);
}
.footer-contact-item a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.footer-contact-item a:hover {
    text-decoration: underline;
}
.footer-contact-item p {
    color: rgba(223,230,238,0.8);
}
.footer-contact-card .btn {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(212,32,39,0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    background: rgba(5,10,18,0.25);
}
.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-bottom .small {
    color: rgba(223,230,238,0.65);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-social-label {
    color: rgba(223,230,238,0.6);
}
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-social-links .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}
.footer-social-links .social-icon:hover,
.footer-social-links .social-icon:focus {
    background: #fff;
    color: #0f1826;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-social {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-logo {
        max-height: 52px;
    }
}
html {
    scroll-padding-top: 96px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f2f5f9;
    color: #1e2833;
}

main { position: relative; z-index: 0; }

.site-navbar {
    background: none !important;
    background-color: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0.95rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1050;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
/* Scrolled state removed - navbar stays in place */
.site-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}
.site-navbar .brand-logo {
    max-height: 44px;
    width: auto;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}
.site-navbar .brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.site-navbar .brand-kicker {
    font-size: 0.72rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.site-navbar .brand-baseline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
.site-navbar .nav-links .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 2px solid transparent;
    margin: 0 4px;
}
.site-navbar .nav-links .nav-link::after {
    display: none;
}
.site-navbar .nav-links .nav-link:hover,
.site-navbar .nav-links .nav-link:focus {
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.8);
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}
.site-navbar .nav-links .nav-link.active {
    color: #fff !important;
    border: 2px solid var(--primary);
    background: rgba(239, 125, 0, 0.2);
}
.site-navbar .nav-links .nav-link.active::after {
    opacity: 1;
    transform: translateY(0);
}
.site-navbar .nav-btn {
    font-weight: 600;
    border-radius: 999px;
    padding: 0.45rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site-navbar .btn-outline-light {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.32);
}
.site-navbar .btn-outline-light:hover,
.site-navbar .btn-outline-light:focus {
    color: #0f1826;
    background: #fff;
    border-color: #fff;
}
.site-navbar .btn-primary {
    background: linear-gradient(135deg, #EF7D00 0%, #d66a00 100%) !important;
    border: none;
    box-shadow: 0 8px 18px rgba(239, 125, 0, 0.35);
}

/* Hamburger Menu - Clean Design */
.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    border: none !important;
    background-color: #111 !important;
    background-image: none !important;
    border-radius: 6px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    box-shadow: none !important;
    outline: none !important;
    position: relative !important;
    z-index: 9999 !important;
    isolation: isolate !important;
    overflow: visible !important;
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: flex !important;
    }
}
.navbar-toggler *,
.navbar-toggler::before,
.navbar-toggler::after {
    background-image: none !important;
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    background-color: #111 !important;
}
.navbar-toggler .toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff !important;
    background-image: none !important;
    border-radius: 2px;
    flex-shrink: 0;
}
.navbar-toggler-icon {
    display: none !important;
}
/* Hide any logo bleeding through */
.navbar-brand {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    /* Mobile navbar styling */
    .navbar-top-bar {
        background: #1a1a1a !important;
        padding: 0.5rem 0;
    }
    
    .navbar-top-bar a {
        color: #ffffff !important;
        font-size: 0.85rem;
    }
    
    .site-navbar {
        padding: 1rem 0;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .site-navbar .navbar-brand img {
        height: 50px !important;
    }
    
    .site-navbar .nav-links .nav-link::after { 
        display: none; 
    }
    
    /* Hamburger icon */
    .navbar-toggler {
        border: none !important;
        padding: 10px;
        background: transparent;
        position: relative;
        width: 40px;
        height: 40px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none !important;
    }
    
    .navbar-toggler-icon {
        position: relative;
        display: block;
        width: 28px;
        height: 3px;
        background: #2d2d2d;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 28px;
        height: 3px;
        background: #2d2d2d;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before {
        top: -8px;
    }
    
    .navbar-toggler-icon::after {
        bottom: -8px;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: translateY(8px) rotate(45deg);
        background: #EF7D00;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: translateY(-8px) rotate(-45deg);
        background: #EF7D00;
    }
    
    /* Mobile menu container */
    .navbar-collapse {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        margin-top: 1rem;
        padding: 1.5rem 1rem;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        border: 1px solid rgba(239, 125, 0, 0.3);
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.85rem 1rem;
        border-radius: 8px;
        color: #ffffff !important;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: #EF7D00;
        color: #ffffff !important;
    }
    
    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
        color: #EF7D00;
    }
    
    /* Dropdown menu - mobilde */
    .navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0,0,0,0.3) !important;
        border-radius: 8px !important;
        display: none !important;
        padding: 0.5rem 0 !important;
        margin: 0 0 0 1rem !important;
        border: none !important;
        border-left: 2px solid #EF7D00 !important;
    }
    
    .navbar .dropdown-menu.show {
        display: block !important;
    }
    
    .navbar .dropdown-item {
        padding: 0.6rem 1rem !important;
        color: #ffffff !important;
        font-size: 0.9rem !important;
        background: transparent !important;
        border-radius: 0 !important;
    }
    
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        color: #EF7D00 !important;
        background: transparent !important;
    }
    
    /* Online Collection button */
    .online-collection-link {
        margin-top: 1rem;
        display: block;
        text-align: center;
        padding: 0.85rem 1.5rem !important;
        border-radius: 50px;
        background: linear-gradient(135deg, #EF7D00 0%, #d66a00 100%) !important;
        color: #ffffff !important;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(239, 125, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .online-collection-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(239, 125, 0, 0.4);
    }
}

.hero-section {
    position: relative;
    color: #fff;
    min-height: clamp(520px, 72vh, 680px);
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    margin-bottom: 0;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(62,215,176,0.25), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(13,110,253,0.25), transparent 60%),
                linear-gradient(180deg, rgba(5,10,20,0.55), rgba(5,10,20,0.85));
    z-index: 0;
}
.hero-section > .container,
.hero-section > .hero-content {
    position: relative;
    z-index: 1;
}
.hero-section .display-4,
.hero-section h1,
.hero-section .lead,
.hero-section p {
    color: #fff !important;
}
.hero-section .hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.72);
}
.hero-eyebrow span {
    display: inline-flex;
    width: 34px;
    height: 2px;
    background: rgba(255,255,255,0.4);
}
.hero-title {
    font-size: clamp(2.75rem, 5vw, 3.8rem);
    letter-spacing: -0.5px;
    font-weight: 800;
    margin-bottom: 20px;
}
.hero-lead {
    font-size: 1.1rem;
    max-width: 520px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-actions .btn {
    border-radius: 999px;
    padding: 0.75rem 1.6rem;
    font-size: 1rem;
}
.hero-actions .btn-outline-light {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
}
.hero-actions .btn-outline-light:hover {
    background: #fff;
    color: #0f1826;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}
.hero-meta .meta-item {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}
.hero-meta .meta-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-meta .meta-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}
.hero-visual {
    position: relative;
    z-index: 1;
}
.hero-visual .floating-card {
    background: rgba(15,24,38,0.65);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 26px;
    color: #fefefe;
    max-width: 360px;
    margin-left: auto;
    box-shadow: 0 30px 64px rgba(7,14,24,0.45);
}
.hero-visual .floating-card h5 {
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-visual .floating-card h5 i {
    color: #ffd166;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-page {
    background: #f2f5f9;
}

.section-spacing {
    padding: 80px 0;
}

.contact-hero {
    position: relative;
    padding: 140px 0 90px;
    color: #fff;
    background: linear-gradient(135deg, rgba(9,26,45,0.95), rgba(13,110,253,0.85));
    overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(0.5px);
    pointer-events: none;
}

.contact-hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(76,201,240,0.55), transparent 70%);
    top: -120px;
    right: -160px;
}

.contact-hero::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,209,102,0.38), transparent 70%);
    bottom: -140px;
    left: -120px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.72);
}

.contact-eyebrow::before {
    content: '';
    width: 36px;
    height: 2px;
    background: rgba(255,255,255,0.45);
}

.contact-headline {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
}

.contact-highlight-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 12px;
}

.contact-highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
}

.contact-highlight-list i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.contact-hero-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 24px;
    display: grid;
    gap: 18px;
    box-shadow: 0 40px 80px rgba(5,15,35,0.28);
}

.contact-hero-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15,24,38,0.25);
}

.contact-hero-card__item .label {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.contact-hero-card__item .value {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.contact-section-heading h2 {
    font-weight: 700;
    color: #101b29;
}

.contact-section-heading p {
    color: #55606f;
    max-width: 560px;
    margin: 12px auto 0;
}

.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.contact-method-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(15,24,38,0.08);
    border: 1px solid rgba(15,24,38,0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
}

.contact-method-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, #EF7D00, #d66a00);
}

.contact-method-card .icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-method-card .icon.phone { background: linear-gradient(135deg, #EF7D00, #d66a00); }
.contact-method-card .icon.mail { background: linear-gradient(135deg, #EF7D00, #d66a00); }

.contact-method-card h3 {
    font-weight: 700;
    color: #101b29;
}

.contact-method-card p {
    color: #586473;
    flex-grow: 1;
}

.contact-method-card .meta {
    color: #7b8797;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #D42027, #b01c22);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(212,32,39,0.18);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #fff;
    background: linear-gradient(135deg, #b01c22, #8a161b);
}

.btn-phone {
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    color: #fff;
    border: none;
    box-shadow: 0 16px 32px rgba(67,97,238,0.25);
}

.btn-phone:hover,
.btn-phone:focus {
    color: #fff;
    background: linear-gradient(135deg, #4361ee, #364fc7);
}

.btn-email {
    background: linear-gradient(135deg, #ff9f1c, #ff6f59);
    color: #fff;
    border: none;
    box-shadow: 0 16px 32px rgba(255,111,89,0.25);
}

.btn-email:hover,
.btn-email:focus {
    color: #fff;
    background: linear-gradient(135deg, #ff6f59, #f3722c);
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 32px 70px rgba(15,24,38,0.08);
    border: 1px solid rgba(15,24,38,0.05);
    height: 100%;
}

.contact-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-card-header .badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(13,110,253,0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-card-header h3 {
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-schedule-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-schedule-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(15,24,38,0.04);
    color: #2c3745;
    font-weight: 500;
}

.contact-schedule-list strong {
    color: #EF7D00;
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(13,110,253,0.08);
    color: #0d2a4a;
}

.contact-alert i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 4px;
}

.contact-address h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-address p {
    color: #5e6a79;
    margin-bottom: 18px;
}

.contact-address-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(13,110,253,0.08);
    color: #0f3053;
}

.contact-tags {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-tags li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15,24,38,0.06);
    color: #354152;
    font-size: 0.9rem;
}

.contact-tags i { color: var(--primary); }

.contact-map-card {
    background: #0f1826;
    color: #fff;
    border-radius: 28px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(15,24,38,0.35);
}

.contact-map-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,110,253,0.18), transparent 60%);
    pointer-events: none;
}

.contact-map-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.contact-map-head h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-map-head p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
}

.contact-map-frame {
    margin-top: 16px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(3,12,24,0.45);
}
.contact-map-head .btn {
    align-self: flex-start;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}

.contact-map-frame iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.contact-map-empty {
    margin-top: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 36px;
    text-align: center;
    color: rgba(255,255,255,0.78);
    position: relative;
    z-index: 1;
}

.contact-map-empty i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #ffd166;
}

.contact-cta {
    padding: 70px 0 90px;
    background: linear-gradient(135deg, rgba(15,24,38,0.95), rgba(13,110,253,0.85));
    color: #fff;
}

.contact-cta-card {
    background: rgba(255,255,255,0.08);
    border-radius: 26px;
    padding: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 24px 70px rgba(5,15,30,0.4);
}

.contact-cta-card h3 {
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-cta-card p {
    margin: 0;
    color: rgba(255,255,255,0.75);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-actions .btn-outline-light {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.cta-actions .btn-outline-light:hover {
    background: #fff;
    color: #0d1f36;
}

@media (max-width: 991px) {
    .section-spacing { padding: 60px 0; }
    .contact-hero { padding: 120px 0 80px; }
    .contact-highlight-list { grid-template-columns: 1fr; }
    .contact-hero-card { margin-top: 32px; }
}

@media (max-width: 767px) {
    .contact-hero-card {
        grid-template-columns: 1fr;
    }
    .contact-method-card {
        padding: 24px;
    }
    .contact-card {
        padding: 26px;
    }
    .contact-map-frame iframe {
        height: 320px;
    }
}
.hero-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-highlight-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-highlight-thumb {
    width: 70px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-highlight-thumb i {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
}
.hero-highlight-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-highlight-copy .title {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}
.hero-highlight-copy .meta {
    color: rgba(255,255,255,0.72);
    font-size: 0.85rem;
}
.hero-highlight-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,0.18);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-highlight-link:hover,
.hero-highlight-link:focus {
    background: rgba(13,110,253,0.4);
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    .hero-section .hero-content {
        text-align: center;
        align-items: center;
    }
    .hero-actions { justify-content: center; }
    .hero-meta { justify-content: center; }
    .hero-visual { display: none; }
}

.section-heading {
    margin-bottom: 1.25rem;
}
.section-heading .eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.75rem;
    color: #4c5d70;
}
.section-heading h2 {
    font-weight: 700;
    color: #101b29;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(15, 24, 38, 0.08);
    border: 1px solid rgba(15, 24, 38, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(15, 24, 38, 0.12);
}
.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    margin-bottom: 20px;
}
.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-card p {
    color: #536273;
    margin: 0;
}

.caravan-card {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 60px rgba(15, 24, 38, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.caravan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 70px rgba(15, 24, 38, 0.18);
}
.caravan-card .card-img-top {
    height: 240px;
    object-fit: cover;
}
.caravan-card .placeholder-media {
    height: 240px;
}
.caravan-card .card-body {
    padding: 24px;
}
.caravan-card .card-title {
    font-weight: 700;
    font-size: 1.2rem;
}
.caravan-card .card-text {
    color: #607084;
}
.caravan-card .btn-primary {
    border-radius: 14px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
}

.testimonial-card {
    border: none;
    border-radius: 18px;
    background: linear-gradient(140deg, #ffffff, #f3f6ff);
    box-shadow: 0 20px 48px rgba(15, 24, 38, 0.08);
}
.testimonial-card .card-body {
    padding: 32px;
}
.testimonial-card i {
    color: var(--primary);
}
.testimonial-card .card-text {
    color: #334256;
    font-size: 1rem;
}

.counter-card {
    background: #ffffff;
    color: #111827;
    border-radius: 20px;
    padding: 38px 26px 34px;
    box-shadow: 0 18px 40px rgba(15, 24, 38, 0.08);
    border: 1px solid rgba(15,24,38,0.06);
    position: relative;
    overflow: visible;
}
.counter-icon {
    position: static;
    transform: none;
    margin: 0 auto 16px;
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
.counter-icon::before,
.counter-icon::after,
.counter-card::before,
.counter-card::after {
    display: none !important;
    content: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}
.counter-icon i {
    color: inherit;
}
.counter-value {
    font-size: 2.4rem;
    color: #0b1625;
}
.counter-label {
    color: #354254;
}

.blog-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 52px rgba(15, 24, 38, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(15, 24, 38, 0.16);
}
.blog-card .bg-image {
    height: 280px;
}

.faq-section .accordion-item {
    border: 1px solid rgba(15, 24, 38, 0.08);
    border-radius: 16px !important;
    box-shadow: 0 16px 35px rgba(15, 24, 38, 0.08);
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-section .accordion-button {
    font-weight: 600;
    color: #101b29;
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(13,110,253,0.08);
    color: #0d1f36;
}

.contact-item {
    background: rgba(15, 24, 38, 0.04);
    border-radius: 14px;
    padding: 12px 16px;
}
.contact-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-top {
    background: #0f1826;
    color: rgba(255,255,255,0.74);
}
.site-footer .footer-desc {
    color: rgba(255,255,255,0.72);
}
.site-footer .footer-links a {
    color: rgba(255,255,255,0.68);
}
.site-footer .footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    background: #0a121d;
    border-top: none;
}
.footer-bottom .copyright {
    color: rgba(255,255,255,0.52);
}
.footer-bottom .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: background 0.2s ease;
}
.footer-bottom .social-icon:hover {
    background: #fff;
    color: #0f1826;
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #52df7a);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

@media (max-width: 576px) {
    /* mobile adjustments for footer (CTA removed) */
    .back-to-top { display:none; }
}

/* Ensure hero section sits flush under sticky navbar */
.site-navbar { border-bottom: none !important; }
.site-navbar + main { margin-top: 0; }

.site-navbar + main > section:first-of-type {
    margin-top: -72px !important;
    padding-top: calc(140px + 72px);
}

@media (max-width: 991px) {
    .site-navbar + main > section:first-of-type {
        margin-top: 0 !important;
        padding-top: 120px;
    }
}



/* Sidebar thumbnails used in the blog detail "Diğer Yazılar" list */
.sidebar-thumb-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Styling for the "Diğer Yazılar" sidebar card to match the example */
.other-posts-card {
    background: #f6eee8; /* soft beige like screenshot */
    border-radius: 10px;
    padding: 14px;
}
.other-posts-card h6 { margin: 0 0 10px 0; font-weight:700; }
.other-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: inherit;
    text-decoration: none;
}
.other-post-item + .other-post-item {
    border-top: 1px solid rgba(0,0,0,0.05);
}
.other-post-title {
    font-size: 0.95rem;
    color: #111;
    line-height: 1.2;
    margin-bottom: 6px;
    /* allow wrapping to a maximum of 2 lines and show an ellipsis if longer */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 52px);
}
.other-post-date {
    font-size: 0.82rem;
    color: #8b8b8b;
}
.other-post-item:hover .other-post-title { color: var(--brand-primary); }

.sidebar-card a { color: inherit; }

/* Ensure other-posts thumbnails never expand due to generic .card img rules */
.other-posts-card .sidebar-thumb-img {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px;
}

/* On very small screens keep thumbnails slightly smaller to avoid wrapping issues */
@media (max-width: 420px) {
    .other-posts-card .sidebar-thumb-img {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px;
    }
    .other-post-title { font-size: 0.92rem; }
}

/* Make sidebar content align vertically next to the main image on large screens */
@media (min-width: 992px) {
    .sidebar-sticky {
        position: sticky;
        top: 160px; /* adjust if needed to perfectly align with the post image */
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    /* reduce default spacing inside sticky so it visually matches the main image block */
    .sidebar-sticky .card { margin-bottom: 0; }
}


    .error-section {
        position: relative;
        min-height: calc(100vh - 320px);
        padding: clamp(4rem, 10vw, 6rem) 0;
        display: flex;
        align-items: center;
        background:
            radial-gradient(circle at 20% 20%, rgba(62,215,176,0.18), transparent 55%),
            radial-gradient(circle at 82% 10%, rgba(13,110,253,0.22), transparent 58%),
            linear-gradient(180deg, rgba(10,15,25,0.85), rgba(10,15,25,0.92));
        color: #fff;
        overflow: hidden;
    }
    .error-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 110%, rgba(255,255,255,0.08), transparent 60%);
        opacity: 0.8;
    }
    .error-section .container {
        position: relative;
        z-index: 1;
    }
    .error-card {
        background: rgba(255,255,255,0.96);
        border-radius: 24px;
        padding: clamp(2.6rem, 6vw, 3.4rem);
        box-shadow: 0 25px 70px rgba(9, 19, 34, 0.25);
        color: #0f1826;
    }
    .error-icon {
        width: 96px;
        height: 96px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(13,110,253,0.16), rgba(62,215,176,0.28));
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
    }
    .error-icon i {
        font-size: 2.6rem;
    }
    .error-eyebrow {
        text-transform: uppercase;
        letter-spacing: 1.2px;
        font-size: 0.75rem;
        color: rgba(15,24,38,0.62);
        margin-bottom: 0.65rem;
    }
    .error-code {
        font-size: clamp(3.6rem, 8vw, 4.8rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        color: var(--primary);
        margin-bottom: 0.4rem;
    }
    .error-title {
        font-size: clamp(1.7rem, 3vw, 2.2rem);
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .error-message {
        color: #5c6a7a;
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    .error-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-bottom: 1.75rem;
    }
    .error-help {
        color: #6b7685;
        font-size: 0.95rem;
    }
    .error-help a {
        color: var(--primary);
        font-weight: 600;
    }

    @media (max-width: 767px) {
        .error-section {
            min-height: auto;
            padding: 4rem 0 3rem;
        }
    }

/* Hero Products Grid Styles */
.hero-products-wrapper {
    margin-top: 3rem;
}

.hero-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.hero-product-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    border-radius: 20px;
    padding: 1.75rem 1rem;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.hero-product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    transition: all 0.4s ease;
    font-weight: 600;
}

.hero-product-card:hover .hero-product-icon {
    transform: scale(1.1) rotate(-5deg);
}

.hero-product-name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

.hero-products-footer {
    text-align: center;
    margin-top: 2rem;
}

.hero-all-products-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-all-products-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35);
}

/* Mobilde sadece 6 ürün göster */
@media (max-width: 768px) {
    .hero-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .hero-product-mobile-hidden {
        display: none;
    }
    
    .hero-product-card {
        padding: 1.25rem 0.5rem;
        gap: 0.5rem;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-product-icon {
        width: 44px;
        height: 44px;
        font-size: 24px;
        background: transparent;
        color: #ffffff;
    }
    
    .hero-product-name {
        font-size: 0.75rem;
        font-weight: 600;
        color: #ffffff;
    }
}

/* Hizmetler bölümünü mobilde gizle */
@media (max-width: 991px) {
    #caravans {
        display: none !important;
    }
}

/* ===============================================
   GLOBAL ORANGE BUTTON OVERRIDE - Final Priority
   =============================================== */
/* Bu kurallar tüm mavi butonları #EF7D00 turuncuya çevirir */
.btn-primary,
.btn.btn-primary,
a.btn-primary,
button.btn-primary,
.site-footer .btn-primary,
footer .btn-primary,
.footer-contact-card .btn-primary,
.card .btn-primary,
.modal .btn-primary {
    background: linear-gradient(135deg, #EF7D00 0%, #d66a00 100%) !important;
    background-color: #EF7D00 !important;
    border-color: #EF7D00 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(239, 125, 0, 0.3) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
.site-footer .btn-primary:hover,
footer .btn-primary:hover {
    background: linear-gradient(135deg, #d66a00 0%, #c55f00 100%) !important;
    background-color: #d66a00 !important;
    border-color: #d66a00 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(239, 125, 0, 0.4) !important;
}

.btn-outline-primary,
a.btn-outline-primary {
    color: #EF7D00 !important;
    border-color: #EF7D00 !important;
    background: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
a.btn-outline-primary:hover {
    background: #EF7D00 !important;
    border-color: #EF7D00 !important;
    color: #ffffff !important;
}

.btn-info,
a.btn-info {
    background: #EF7D00 !important;
    border-color: #EF7D00 !important;
    color: #ffffff !important;
}

.btn-info:hover,
a.btn-info:hover {
    background: #d66a00 !important;
    border-color: #d66a00 !important;
}





/* --- Collections Fixes --- */
/* 1. Fix Eyebrow to have underline instead of strikethrough/side-lines */
#koleksiyonlar .eyebrow {
    text-decoration: none !important;
}
#koleksiyonlar .eyebrow::before {
    display: none !important;
}
#koleksiyonlar .eyebrow::after {
    content: '' !important;
    position: absolute !important;
    top: auto !important;
    bottom: -4px !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: var(--accent) !important; 
    /* Keep gradient if preferred: background: linear-gradient(90deg, transparent, var(--accent), transparent) !important; */
}

/* 2. Fix Pagination Bullets - Ensure dashed/line styles are actually underlines */
.collections-pagination .swiper-pagination-bullet {
    text-decoration: none !important;
    border-bottom: none !important; /* Reset existing border */
    position: relative;
}

.collections-pagination .swiper-pagination-bullet-active {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Add custom underline via pseudo-element for better control */
.collections-pagination .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    bottom: 5px; /* Position it nicely below text */
    left: 20px;  /* Match padding */
    right: 20px; /* Match padding */
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.collections-pagination .swiper-pagination-bullet-active::after {
    transform: scaleX(1);
}
