/* Premium Corporate Logistics CSS System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0F172A; /* Slate 900 */
    --accent: #0275B1; /* Sky 700 - Compliant contrast with white */
    --accent-hover: #025a87;
    --light-bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --success: #10B981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--light-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 100px;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 50px;
    }
}

/* Header & Navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-top-bar {
    background: var(--header-top-bg);
    height: 38px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--header-top-text);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 105;
    position: relative;
}

.header-top-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contact-info a {
    color: var(--header-top-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.header-contact-info a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.header-contact-info i {
    color: var(--header-top-icon); /* Dynamic icon color */
    font-size: 13px;
}

.header-contact-info .sep {
    color: rgba(255, 255, 255, 0.2);
}

.header-contact-info .address-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-main-nav {
    background: var(--header-main-bg); /* Dynamic header main bg */
    height: 64px;
    position: relative;
    z-index: 106;
    display: flex;
    align-items: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Overlapping Logo Card */
.logo-wrapper {
    position: relative;
    background: var(--logo-bg); /* Match the logo background */
    padding: 15px 25px;
    margin-top: -38px; /* Alignment with top bar height */
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 110;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.logo-wrapper .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-fallback-text {
    color: white;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Menu Wrapper and Items */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    flex: 1;
    margin-left: 40px; /* Space from overlapping logo on the left */
    margin-right: 0;
    list-style: none; /* Safe reset */
}

.nav-menu-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--header-menu-text);
    position: relative;
    padding: 6px 0;
    letter-spacing: -0.1px;
    text-transform: uppercase;
}

/* Elegant white underline hover effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--header-menu-active);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--header-menu-hover);
}

/* ============================================
   PREMIUM HEADER RIGHT ACTION BUTTONS
   ============================================ */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social-links {
    display: flex;
    gap: 6px;
}

/* Social icon box */
.header-social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--header-menu-text);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.08);
}

.header-social-box:hover {
    background: rgba(255,255,255,0.95);
    color: var(--header-main-bg);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* â”€â”€ WhatsApp Butonu â”€â”€ */
.whatsapp-box {
    width: auto !important;
    height: 38px !important;
    padding: 0 14px !important;
    gap: 7px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border: none !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.whatsapp-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.whatsapp-box:hover {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55) !important;
    background: linear-gradient(135deg, #2edf72, #15a77e) !important;
}

.whatsapp-box:hover::before {
    opacity: 1;
}

.whatsapp-box i {
    font-size: 16px !important;
}

.whatsapp-box .wa-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Pulse ring animation on WhatsApp */
@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102, 0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(37,211,102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}
.whatsapp-box {
    animation: wa-pulse 2.5s cubic-bezier(0.4,0,0.6,1) infinite;
}
.whatsapp-box:hover {
    animation: none !important;
}

/* â”€â”€ ARA (Call) Butonu â”€â”€ */
.btn-header-call {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    height: 38px !important;
    padding: 0 18px !important;
    border-radius: 50px !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1.5px solid rgba(255,255,255,0.55) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12) !important;
}

.btn-header-call::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.95);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: inherit;
    z-index: 0;
}

.btn-header-call i,
.btn-header-call span,
.btn-header-call .call-text {
    position: relative;
    z-index: 1;
    transition: color 0.25s ease;
}

.btn-header-call i {
    font-size: 13px !important;
    animation: ring-shake 3s ease-in-out infinite;
}

@keyframes ring-shake {
    0%,90%,100% { transform: rotate(0deg); }
    92%          { transform: rotate(-12deg); }
    94%          { transform: rotate(12deg); }
    96%          { transform: rotate(-10deg); }
    98%          { transform: rotate(8deg); }
}

.btn-header-call:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
    border-color: #fff !important;
    background: rgba(255,255,255,0.22) !important;
}

/* â”€â”€ TEKLÄ°F AL Butonu â”€â”€ */
.btn-header-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    height: 38px !important;
    padding: 0 20px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, var(--header-cta-bg, #1a1a1a), color-mix(in srgb, var(--header-cta-bg, #1a1a1a) 75%, #d48c22)) !important;
    color: var(--header-cta-text, #fff) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25) !important;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
}

.btn-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.btn-header-cta:hover::before {
    animation: cta-shine 0.55s ease forwards;
}

@keyframes cta-shine {
    0%   { left: -75%; }
    100% { left: 130%; }
}

.btn-header-cta i {
    font-size: 13px !important;
    position: relative;
    z-index: 1;
}

.btn-header-cta span, .btn-header-cta {
    position: relative;
    z-index: 1;
}

.btn-header-cta:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35) !important;
    filter: brightness(1.08);
}

/* Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff; /* White toggle lines for golden bar */
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger to X Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--btn-radius); /* Modern pill style by default */
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    gap: 8px;
    letter-spacing: -0.1px;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.btn-primary:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.25);
}

.btn-outline {
    border: 1.5px solid var(--btn-outline-border);
    color: var(--btn-outline-text);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--btn-outline-hover-bg);
    color: var(--btn-outline-hover-text);
}

/* Hero Layout System */
.hero {
    position: relative;
    padding: 32px 0;
    overflow: hidden;
}

/* Main Slider */
.hero-main-swiper {
    width: 100%;
    height: 480px; /* Modern height */
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12); /* Modern, soft shadow */
}

.hero-main-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px; /* Generous padding */
}

.hero-main-swiper picture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-main-swiper .slide-bg {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-main-swiper .slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
}

.hero-main-swiper .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px; /* Elegant text container width */
    color: white;
}

/* Split Layout for Main Slider */
.hero-main-swiper.layout-split .swiper-slide {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    background: var(--slider-bg, linear-gradient(135deg, var(--primary) 0%, #1e293b 100%));
}

.hero-main-swiper.layout-split picture {
    position: relative;
    width: 60%;
    height: 100%;
    order: 2;
    z-index: 1;
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-main-swiper.layout-split .slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main-swiper.layout-split .slide-overlay {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.4) 0%, transparent 100%);
    width: 60%;
    left: 40%;
}

.hero-main-swiper.layout-split .hero-content {
    width: 40%;
    padding: 40px 60px;
    order: 1;
    z-index: 2;
    max-width: 100%;
    justify-content: center;
}

/* Mobile Responsive stacking for split layout */
@media (max-width: 992px) {
    .hero-main-swiper.layout-split .swiper-slide {
        flex-direction: column;
    }
    .hero-main-swiper.layout-split picture {
        width: 100%;
        height: 250px;
        order: 1;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        overflow: hidden;
    }
    .hero-main-swiper.layout-split .hero-content {
        width: 100%;
        height: auto;
        padding: 40px 24px;
        order: 2;
    }
    .hero-main-swiper.layout-split .slide-overlay {
        width: 100%;
        height: 250px;
        left: 0;
        top: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.6) 100%);
    }
}

/* 3-Column Vertical Gallery Overlay inside Hero Main */
.hero-gallery-overlay {
    position: absolute;
    top: 0; right: 0;
    width: 45%; height: 100%;
    z-index: 2;
    padding: 30px;
}

.hero-side {
    height: 500px; /* Match the main slider height */
    width: 100%;
}

.hero-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: 100%;
}

.hero-gallery-grid.single-column {
    grid-template-columns: 1fr;
}

.hero-gallery-grid .swiper {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hero-gallery-grid .gallery-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-gallery-grid .swiper-wrapper {
    transition-timing-function: linear !important;
}

@media (max-width: 992px) {
    .d-none-mobile {
        display: none !important;
    }
    
    .hero-main-swiper {
        height: 400px; /* Shorter for mobile since it doesn't contain the gallery anymore */
    }

    .hero-main-swiper .swiper-slide {
        padding: 30px 20px; /* Reduced padding on mobile */
    }

    .hero-main-swiper .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-side {
        height: 300px; /* Ensure a fixed height for vertical swipers on mobile */
    }

    .hero-gallery-grid {
        gap: 8px;
    }

    .hero-main-swiper .slide-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.3) 100%);
    }

    .hero-vertical-swiper {
        height: 300px;
    }
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 52px);
    color: var(--slider-text, white);
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    font-weight: 800;
    line-height: 1.1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.hero-content p {
    font-size: 16px;
    color: var(--slider-text, white);
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-actions .btn {
    padding: 12px 28px;
    font-size: 14px;
    border-radius: var(--btn-radius); /* Modern pill style buttons in hero */
}

.hero-actions .btn-primary {
    background-color: var(--slider-btn-bg, #ffffff);
    color: var(--slider-btn-text, var(--primary));
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.hero-actions .btn-primary:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}

.hero-actions .btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: white;
}

.hero-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    transform: translateY(-2px);
}

/* Vertical Side Slider */
.hero-side {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.side-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-vertical-swiper {
    width: 100%;
    height: 420px; /* Fixed height for 3 items */
    overflow: hidden;
}

.hero-vertical-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    height: calc((100% - 32px) / 3) !important; /* Forces 3 items exactly with 16px gap */
}

.hero-vertical-swiper .swiper-slide img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.hero-vertical-swiper .swiper-slide h4 {
    font-size: 13px;
    text-align: center;
    margin: 0;
    color: var(--primary);
}

/* Swiper Controls Customization */
.hero-main-swiper .swiper-button-next, 
.hero-main-swiper .swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.2) !important; /* Semi-transparent white */
    width: 36px !important;
    height: 36px !important;
    --swiper-navigation-size: 16px !important; /* Scale down the inner icon */
    border-radius: var(--radius-sm) !important;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    top: auto !important;
    bottom: 30px !important;
    margin: 0 !important;
    z-index: 20 !important;
    display: flex !important;
    opacity: 1 !important;
}

.hero-main-swiper .swiper-button-prev {
    left: 30px !important;
}

.hero-main-swiper .swiper-button-next {
    left: 74px !important; /* 30px + 36px + 8px gap = 74px */
    right: auto !important;
}

.hero-main-swiper .swiper-button-next:hover, 
.hero-main-swiper .swiper-button-prev:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

.hero-main-swiper .swiper-pagination {
    left: auto !important;
    right: 30px !important;
    width: auto !important;
    bottom: 32px !important;
    text-align: right !important;
    z-index: 10 !important;
}

.hero-main-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin: 0 4px !important;
}

.hero-main-swiper .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--accent);
}

@media (max-width: 768px) {
    .hero-main-swiper .swiper-pagination {
        right: 0 !important;
        left: 0 !important;
        text-align: center !important;
        bottom: 20px !important;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    transition: width 0.4s ease;
    z-index: 5;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(2, 117, 177, 0.2);
}

.service-card:hover::after {
    width: 100%;
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img img,
.service-card-img picture,
.service-card-img picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img img,
.service-card:hover .service-card-img picture img {
    transform: scale(1.08);
}

.service-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover .service-card-img::after {
    opacity: 1;
}

.service-card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-content h3 {
    color: var(--accent);
}

.service-card-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    height: 4.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.readmore {
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.readmore i {
    transition: transform 0.3s ease;
}

.service-card:hover .readmore {
    color: var(--primary);
}

.service-card:hover .readmore i {
    transform: translateX(6px);
}

/* Services Section Modern Showcase */
.services-section-modern {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-title-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-modern h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title-modern p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
    margin-bottom: 80px;
}

.services-showcase-container.services-reversed {
    grid-template-columns: 1.2fr 1fr;
}

.services-showcase-container.services-reversed .services-visual-showcase {
    order: 2;
}

.services-showcase-container.services-reversed .services-list-showcase {
    order: 1;
}

/* Visual Showcase (Left) */
.services-visual-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow-lg);
}

.visual-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showcase-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.showcase-image-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 60%);
    z-index: 3;
    pointer-events: none;
}

/* Services List Showcase (Right) */
.services-list-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.service-item-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-item-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item-row:hover,
.service-item-row.active {
    background-color: white;
    border-color: rgba(2, 117, 177, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(6px);
}

.service-item-row:hover::before,
.service-item-row.active::before {
    transform: scaleY(1);
}

.service-item-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background-color: rgba(2, 117, 177, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-item-row:hover .service-item-icon,
.service-item-row.active .service-item-icon {
    background-color: var(--accent);
    color: white;
    transform: rotateY(360deg);
}

.service-item-info {
    flex-grow: 1;
    min-width: 0;
}

.service-item-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-item-row:hover .service-item-info h3,
.service-item-row.active .service-item-info h3 {
    color: var(--accent);
}

.service-item-info p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-item-arrow {
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.service-item-row:hover .service-item-arrow,
.service-item-row.active .service-item-arrow {
    transform: translateX(4px);
    color: var(--accent);
    opacity: 1;
}

/* Stats Counter Section */
.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.stat-counter-card {
    background-color: var(--card-bg);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-counter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 117, 177, 0.2);
}

.stat-counter-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(2, 117, 177, 0.06);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-counter-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-counter-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-showcase-container,
    .services-showcase-container.services-reversed {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .services-visual-showcase {
        min-height: 280px;
        order: -1 !important;
    }

    .services-showcase-container.services-reversed .services-visual-showcase {
        order: -1 !important;
    }

    .services-showcase-container.services-reversed .services-list-showcase {
        order: 0 !important;
    }
    
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services-visual-showcase {
        min-height: 200px;
    }

    .stats-counter-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section-modern {
        padding: 60px 0;
    }
    
    .service-item-row {
        padding: 16px;
        gap: 14px;
    }
    
    .service-item-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .service-item-info h3 {
        font-size: 16px;
    }
    
    .service-item-info p {
        font-size: 12.5px;
    }
}

/* Quote CRM Form Section */
.quote-section {
    padding: 80px 0;
    background-color: white;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.quote-info {
    padding: 60px;
    background: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-info h2 {
    color: white;
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 20px;
}

.quote-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.quote-info-list {
    list-style: none;
}

.quote-info-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.quote-info-list li i {
    color: var(--accent);
    font-size: 20px;
}

.quote-form-container {
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .quote-form-container {
        padding: 30px 20px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
}

label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

input, select, textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    background-color: white;
    transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

/* Footer styling */
footer {
    background-color: var(--footer-bg-theme);
    color: var(--footer-text-color);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-layout-3-column {
    grid-template-columns: 2fr 1fr 1fr;
}

.footer-layout-2-column {
    grid-template-columns: 1fr 1fr;
}

.footer-layout-1-column {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.footer-column h4 {
    color: var(--footer-title-color);
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-column p {
    color: var(--footer-text-color);
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-link-color);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--footer-link-hover);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: white;
}

.social-link:hover {
    background: var(--accent);
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.footer-bottom a {
    color: #7dd3fc;
    text-decoration: underline;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: white;
}

/* City Detail/SEO page layout */
.city-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: white;
    padding: 36px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .city-hero {
        padding-top: 100px !important;
        padding-bottom: 30px !important;
    }
    .city-hero .container {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
    }
}

.city-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 117, 177, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.city-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.city-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.city-hero h1 {
    color: white;
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.city-hero p, 
.city-hero div {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.city-hero p a,
.city-hero div a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

.city-hero p a:hover,
.city-hero div a:hover {
    color: var(--accent);
}

.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 48px;
}

.content-body {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-box {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

@media (max-width: 992px) {
    .hero-grid, .quote-wrapper, .content-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
}

/* Central Media Manager Integration Styles */
.logo-img {
    max-height: 48px;
    object-fit: contain;
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GLightbox Customization */
.gslide-image img {
    max-width: 75vw !important;
    max-height: 75vh !important;
    border-radius: var(--radius-md) !important; 
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
    }
}

/* ===== Gallery Page - Category Filter ===== */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid transparent;
    background: #E2E8F0;
    color: var(--text-main);
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.filter-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.filter-btn.active {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

/* Gallery grid override - slightly smaller min to show more items */
.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Gallery item show/hide animation */
.gallery-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item.hidden {
    display: none !important;
}

/* Gallery image overlay effect */
.service-card-img a.glightbox {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-img a.glightbox::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 28px;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card-img a.glightbox::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 132, 199, 0.6);
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card-img a.glightbox:hover::before {
    opacity: 1;
}

.service-card-img a.glightbox:hover::after {
    transform: translate(-50%, -50%) scale(1);
}



/* Magnifying glass icon overlay for galleries */
.gallery-zoom-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

a.glightbox:hover .gallery-zoom-icon {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Dropdown & Mega Menu Toggle Style */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Mega Menu Panel Styles */
.nav-item.mega-dropdown {
    position: static; /* Align mega menu panel to header */
}

.mega-menu-panel {
    position: absolute;
    top: 80px; /* height of header navbar */
    left: 50px;
    right: 50px;
    z-index: 1001;
    display: none;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    height: 480px;
    overflow: hidden;
    animation: slideDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show mega menu panel when open class is active */
.nav-item.mega-dropdown.open .mega-menu-panel {
    display: block;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    height: 100%;
}

/* Left Column: Cities List */
.mega-cities-list {
    background-color: var(--light-bg);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    height: 100%;
    padding: 15px 0;
}

.mega-city-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mega-city-item i {
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0;
    transition: all 0.2s ease;
}

.mega-city-item:hover,
.mega-city-item.active {
    background-color: var(--card-bg);
    color: var(--accent);
    border-left-color: var(--accent);
}

.mega-city-item:hover i,
.mega-city-item.active i {
    opacity: 1;
    transform: translateX(3px);
}

/* Right Column: Districts Container */
.mega-districts-container {
    padding: 30px;
    overflow-y: auto;
    height: 100%;
    background-color: var(--card-bg);
}

.mega-districts-panel {
    display: none;
    height: 100%;
}

.mega-districts-panel.active {
    display: flex;
    flex-direction: column;
}

.mega-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.mega-panel-header h3 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

.btn-view-city {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.2s ease;
}

.btn-view-city:hover {
    color: var(--accent-hover);
}

.mega-districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 1200px) {
    .mega-districts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mega-districts-grid a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.mega-districts-grid a:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-1px);
}

.no-districts {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
}

/* Webkit Scrollbars for Mega Menu lists */
.mega-cities-list::-webkit-scrollbar,
.mega-districts-container::-webkit-scrollbar {
    width: 6px;
}

.mega-cities-list::-webkit-scrollbar-track,
.mega-districts-container::-webkit-scrollbar-track {
    background: transparent;
}

.mega-cities-list::-webkit-scrollbar-thumb,
.mega-districts-container::-webkit-scrollbar-thumb {
    background-color: rgba(15, 23, 42, 0.1);
    border-radius: 3px;
}

.mega-cities-list::-webkit-scrollbar-thumb:hover,
.mega-districts-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(2, 132, 199, 0.5);
}

@media (max-width: 992px) {
    .header-top-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 99200;
    }
    
    .mobile-menu-toggle span {
        background-color: var(--header-menu-text, #ffffff);
    }
    
    .scrolled .mobile-menu-toggle span {
        background-color: var(--primary, #0F172A);
    }
    
    .logo-wrapper {
        margin-top: 0;
        height: 60px;
        padding: 10px 15px;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .nav-overlay {
        z-index: 99000 !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -290px;
        width: 290px;
        height: 100vh;
        background-color: var(--card-bg);
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 80px 20px 40px 20px;
        gap: 20px !important;
        box-shadow: -15px 0 35px rgba(15, 23, 42, 0.15);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
        z-index: 99100;
        overflow-y: auto;
        border-radius: 20px 0 0 20px;
        margin: 0 !important;
        flex: none !important;
        visibility: hidden;
    }
    
    .nav-menu.active {
        right: 0;
        visibility: visible;
    }
    
    .nav-menu-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
    }
    
    .nav-menu-list li {
        width: 100%;
    }
    
    .nav-link {
        color: var(--text-main) !important;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px !important;
        width: 100%;
        border-radius: var(--radius-sm);
        background: rgba(15, 23, 42, 0.02);
        transition: all 0.25s ease;
    }
    
    .nav-link:hover, .nav-link.active {
        background: rgba(2, 117, 177, 0.08) !important;
        color: var(--accent, #0275B1) !important;
        padding-left: 20px !important;
    }
    
    .nav-link::after {
        display: none !important;
    }
    
    .header-right-actions {
        flex-direction: column;
        align-items: stretch !important;
        width: 100%;
        gap: 12px;
        border-top: 1px solid var(--border-color);
        padding-top: 20px;
        margin-top: 10px;
    }
    
    .nav-menu .whatsapp-box {
        width: 100% !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2) !important;
    }
    
    .nav-menu .btn-header-call {
        background: var(--accent, #0275B1) !important;
        color: #ffffff !important;
        border: none !important;
        width: 100% !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(2, 117, 177, 0.2) !important;
    }
    
    .nav-menu .btn-header-cta {
        width: 100% !important;
        justify-content: center !important;
        background: var(--primary, #0F172A) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25) !important;
    }
    
    .header-social-box {
        color: var(--text-main);
        border-color: var(--border-color);
    }
    
    .header-social-box:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }
    
    .nav-item.mega-dropdown {
        position: relative;
    }
    
    .mega-menu-panel {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background-color: transparent !important;
        margin-top: 10px !important;
        padding: 0 0 0 15px !important;
        border-left: 2px solid var(--border-color) !important;
        display: none;
        animation: none !important;
    }
    
    .nav-item.mega-dropdown.open .mega-menu-panel {
        display: block;
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }
    
    .mega-cities-list {
        height: auto !important;
        max-height: 280px !important;
        overflow-y: auto !important;
        border-right: none !important;
        padding: 0 8px 0 0 !important;
        background-color: transparent !important;
    }
    
    .mega-city-item {
        padding: 8px 12px !important;
        border-left: none !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        display: block !important;
        line-height: 1.4 !important;
        border-radius: var(--radius-sm);
        background: rgba(15, 23, 42, 0.01);
        margin-bottom: 4px;
        color: var(--text-main) !important;
    }
    
    .mega-city-item:hover, .mega-city-item.active {
        background-color: rgba(2, 117, 177, 0.05) !important;
        color: var(--accent, #0275B1) !important;
    }
    
    .mega-districts-container {
        display: none !important;
    }
}

/* Side Banner Styles */
.hero-side-swiper .side-slide-bg,
.hero-side-swiper picture,
.hero-side-swiper picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Horizontal Gallery Row Styles */
.gallery-row-img {
    height: 180px;
    width: 280px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-row-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.horizontal-gallery-swiper {
    width: 100%;
    padding: 10px 0;
}

@media (max-width: 992px) {
    .gallery-row-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .quick-quote-cta {
        height: auto !important;
        padding: 24px !important;
    }
}

.img-fluid-cover {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .img-fluid-cover {
        height: 250px;
    }
}

/* Premium Advanced Slider Layout */
.hero-main-swiper.layout-split .swiper-slide {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    background: var(--slider-bg, #0F172A);
}

.slide-split-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

.slide-left-content {
    width: 40%;
    padding: 48px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    color: var(--slider-text, white);
    box-sizing: border-box;
}

.slide-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(2, 117, 177, 0.2);
    color: var(--accent);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.slide-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--slider-text, white);
    line-height: 1.15;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.slide-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--slider-text, white);
    opacity: 0.8;
    margin-bottom: 28px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.slide-buttons .btn {
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.slide-buttons .btn-primary {
    background-color: var(--slider-btn-bg, var(--accent));
    color: var(--slider-btn-text, white);
}

.slide-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 117, 177, 0.3);
}

.slide-buttons .btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: var(--slider-text, white);
}

.slide-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.slide-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.slide-stat-card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

.stat-number {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--slider-text, white);
}

.stat-number-anim {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--slider-text, white);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--slider-text, white);
    opacity: 0.7;
    white-space: nowrap;
}

.slide-right-media {
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
}

.media-display-box {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.media-display-box .slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.2) 0%, transparent 100%);
    z-index: 1;
}

.filmstrip-gallery-wrapper {
    height: 100px;
    padding: 12px 24px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.filmstrip-marquee {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    width: 100%;
}

.filmstrip-marquee::-webkit-scrollbar {
    height: 4px;
}

.filmstrip-marquee::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.filmstrip-item {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.filmstrip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.filmstrip-item.active,
.filmstrip-item:hover {
    border-color: var(--accent);
    opacity: 1;
    transform: translateY(-2px);
}

/* Animations active states */
.hero-main-swiper.animation-kenburns .swiper-slide-active .slide-bg {
    animation: kenburnsEffect 15s ease-out forwards;
}

@keyframes kenburnsEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

/* Mobile Responsive Adjustments for split advanced slider */
@media (max-width: 992px) {
    .slide-split-container {
        flex-direction: column;
    }
    
    .slide-left-content {
        width: 100%;
        height: auto;
        padding: 40px 24px;
        order: 2;
    }
    
    .slide-right-media {
        width: 100%;
        height: 320px;
        order: 1;
    }
    
    .media-display-box {
        border-radius: 0;
    }
    
    .filmstrip-gallery-wrapper {
        padding: 8px 16px;
        height: 80px;
    }
    
    .filmstrip-item {
        width: 48px;
        height: 48px;
    }
    
    .slide-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Blog Section Modern UX */
.blog-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

.blog-main-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-main-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(2, 117, 177, 0.2);
}

.blog-main-img {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.blog-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-main-card:hover .blog-main-img img {
    transform: scale(1.05);
}

.blog-main-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-main-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--primary);
    line-height: 1.3;
}

.blog-main-content h2 a:hover {
    color: var(--accent);
}

.blog-main-content p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Sidebar List */
.blog-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    height: 100%;
}

.blog-sidebar-card {
    flex-grow: 1;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: center;
}

.blog-sidebar-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 117, 177, 0.2);
    background-color: white;
}

.blog-sidebar-img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.blog-sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-sidebar-card:hover .blog-sidebar-img img {
    transform: scale(1.08);
}

.blog-sidebar-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-sidebar-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-sidebar-card:hover .blog-sidebar-content h3 {
    color: var(--accent);
}

.blog-sidebar-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.readmore-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .blog-main-img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .blog-sidebar-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .blog-sidebar-img {
        height: 160px;
    }
}




/* Dropdown Menu CSS */
.nav-item.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--card-bg, #ffffff);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    border: 1px solid var(--border-color);
}
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.dropdown-menu li::before {
    content: none !important;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main, #333);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
}
.dropdown-menu li a:hover {
    background-color: var(--light-bg, #f8fafc);
    color: var(--accent, #0275B1);
    padding-left: 25px;
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        border: none;
        background: rgba(0,0,0,0.02);
    }
    .nav-item.dropdown.open .dropdown-menu {
        display: block;
    }
}
