/* =====================================================
   BAHARMUZ CURTAINS & DECOR - MAIN STYLESHEET
   ===================================================== */

/* CSS Variables */
:root {
    --primary: #900B0B;
    --primary-dark: #6d0808;
    --primary-light: #b01010;
    --primary-gradient: linear-gradient(135deg, #900B0B 0%, #6d0808 100%);
    --secondary: #1a1a1a;
    --accent: #c9a962;
    --white: #ffffff;
    --light: #f8f8f8;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden !important;
    width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.highlight {
    color: var(--primary);
}

/* =====================================================
   PRELOADER
   ===================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
}

.loader-inner {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(8px);
}

#header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

#header.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-phone i {
    color: var(--primary-light);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown>.nav-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover>.nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.178);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.65rem 1.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 1.75rem;
}

/* Sub-submenu for nested dropdowns */
.has-submenu {
    position: relative;
}

.has-submenu>a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.has-submenu>a i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 101;
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li a {
    display: block;
    padding: 0.65rem 1.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.submenu li a:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 1.75rem;
}

/* Mega Menu Styles */
.mega-menu-item {
    position: static;
}

@media (min-width: 993px) {
    .mega-menu-item {
        position: relative;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        width: 1000px;
        max-width: 95vw;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        padding: 2rem 2.5rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 9999;
        border: 1px solid #e5e5e5;
    }

    .mega-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ffffff;
    }

    .mega-menu-item:hover>.mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(5px);
    }

    .mega-menu-content {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }

    .mega-menu-column h4 {
        font-size: 0.8rem;
        font-weight: 700;
        color: #171717;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
        border-bottom: 2px solid #900B0B;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mega-menu-column ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mega-menu-column ul li {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mega-menu-column ul li:last-child {
        border-bottom: none;
    }

    .mega-menu-column ul li a {
        display: block;
        padding: 0.5rem 0;
        color: #525252;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
    }

    .mega-menu-column ul li a:hover {
        color: #900B0B;
        padding-left: 8px;
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    /* Use dynamic viewport units for mobile address bar variations */
    min-height: 100svh;
    min-height: 100dvh;
    min-height: 100vh;
    /* fallback */
    background: var(--secondary);
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure Swiper fills hero height on all devices */
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 140px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: baseline;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 1, 1, 0.486);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Prevent AOS from shifting hero text on scroll */
.hero [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    position: absolute;
    bottom: 100px;
    right: 5%;
    display: flex;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Swiper Pagination */
.hero .swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* =====================================================
   HERO - DESKTOP LAYOUT ADJUSTMENTS
   Align hero slide content to the left (matching header container)
   and position the USP/stats block to the right for desktop view.
   ===================================================== */
@media (min-width: 1024px) {
    :root {
        --container-max: 1280px;
        /* kept in sync with .container */
        --container-pad: 1.5rem;
        --hero-left-width: 520px;
        /* width for left content column */
    }

    /* Pin the hero text content to the left edge of the central container */
    .hero-content {
        position: absolute;
        top: 50%;
        left: calc((100% - var(--container-max)) / 2 + var(--container-pad));
        width: var(--hero-left-width);
        max-width: none;
        padding: 0;
        transform: translateY(-50%);
        /* center vertically while keeping the same left alignment */
    }

    /* Make sure tag, heading and paragraph flow nicely in the narrower column */
    .hero-tag {
        margin-bottom: 1rem;
    }

    .hero h1 {
        margin-bottom: 1rem;
    }

    .hero p {
        margin-bottom: 1.75rem;
        max-width: 100%;
    }

    /* Keep hero buttons stacked/compact for the left column */
    .hero-btns {
        gap: 0.75rem;
    }

    /* Position the stats/USP block on the right side aligned with container */
    .hero-stats {
        position: absolute;
        bottom: 100px;
        right: calc((100% - var(--container-max)) / 2 + var(--container-pad));
        display: flex;
        gap: 2.5rem;
        padding: 1.75rem 2.5rem;
    }

    /* Slightly scale up numbers on large screens */
    .stat-number {
        font-size: 2.75rem;
    }

    .stat-suffix {
        font-size: 2.25rem;
    }

    /* Ensure swiper pagination remains centered but above the stats block */
    .hero .swiper-pagination {
        bottom: 36px !important;
    }
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-content {
    padding: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: -45px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-tags span {
    background: var(--gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link i {
    transition: var(--transition);
}

/* Service Submenu */
.service-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--gray-100);
}

.service-card:hover .service-submenu {
    max-height: 500px;
}

.service-submenu h4 {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.service-submenu ul {
    padding: 0 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.service-submenu li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-submenu li:last-child {
    border-bottom: none;
}

.service-submenu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    width: 100%;
    transition: var(--transition);
}

.service-submenu li a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.service-submenu li i {
    color: var(--primary);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Services CTA */
.services-cta {
    margin-top: 4rem;
    background-image: linear-gradient(135deg, rgba(144, 11, 11, 0.6) 0%, rgba(26, 26, 26, 0.75) 100%), url('https://zenkit.com/wp-content/uploads/2018/10/team-meeting-1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-cta .cta-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.services-cta .cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary-gradient);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-800);
}

.about-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(144, 11, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.feature-text h4 {
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

.about-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-us {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--secondary) 100%);
}

.why-us .section-tag,
.why-us .section-title,
.why-us .section-desc {
    color: var(--white);
}

.why-us .section-title .highlight {
    color: var(--accent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(144, 11, 11, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.gallery-zoom i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(144, 11, 11, 0.5) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.testimonials .section-header .section-tag {
    color: var(--white);
}

.testimonials .section-header .section-title {
    color: var(--white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.25rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.testimonials-aggregate {
    margin-top: 1rem;
    text-align: center;
}

.aggregate-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 1.25rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.aggregate-rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-left: 0.5rem;
}

.aggregate-count {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.testimonials .swiper-pagination {
    bottom: 0 !important;
}

.testimonials .swiper-pagination-bullet {
    background: var(--gray-400);
}

.testimonials .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background-image: linear-gradient(135deg, rgba(144, 11, 11, 0.6) 0%, rgba(26, 26, 26, 0.75) 100%), url('https://zenkit.com/wp-content/uploads/2018/10/team-meeting-1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}



.cta-section-home {
    background: #880B0B;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    text-align: center;
}

.cta-section-home h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section-home p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}



.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.info-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-content p,
.info-content a {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.info-content a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(144, 11, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-contact li span,
.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #1da851;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
    color: var(--white);
}

.lightbox-close i {
    font-size: 1.25rem;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1200px) {
    .hero-stats {
        bottom: 80px;
        right: 3%;
        left: auto;
        transform: none;
        gap: 2rem;
        padding: 1.5rem 2rem;
    }

    .hero-content {
        max-width: 600px;
    }

    .about-grid {
        gap: 3rem;
    }

    .mega-menu {
        width: 900px;
    }
}

@media (max-width: 992px) {

    /* Mobile Navigation Container */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--gray-900);
        padding: 90px 1.5rem 2rem;
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-links>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links>li:last-child {
        border-bottom: none;
    }

    /* Mobile nav links styling */
    .nav-link {
        display: block;
        padding: 1rem 0;
        color: var(--white);
        font-size: 1rem;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    /* Mobile dropdown styles */
    .nav-dropdown>.nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-dropdown>.nav-link i {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.open>.nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-radius: 8px;
        margin: 0 0 0.5rem 0;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 1000px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8);
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary-light);
        padding-left: 1.25rem;
    }

    /* Mobile sub-submenu */
    .has-submenu>a i {
        transform: rotate(90deg);
    }

    .submenu {
        position: static;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-left: 1rem;
    }

    .has-submenu.open>.submenu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .submenu li a {
        color: rgba(255, 255, 255, 0.7);
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .submenu li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--primary-light);
        padding-left: 1.25rem;
    }

    /* Mobile Mega Menu */
    .mega-menu {
        position: static !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-radius: 8px !important;
        margin: 0 0 0.5rem 0;
    }

    .mega-menu::before {
        display: none !important;
    }

    .mega-menu-item.open>.mega-menu {
        max-height: 3000px;
        padding: 1rem !important;
    }

    .mega-menu-content {
        display: block !important;
        width: 100%;
    }

    .mega-menu-column {
        margin-bottom: 1.5rem;
    }

    .mega-menu-column:last-child {
        margin-bottom: 0;
    }

    .mega-menu-column h4 {
        color: var(--accent) !important;
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.5rem !important;
        border-bottom: 2px solid var(--primary) !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600 !important;
    }

    .mega-menu-column ul {
        padding: 0;
        margin: 0;
    }

    .mega-menu-column ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mega-menu-column ul li:last-child {
        border-bottom: none;
    }

    .mega-menu-column ul li a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.6rem 0.5rem !important;
        font-size: 0.875rem !important;
        display: block;
        transition: all 0.2s ease;
    }

    .mega-menu-column ul li a:hover {
        color: var(--primary-light) !important;
        padding-left: 1rem !important;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Hide desktop nav elements on mobile */
    .nav-phone {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Layout adjustments */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-lead,
    .about-content p {
        text-align: center;
    }

    .about-btns {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Mobile overlay when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hero mobile fixes */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 100px 1rem 120px;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
        margin: 2rem auto 0;
        max-width: 95%;
    }

    .stat-item {
        min-width: 70px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-submenu ul {
        grid-template-columns: 1fr;
    }

    .service-card .service-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .service-card.submenu-open .service-submenu {
        max-height: 1000px;
    }

    .service-card:hover .service-submenu {
        max-height: 0;
    }

    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 220px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    /* WhatsApp button */
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        padding: 0;
        justify-content: center;
        left: 15px;
        bottom: 15px;
    }

    /* Back to top */
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 576px) {
    html {
        font-size: 15px;
        overflow-x: hidden !important;
        width: 100%;
    }

    .container {
        padding: 0 0.875rem;
    }

    /* Hero small mobile */
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 1rem;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-suffix {
        font-size: 1.25rem;
    }

    /* About section */
    .about-img-main img {
        height: 300px;
    }

    .about-img-secondary {
        width: 120px;
        right: 10px;
        bottom: -15px;
    }

    .about-img-secondary img {
        height: 120px;
    }

    .about-experience {
        left: 10px;
        top: 15px;
        padding: 0.875rem 1.25rem;
    }

    .exp-number {
        font-size: 2rem;
    }

    .exp-text {
        font-size: 0.75rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .gallery-item {
        height: 180px;
    }

    .gallery-item.large {
        grid-column: span 1;
        height: 200px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    /* Text alignment for mobile readability */
    .about-content,
    .about-content .section-tag,
    .about-content .section-title,
    .about-lead,
    .about-content p,
    .about-btns {
        text-align: left;
    }

    .about-btns {
        justify-content: flex-start;
        gap: 0.75rem;
        flex-direction: column;
    }

    .about-btns .btn {
        width: 100%;
    }

    /* Section headers */
    .section-header {
        text-align: left;
        margin-bottom: 2rem;
    }

    .section-tag {
        text-align: left;
    }

    /* Services */
    .service-content {
        text-align: left;
    }

    /* Feature items */
    .about-features .feature-text {
        text-align: left;
    }

    /* Footer */
    .footer-col {
        text-align: left;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-contact {
        text-align: left;
        padding-left: 0;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-contact li a {
        display: inline-block;
        text-align: left;
    }

    /* Contact info */
    .contact-info {
        text-align: left;
    }

    /* Hero remains centered */
    .hero-content,
    .hero-content h1,
    .hero-content p,
    .hero-tag {
        text-align: center;
    }

    .hero-btns {
        text-align: center;
        align-items: center;
    }

    /* CTA section */
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Why us cards */
    .why-card {
        padding: 1.5rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 1.5rem;
    }
}

/* =====================================================
   SERVICE PAGE RESPONSIVE STYLES
   ===================================================== */
/* Page Hero - Service Pages */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.breadcrumb a,
.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.breadcrumb i {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Service Page Grids */
.solutions-grid,
.benefits-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 992px) {
    .page-hero {
        min-height: 60vh;
        padding-top: 70px;
        background-attachment: scroll;
    }

    .page-hero-content {
        padding: 30px 15px;
    }

    .solutions-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 55vh;
        padding-top: 65px;
    }

    .page-hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }

    .page-hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .solutions-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 50vh;
        padding-top: 60px;
    }

    .page-hero-content {
        padding: 25px 15px;
    }

    .page-hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .page-hero-content p {
        font-size: 0.9rem;
    }

    .footer-updt7 {
        padding-bottom: 15px;
    }
}
/* =====================================================
   SEARCH OVERLAY
   ===================================================== */
.search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--white); /* White color for header icons */
    transition: var(--transition);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-trigger:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.search-close:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 0 1.5rem;
    text-align: center;
    transform: translateY(30px);
    transition: all 0.4s ease 0.1s;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-form {
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.search-form:focus-within {
    border-color: var(--primary);
}

.search-form input {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    padding: 0.5rem 3rem 0.5rem 0;
    outline: none;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    color: var(--white);
}

.search-hint {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

/* Search Results Page Styles */
.search-results-page {
    padding: 8rem 0;
    min-height: 80vh;
}

.search-header {
    margin-bottom: 3rem;
    text-align: center;
}

.search-query {
    color: var(--primary);
    font-style: italic;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.result-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.result-card h3 a {
    color: var(--gray-900);
}

.result-card h3 a:hover {
    color: var(--primary);
}

.result-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.result-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.result-link:hover {
    gap: 0.75rem;
}

.no-results {
    text-align: center;
    padding: 4rem 0;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--gray-500);
}

