/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --primary-color-rgb: 26, 54, 93;
    --secondary-color: #c53030;
    --accent-color: #d69e2e;
    --light-color: #f7fafc;
    --dark-color: #2d3748;
    --gray-color: #a0aec0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    padding-top: 0;
    /* Removed padding for desktop full screen hero */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn:hover {
    background-color: #9c1c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-hero {
    font-size: 1rem;
    padding: 15px 35px;
    margin-top: 30px;
}

.btn-estimate {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    /* For particle container */
    overflow: visible;
    /* Allow particles to fly out */
}

.mobile-only-btn {
    display: none;
}

.btn-estimate:hover {
    background-color: #c09527;
    animation: buttonShakeVertical 0.8s ease-in-out infinite;
}

@keyframes buttonShakeVertical {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-4px);
    }

    40% {
        transform: translateY(4px);
    }

    60% {
        transform: translateY(-4px);
    }

    80% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Subtle Terms Trigger Styles */
.terms-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray-color);
    border-radius: 50%;
    font-size: 10px;
    margin-left: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    vertical-align: middle;
}

.terms-trigger:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

/* Global Responsive Modal Styles */
.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    backdrop-filter: blur(8px);
}

.terms-modal.active {
    display: flex;
}

.terms-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-modal-close {
    position: sticky;
    top: -20px;
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    background: white;
    padding: 5px;
    border-radius: 50%;
    line-height: 1;
    z-index: 10;
}

.terms-modal-close:hover {
    color: var(--secondary-color);
}

.terms-modal-body h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.terms-modal-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 768px) {
    .terms-modal-content {
        padding: 25px;
        width: 95%;
    }

    .terms-modal-body h3 {
        font-size: 1.3rem;
    }

    .terms-modal-body p {
        font-size: 0.85rem;
    }
}

/* Ribbon Particles Styling */
.btn-estimate .ribbon-particle {
    position: absolute;
    width: 10px;
    height: 4px;
    /* Thin like a ribbon */
    pointer-events: none;
    z-index: 100;
    border-radius: 1px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.google-verified-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(72, 187, 120, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(72, 187, 120, 0.2);
    margin-bottom: 1.5rem;
}

.google-verified-badge i {
    color: #48bb78;
    font-size: 1.1rem;
}

.google-verified-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3748;
}

/* Floating Feedback Elements */
.floating-feedback {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    z-index: 0;
    pointer-events: none;
    font-size: 1.2rem;
    animation: floatAround 12s ease-in-out infinite;
    opacity: 0.35;
}

.floating-feedback i {
    color: var(--primary-color);
}

.feedback-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.feedback-2 {
    top: 60%;
    right: 5%;
    animation-delay: -3s;
}

.feedback-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: -6s;
}

.feedback-4 {
    top: 25%;
    right: 15%;
    animation-delay: -2s;
    font-size: 0.9rem;
    width: 40px;
    height: 40px;
}

.feedback-5 {
    bottom: 35%;
    right: 25%;
    animation-delay: -8s;
    font-size: 1rem;
    width: 45px;
    height: 45px;
}

.feedback-6 {
    top: 75%;
    left: 8%;
    animation-delay: -5s;
    font-size: 0.8rem;
    width: 35px;
    height: 35px;
}

.feedback-7 {
    top: 40%;
    left: 30%;
    animation-delay: -9s;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -30px) rotate(2deg);
    }

    66% {
        transform: translate(-15px, 20px) rotate(-1deg);
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .floating-feedback {
        display: none;
    }
}

/* Fluid Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optimize Large Image Sections for Scroll */
.services-grid,
.service-item,
.service-item img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.service-item img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Prevent double-animation lag on grid items */
.services-grid .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Fix for smooth scroll conflicts */
html {
    scroll-behavior: auto !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Staggered Delay for Grid Items */
.reveal-stagger {
    transition-delay: calc(var(--delay, 0) * 100ms);
}

/* Smooth Scroll HTML requirement */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title.no-line::after {
    display: none;
}

.section-padding {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Header Top Bar (Desktop Only) */
.header-top {
    background-color: transparent !important;
    color: white;
    padding: 10px 0 5px;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-scrolled-center-logo,
.mobile-notch-logo {
    display: none !important;
}

.header-top.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.desktop-only {
    display: block;
}

.mobile-only,
.mobile-bottom-nav-bar,
.mobile-bottom-sheet {
    display: none;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    /* Align locations left, call button right */
    align-items: center;
    gap: 20px;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.locations span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    padding: 0 2px;
}

.locations span:not(:last-child)::after {
    content: '-';
    margin-left: 8px;
    opacity: 0.5;
}

.locations span:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Call Now Button */
.call-now {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 6px 0;
    border-radius: 0;
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    font-weight: 600;
    border: none;
}

/* Desktop Only Popup Styles */
@media (min-width: 1151px) {
    .call-now:hover {
        opacity: 0.8;
    }

    .wp-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        backdrop-filter: blur(8px);
        animation: fadeIn 0.3s ease;
    }

    .wp-modal.active {
        display: flex;
    }

    .wp-modal-content {
        background: white;
        padding: 40px;
        border-radius: 24px;
        text-align: center;
        position: relative;
        max-width: 380px;
        width: 90%;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        transform: scale(0.9);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .wp-modal.active .wp-modal-content {
        transform: scale(1);
    }

    .wp-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.2rem;
        cursor: pointer;
        color: #718096;
        transition: color 0.2s;
    }

    .wp-modal-close:hover {
        color: #2d3748;
    }

    .wp-icon-header {
        width: 60px;
        height: 60px;
        background: #f7fafc;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 1.5rem;
        color: var(--primary-color);
        border: 1px solid #edf2f7;
    }

    .wp-modal-content h3 {
        color: var(--dark-color);
        margin-bottom: 15px;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .wp-modal-content p {
        color: #4a5568;
        font-size: 1.1rem;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .wp-modal-content .location-text {
        font-size: 0.95rem;
        color: #718096;
        margin-top: 5px;
    }

    .wp-btn-call {
        display: inline-block;
        margin-top: 25px;
        background: var(--primary-color);
        color: white;
        padding: 12px 30px;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
    }

    .wp-btn-call:hover {
        background: #102a43;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(26, 54, 93, 0.3);
    }

    .call-hover {
        display: none !important;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

.call-hover::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
}

.call-now:hover .call-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.call-hover p {
    margin: 5px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-hover i {
    color: var(--secondary-color);
    width: 16px;
}

.call-now i {
    font-size: 1rem;
}

/* Main Header */
.main-header {
    padding: 15px 0;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent !important;
}

.main-header.scrolled {
    background-color: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    top: 0;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-img {
    height: 60px;
    /* Reduced to 60px */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.main-header.scrolled .logo-img {
    height: 50px;
    /* Reduced on scroll */
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .desktop-nav {
        display: block;
    }

    .nav-menu {
        display: flex;
        gap: 30px;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        transition: var(--transition);
        padding: 5px 0;
        color: white;
        position: relative;
    }

    .main-header.scrolled .nav-link {
        color: var(--dark-color);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--accent-color);
    }

    .nav-link i {
        font-size: 0.8rem;
        margin-left: 5px;
        transition: var(--transition);
    }

    .nav-link:hover i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        min-width: 220px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: var(--transition);
        z-index: 100;
        border-top: 3px solid var(--accent-color);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(5px);
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
        transition: var(--transition);
        color: var(--dark-color);
        font-weight: 500;
    }

    .dropdown-menu a:hover {
        background-color: #f8f9fa;
        color: var(--secondary-color);
        padding-left: 25px;
    }

    .desktop-estimate {
        display: block;
    }
}

/* Desktop Estimate Button */
.desktop-estimate {
    margin-left: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: var(--transition);
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header.scrolled .mobile-menu-toggle {
    color: var(--primary-color);
    background: rgba(26, 54, 93, 0.1);
}

/* Clean Full Page Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Vignette effect: Clear in the center, dark at the edges */
    background: radial-gradient(circle,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.2) 75%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
    /* Positioned backward/behind the text container */
    pointer-events: none;
}

/* Hero Content Section (Separate from background) */
.hero-content-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    margin-top: -1px;
    /* To overlap with hero section */
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tag {
    text-align: center;
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tag:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tag h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 700;
}

.tag p {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Slide Content Stylings */
.hero-slide-content {
    position: absolute;
    bottom: 100px;
    left: 8%;
    z-index: 10;
    /* Strictly forward/on top of the black background */
    color: white;
    max-width: 900px;
    text-align: left;
    padding: 0 20px;
}

.hero-slide-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(1.5rem, 4vw, 2.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px;
    text-transform: none;
    /* Changed from uppercase as requested */
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(-50px);

    /* White Text with Black Splash Effect */
    background: linear-gradient(90deg, #ffffff 40%, rgba(26, 54, 93, 0.5) 50%, #ffffff 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation:
        fastFadeInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
        blackSplash 4s infinite linear;

    position: relative;
    display: block;
    text-align: left;
    overflow: visible;
    padding: 0 !important;
}

.hero-slide-title span {
    font-weight: 300 !important;
    text-transform: none;
    /* Keeps the second part looking lighter and more natural */
    display: block;
    margin-top: 5px;
    letter-spacing: 0;
    /* Ensure span also gets the parent's background-clip effect */
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-pill-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fastFadeInUp 0.6s ease-out 0.4s forwards;
}

.hero-mini-pill {
    background-color: #c53030;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(197, 48, 48, 0.25);
    /* extra whiteness */
}

@keyframes fastFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fastFadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blackSplash {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    padding: 10px 0;
    display: none;
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gray-color);
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 10px;
    flex: 1;
    max-width: 80px;
    min-width: 60px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--secondary-color);
    background: rgba(197, 48, 48, 0.1);
    transform: translateY(-5px);
}

.mobile-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.mobile-nav-item span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sticky Chat/WhatsApp Icons */
/* Sticky Container Redesign */
.sticky-container {
    position: fixed;
    right: 25px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sticky-social-blur {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sticky-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.mobile-call-fab {
    display: none;
    /* Hidden by default */
}

.whatsapp-item {
    background: #25D366;
}

.email-item {
    background: #c53030;
    /* Red for Email */
}

.call-item {
    background: #3b82f6;
    /* Bright Blue for Call */
    display: none;
    /* User requested remove from other views (Desktop/Tablet) */
}

.sticky-icon i {
    z-index: 2;
}

.icon-label {
    position: absolute;
    right: 55px;
    background: white;
    color: #333;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.sticky-icon:hover {
    transform: scale(1.15);
}

.sticky-icon:hover .icon-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Sticky Container Mobile Hide Rule Removed */

/* Global Section Building Sketch Background - Background-attachment: fixed removed for performance */
section:not(.hero) {
    position: relative;
    background-size: cover;
}

/* Services Grid (Replaced Package Offers) */
.what-we-do-grid {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    /* Optimization: Tells the browser this section is isolated */
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 8px;
    margin-top: 30px;
}

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Optimization */
    will-change: transform;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    padding: 20px;
    text-align: center;
}

.service-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    transform: translateY(10px);
}

/* Premium Hover Effect */
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.service-item:hover img {
    transform: scale(1.15);
}

.service-item:hover .service-overlay {
    background: rgba(255, 255, 255, 0.92);
    /* High performance alternative to blur */
    box-shadow: inset 0 0 0 10px rgba(0, 0, 0, 0.03);
}

.service-item:hover h3 {
    transform: translateY(0);
    letter-spacing: 5px;
    color: var(--primary-color);
}

.service-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.service-item.wide {
    grid-column: span 2;
}

.more-services-container {
    text-align: center;
    margin-top: 20px;
}

.btn-more-services {
    background-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-more-services:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--secondary-color);
}

.short-thought-section {
    margin-top: 40px;
    text-align: center;
    padding: 30px 20px;
    background: transparent;
    border-radius: 20px;
}

.thought-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-call-executive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(197, 48, 48, 0.2);
}

.btn-call-executive:hover {
    transform: scale(1.05);
    background: #a52828;
    box-shadow: 0 12px 25px rgba(197, 48, 48, 0.3);
}

@media (max-width: 768px) {
    /* Rules removed to allow desktop grid layout for .services-grid */
}

/* What We Do */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat {
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    margin: 0 10px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 600;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: normal;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-controls button {
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.info-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.contact-form button {
    width: 100%;
    font-size: 1rem;
    padding: 15px;
}

/* Footer */
.footer {
    background-color: #222222;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    transition: var(--transition);
    opacity: 0.9;
    display: inline-block;
    padding: 2px 0;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
}

/* Responsive Design */
/* Tablets */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content-section {
        padding: 80px 0;
    }

    .hero-tags {
        gap: 20px;
    }

    .tag {
        min-width: 160px;
        padding: 20px 15px;
    }

    .tag h3 {
        font-size: 1.8rem;
    }

    .packages-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .package.featured {
        transform: none;
    }

    .package.featured:hover {
        transform: translateY(-10px);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide location bar on tablet */
    .header-top.desktop-only {
        display: none;
    }

    /* Adjust main header for tablet */
    .main-header {
        top: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo {
        color: var(--primary-color);
    }

    /* Mobile Scrolled Center Logo Base State */
    .mobile-scrolled-center-logo {
        display: block !important;
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10001;
        width: 140px;
        pointer-events: none;
        opacity: 0;
        background: transparent !important;
        transition: all 0.4s ease;
        text-align: center;
    }

    .mobile-scrolled-center-logo.visible {
        opacity: 1;
        top: 15px;
    }

    /* iPhone-Like Notch Logo */
    .mobile-notch-logo {
        display: flex !important;
        /* Override the desktop hiding */
        position: fixed;
        top: -60px;
        /* Hidden initially */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10002;
        /* Above even the mobile header */
        background: white;
        padding: 5px 20px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 140px;
        height: 45px;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        /* Bounce effect */
        cursor: pointer;
    }

    .mobile-notch-logo img {
        height: 25px;
        width: auto;
        object-fit: contain;
    }

    /* Show Notch when scrolled */
    .mobile-notch-logo.visible {
        top: 0;
    }

    /* Mobile Bottom Nav for Tablet */
    .mobile-bottom-nav {
        display: block;
    }

    /* What We Do Grid on Tablet */
    .what-we-do-grid .services-grid {
        gap: 0px !important;
        /* Zero gap for tablet */
    }


}

/* Mobile Phones */
@media (max-width: 768px) {



    body {
        padding-top: 70px;
    }

    .section-padding {
        padding: 60px 0;
    }



    /* Landing Page Mobile Text Adjustments */
    /* Landing Page Mobile Text Adjustments */
    .hero-slide-content {
        position: absolute !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        width: 100% !important;
        padding: 0 20px 40px 20px !important;
        /* Bottom padding to keep it off edge */
        transform: translateY(0) !important;
        /* Reset any other transforms */
        z-index: 50 !important;
        justify-content: flex-end !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        text-align: left !important;
    }

    .hero-slide-title {
        font-size: 2.8rem !important;
        /* Bigger text */
        line-height: 1.1 !important;
    }

    .hero-slide-title span {
        font-size: 2.2rem !important;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .mobile-only-btn {
        display: inline-block !important;
        margin-top: 15px;
        font-size: 0.9rem;
        padding: 12px 25px;
    }

    /* Hide location bar on mobile */
    .header-top.desktop-only {
        display: none;
    }

    .main-header {
        top: 0;
        padding: 10px 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo-img {
        height: 40px;
        /* Smaller on mobile */
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-tags {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .tag {
        min-width: auto;
        padding: 15px 10px;
    }

    .tag h3 {
        font-size: 1.5rem;
    }

    .packages-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat {
        margin: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: block;
    }

    .mobile-nav-container {
        padding: 0 5px;
    }

    .mobile-nav-item {
        padding: 8px 5px;
        min-width: 55px;
    }

    .mobile-nav-item i {
        font-size: 1.1rem;
    }

    .mobile-nav-item span {
        font-size: 0.7rem;
    }

    .mobile-nav-item span {
        font-size: 0.7rem;
    }

    /* Hide the default main header logo when scrolled fully if needed, 
       but user didn't explicitly ask to hide it. 
       However, to avoid overlap with a center logo, 
       we might want to hide the original logo in this state. */

    /* Sticky container is hidden via max-width: 768px rule already added */
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .mobile-side-menu {
        width: 85%;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-tags {
        grid-template-columns: 1fr;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step {
        max-width: 300px;
        margin: 0 auto;
    }

    .mobile-nav-item span {
        font-size: 0.65rem;
    }
}

/* Animation for Hero Content */
.hero-content>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.animated>* {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   NEW (Sketch Based) Hero Layout Styles
   ========================================= */

/* Top Row: Specialization - Horizontal Circles */
.specialization-section {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.specialization-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 5;
}

#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    color: var(--secondary-color);
    /* Changed to Red globally */
    opacity: 0.15;
    pointer-events: none;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    90% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}


/* Specialization Grid Design */
.specialization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
    padding: 20px 0;
}

.spec-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 48, 48, 0.1);
    border-color: var(--secondary-color);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: #FFF5F5;
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    background: var(--secondary-color);
    color: white;
    transform: rotateY(180deg);
}

.spec-info h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 992px) {
    .specialization-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .specialization-grid {
        grid-template-columns: 1fr;
    }

    .spec-card {
        padding: 20px;
    }
}

/* New Full Width Container */
.hero-fluid-container {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 20px;
}

/* Row 2: Split Video (Left) + Text (Right) */
.video-text-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
}

#video-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.video-side {
    flex: 0 0 75%;
    /* 3/4 Width */
    max-width: 75%;
    position: relative;
    z-index: 2;
}

.video-container {
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-side {
    flex: 0 0 25%;
    /* 1/4 Width */
    max-width: 25%;
    text-align: left;
    padding-left: 10px;
    position: relative;
    z-index: 2;
}

.text-side h3 {
    font-size: 1.3rem;
    /* Slightly smaller to fit column */
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.text-side p {
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Row 3: Centered Action Buttons */
.bottom-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.bottom-action-buttons .btn {
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 0.9rem;
    border-radius: 50px;
    /* Added margin radius (border-radius) */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bottom-action-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #2c5282;
    /* Darker shade on hover */
}

/* Button variants reused but specific for this section */
.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    /* Tablet/Medium Screens - Allow wrap if needed but try to keep single row or scroll */
    .trust-circles-horizontal .trust-circle {
        width: 130px;
        height: 130px;
    }

    .video-side {
        flex: 0 0 65%;
        max-width: 65%;
    }

    .text-side {
        flex: 0 0 35%;
        max-width: 35%;
    }
}

@media (max-width: 768px) {
    .video-text-split {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }

    .video-side,
    .text-side {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .text-side {
        padding: 0 10px;
    }

    .trust-circles-horizontal {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .trust-circles-horizontal .trust-circle {
        width: 110px;
        height: 110px;
    }

    .arrow-connector {
        display: none;
        /* Hide arrows on wrap mobile */
    }
}

@media (max-width: 600px) {
    .trust-circles-horizontal .trust-circle {
        width: 130px;
        flex: 0 0 calc(50% - 10px);
        /* 2 columns */
    }

    .bottom-action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bottom-action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .specialization-title {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

/* =========================================
   COMPANY DETAILS & MISSION (Detailed)
   ========================================= */
.company-details {
    overflow: hidden;
}

.content-block.alternating {
    display: flex;
    min-height: 350px;
    align-items: stretch;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.block-text,
.block-image {
    flex: 0 0 50%;
    width: 50%;
}

.block-text {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-text.gray-bg {
    background-color: #f4f4f4;
}

.block-text.white-bg {
    background-color: #ffffff;
}

.block-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-vision-item {
    margin-bottom: 25px;
}

.mission-vision-item h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.mission-vision-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.detail-list {
    margin-bottom: 30px;
}

.detail-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.detail-list li i {
    color: var(--secondary-color);
}

.detail-list.small li {
    font-size: 1rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.detail-list.small li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.sub-section {
    margin-bottom: 30px;
}

.sub-section h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.approach-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 40px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 25px;
}

.stats-premium {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat-p {
    display: flex;
    flex-direction: column;
}

.stat-n {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-l {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

/* Premium Hover Effects for Images */
.block-image {
    overflow: hidden;
    position: relative;
}

.block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
}

.content-block:hover .block-image img {
    transform: scale(1.08);
}

.block-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 48, 48, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.content-block:hover .block-image::after {
    opacity: 1;
}

/* Responsiveness */
@media (max-width: 992px) {

    .content-block.alternating,
    .content-block.reverse {
        flex-direction: column;
    }

    .block-text,
    .block-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .block-text {
        padding: 40px 20px;
    }

    .block-image {
        height: 250px;
        /* Reduced from 350px/full width to be approximately half in mobile feel */
        /* If user wants literally 50vh (half screen): */
        max-height: 50vh;
    }

    .block-title {
        font-size: 1.8rem;
    }

    .block-actions {
        flex-direction: column;
        width: 100%;
    }
}

.block-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.block-actions .btn {
    border-radius: 10px;
    padding: 12px 25px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.block-actions .btn:hover {
    transform: translateY(-2px) scale(1.03);
}

.common-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.common-actions .btn {
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.common-actions .btn:hover {
    transform: translateY(-3px) scale(1.02);
}

/* =========================================
   PRODUCTION UNIT SECTION (Left Video & Gallery)
   ========================================= */
.production-unit {
    background-color: #ffffff;
}

.production-right-side {
    flex: 0 0 50%;
    width: 50%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 30px;
}

.production-video-container-split {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Ratio */
    height: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Soft light border */
}

.production-video-container-split iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.gallery-action-right {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.production-right-side .btn-outline-dark {
    padding: 10px 30px;
    font-size: 0.85rem;
    border-radius: 50px;
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 700;
}

.production-right-side .btn-outline-dark:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-3px);
}

.brand-info-side {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.production-unit .company-name {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.production-unit .location-tag {
    margin-bottom: 0;
}

.production-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.production-actions .btn {
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .production-unit .content-block.alternating {
        flex-direction: column-reverse;
    }

    .production-right-side {
        flex: 0 0 100%;
        width: 100%;
        padding: 40px 20px;
        background: #ffffff;
    }
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-rating i {
    margin: 0 2px;
}

/* =========================================
   LATEST BLOGS SECTION
   ========================================= */
.blogs-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.blog-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.blog-header-box .section-title {
    margin-bottom: 0;
    text-align: left;
}

.blog-header-box .section-title::after {
    left: 0;
    transform: none;
}

.blog-card-slider {
    padding-bottom: 50px !important;
    position: relative;
}

.blog-item-card {
    background: #fff;
    border: 1px solid #eee;
    height: auto;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-item-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-item-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item-card:hover .blog-item-image img {
    transform: scale(1.05);
}

.blog-item-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.blog-item-title {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5em;
    /* Fixed height for 3 lines roughly */
}

.blog-item-card .btn {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .blog-header-box {
        flex-direction: row;
        gap: 15px;
    }

    .blog-header-box .section-title {
        font-size: 1.5rem;
    }
}

/* =========================================
   COMPANY PAGE STYLES
   ========================================= */
.company-banner {
    height: 550px;
    background: url('showroom.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.company-banner h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

/* Mobile Overrides for Company Banner */
@media (max-width: 992px) {
    .company-banner {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
        overflow: hidden !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        /* cover is usually better for background images than 100% 100% */
        background-position: center center !important;
    }

    .company-banner .banner-overlay {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .company-banner h1 {
        font-size: 1.6rem !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        line-height: 1.3 !important;
    }
}

.section-padding {
    padding: 80px 0;
}

.gray-bg {
    background-color: #f8f9fa;
}

.max-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mt-30 {
    margin-top: 40px;
}

.welcome-content .sub-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-content .tagline {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.welcome-content .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.welcome-split .split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-split .split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.text-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Process Circles */
.process-circles {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.process-circles::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.process-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.process-item .circle {
    width: 100px;
    height: 100px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-item .circle:hover,
.process-item .circle.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(156, 28, 28, 0.3);
}

.process-item p {
    font-size: 0.85rem;
    color: #666;
}

.process-detail-box {
    margin-top: 50px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Factory Chart */
.factory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.promo-box {
    background: white;
    padding: 40px;
    border: 2px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.promo-box .discount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.promo-box p {
    font-size: 1.2rem;
    font-weight: 700;
}

.chart-container {
    background: white;
    padding: 40px;
    border: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.bar-group {
    text-align: center;
    width: 40%;
}

.bar {
    width: 100%;
    margin: 0 auto 15px;
}

.gray-bar {
    background: #444;
}

.purple-bar {
    background: var(--secondary-color);
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse .split-text {
    direction: ltr;
}

.split-content.align-center {
    align-items: center;
}

@media (max-width: 1150px) {

    .company-banner {
        height: 350px;
        /* Reduced height for tablet */
    }

    .company-banner h1 {
        font-size: 2rem;
        /* Smaller heading */
    }

    .welcome-split .split-content,
    .factory-grid,
    .split-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Reset order for reverse sections so Image is Top, Text is Bottom */
    .split-content.reverse {
        direction: ltr;
        /* Reset direction */
    }

    .split-content.reverse .split-image {
        order: 1;
        /* Image first */
    }

    .split-content.reverse .split-content {
        order: 2;
        /* Text second */
    }

    .process-circles {
        flex-direction: row;
        /* Keep horizontal */
        overflow-x: auto;
        /* Allow scroll if needed or wrap */
        flex-wrap: nowrap;
        gap: 20px;
        padding-bottom: 20px;
        /* Space for scrollbar */
        justify-content: flex-start;
    }

    .process-circles::before {
        display: none;
    }

    .process-item {
        min-width: 120px;
        /* Ensure strictly defined width */
        padding: 0;
    }

    .process-item .circle {
        margin: 0 auto 15px;
        /* Centered circle */
    }

    /* Service Pages Responsiveness (Overrides for Inline Styles) */
    .interior-solution-grid,
    .solutions-grid,
    .category-feature-row,
    .process-steps,
    .feature-images,
    .projects-showcase,
    .gallery-grid-premium,
    .video-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .category-feature-row {
        margin-bottom: 40px !important;
        text-align: center;
        /* Center align for better mobile look */
    }

    .interior-hero,
    .category-hero,
    .faq-hero,
    .contact-hero {
        height: 350px !important;
        /* Reduce hero height */
    }

    /* Ensure images in feature rows fit */
    .feature-images img {
        height: auto !important;
        max-height: 300px;
    }

    /* Intro text box spacing */
    .intro-box {
        margin-bottom: 30px !important;
    }

    /* Contact Page Tablet Overrides */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-info-side {
        order: 2;
    }

    .contact-form-side {
        order: 1;
        margin-bottom: 50px;
    }

    /* Blog Page Tablet Overrides */
    .blog-container,
    .blog-single-container {
        flex-direction: column !important;
    }

    .blog-sidebar,
    .blog-single-sidebar {
        position: static !important;
        margin-top: 40px !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .blog-hero {
        height: 350px !important;
    }
}

@media (max-width: 768px) {
    .company-banner h1 {
        font-size: 2rem;
    }

    .welcome-content .tagline {
        font-size: 1.6rem;
    }

    .welcome-split .split-content {
        gap: 30px;
    }
}

/* Sample Gallery Styles */
.design-samples .factory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .design-samples .factory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .design-samples .factory-grid {
        grid-template-columns: 1fr;
    }
}

.sample-item {
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sample-item:hover {
    transform: translateY(-10px);
}

.sample-item .img-wrapper {
    height: 250px;
    /* Fixed height for all images */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sample-item .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.sample-item:hover .img-wrapper img {
    transform: scale(1.1);
}

/* Global Button Refinements */
.btn-primary {
    border-radius: 50px !important;
    padding: 8px 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 10px rgba(197, 48, 48, 0.2);
    font-size: 0.8rem !important;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 15px rgba(197, 48, 48, 0.3);
}

/* Spacing & Sizing Refinements */
.section-padding {
    padding: 50px 0;
}

.split-text h2,
.split-text .sub-title {
    margin-bottom: 25px;
}

.split-text p {
    margin-bottom: 20px;
}

.split-text .btn {
    margin-top: 30px;
}

.split-image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.welcome-split .split-content {
    gap: 80px;
}

.modern-design .split-content,
.affordable-design .split-content,
.locations-section .split-content {
    gap: 80px;
}

/* Interior Design Solutions Grid Styles */
.interior-solution-grid {
    margin-bottom: 50px;
}

/* Interior Design Solutions Grid Styles */
.interior-solution-grid {
    margin-bottom: 50px;
}

.solution-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover img {
    transform: scale(1.1);
}

/* Shine effect */
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 0.6s ease;
    z-index: 3;
}

.solution-card:hover::before {
    left: 150%;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 2;
}

.solution-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.4) !important;
}

.card-label {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-label::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #00fff2);
    animation: rotate-border 4s linear infinite;
    z-index: -1;
}

.card-label::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    z-index: -1;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.solution-card:hover .card-label {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: #00fff2;
}

/* FAQ Page Styles */
.faq-hero {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/images/unsplash_e1fc3076e6194d8ec911567403a5c4ba.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-hero p {
    font-size: 1.5rem;
    font-weight: 400;
}

.faq-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.section-title-faq {
    margin-bottom: 50px;
    text-align: center;
}

.section-title-faq h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title-faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: #f9f9f9;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* FAQ Accordion Styles - Base */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    padding: 20px 30px;
    color: #555;
    line-height: 1.8;
    border-top: 1px solid #f9f9f9;
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }

    .faq-hero p {
        font-size: 1.1rem;
    }
}

/* Background Particles Styles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    color: rgba(138, 43, 226, 0.4);
    /* Stronger purple/violet */
    animation: float-particle linear infinite;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.3));
    font-weight: 900;
}

.faq-section {
    position: relative;
    z-index: 1;
}

@keyframes float-particle {
    0% {
        transform: translateY(30vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-150vh) rotate(720deg) scale(1.5);
        opacity: 0;
    }
}

.particle {
    color: var(--secondary-color);
    /* Corrected to Red */
    filter: drop-shadow(0 0 8px rgba(197, 48, 48, 0.2));
}

/* Gallery Specific Styles */
.gallery-hero {
    height: 40vh;
}

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item-premium {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb, 26, 54, 93), 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.gallery-item-premium:hover img {
    transform: scale(1.1);
}

.gallery-item-premium:hover .gallery-overlay-premium {
    opacity: 1;
}

/* Video Gallery Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-item-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.video-item-card:hover {
    transform: translateY(-10px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 25px;
    text-align: center;
}

.video-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.video-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-video {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 50px;
}

.btn-video:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(197, 48, 48, 0.4);
}

@media (max-width: 768px) {
    .gallery-grid-premium {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-hero {
        height: 30vh;
    }
}

/* Contact Page Styles */
.contact-hero {
    height: 45vh;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-block h3 i {
    color: var(--secondary-color);
}

.info-block p {
    color: #666;
    margin-bottom: 10px;
}

.info-block ul {
    list-style: none;
    margin: 20px 0;
}

.info-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #666;
}

.info-block ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-card-premium {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.contact-card-premium h3 {
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
}

.contact-card-premium h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-weight: 700;
}



/* Page Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 50px;
    position: relative;
}

.loader-text {
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0;
    color: #c53030;
    /* Primary Red */
    animation: text_713 3.5s ease both infinite;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.load {
    background-color: #c53030;
    /* Primary Red */
    border-radius: 50px;
    display: block;
    height: 16px;
    width: 16px;
    bottom: 0;
    position: absolute;
    transform: translateX(64px);
    animation: loading_713 3.5s ease both infinite;
}

.load::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #f56565;
    /* Lighter Red */
    border-radius: inherit;
    animation: loading2_713 3.5s ease both infinite;
}

@keyframes text_713 {
    0% {
        letter-spacing: 1px;
        transform: translateX(0px);
    }

    40% {
        letter-spacing: 2px;
        transform: translateX(26px);
    }

    80% {
        letter-spacing: 1px;
        transform: translateX(32px);
    }

    90% {
        letter-spacing: 2px;
        transform: translateX(0px);
    }

    100% {
        letter-spacing: 1px;
        transform: translateX(0px);
    }
}

@keyframes loading_713 {
    0% {
        width: 16px;
        transform: translateX(0px);
    }

    40% {
        width: 100%;
        transform: translateX(0px);
    }

    80% {
        width: 16px;
        transform: translateX(64px);
    }

    90% {
        width: 100%;
        transform: translateX(0px);
    }

    100% {
        width: 16px;
        transform: translateX(0px);
    }
}

@keyframes loading2_713 {
    0% {
        transform: translateX(0px);
        width: 16px;
    }

    40% {
        transform: translateX(0%);
        width: 80%;
    }

    80% {
        width: 100%;
        transform: translateX(0px);
    }

    90% {
        width: 80%;
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
        width: 16px;
    }
}

/* ==========================================================================
   TABLET RESPONSIVENESS (1024px and below)
   ========================================================================== */
@media (max-width: 1150px) {
    .header-top.desktop-only {
        display: none !important;
    }

    .main-header {
        top: 0 !important;
        background-color: white !important;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .desktop-nav,
    .desktop-estimate {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(var(--primary-color-rgb), 0.1);
        color: var(--primary-color);
    }

    .logo-img {
        height: 45px;
    }

    .mobile-bottom-nav {
        display: none !important;
    }

    .container,
    .container-wide {
        padding: 0 25px;
    }

    /* Hero Tablet Refinements */
    .hero {
        height: 450px !important;
        min-height: 450px !important;
    }

    .hero-slide-content {
        bottom: 50% !important;
        transform: translateY(50%) !important;
        left: 5% !important;
        max-width: 90% !important;
        width: auto !important;
    }

    .hero-slide-title {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }

    /* Specialization 3x2 Grid on Tablet (Filling screen) */
    .trust-circles-horizontal {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px 10px !important;
        padding: 40px 0 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow-x: visible !important;
        justify-items: center !important;
    }

    .trust-circle {
        width: 125px !important;
        height: 125px !important;
        margin: 0 auto !important;
        border: 2px solid rgba(197, 48, 48, 0.3) !important;
        /* Bigger border/radius effect */
    }

    .trust-circles-horizontal .arrow-connector {
        display: none !important;
    }

    .tablet-hidden {
        display: none !important;
    }

    /* Service Grid Adjustments (2 Columns for balance) */
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .service-item.large {
        grid-column: span 2 !important;
        /* Spans both columns to fill space */
    }

    .service-item {
        width: 100% !important;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    /* Hero Section Mobile */
    .hero-slide-content {
        bottom: 60px !important;
        left: 20px !important;
        width: 100% !important;
        padding-right: 40px !important;
    }

    .hero-slide-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }

    .hero-pill-box {
        opacity: 0;
        transform: translateY(15px);
        margin-top: 10px !important;
        display: block !important;
        max-width: 80% !important;
        animation: fastFadeInUp 0.8s ease-out 0.5s forwards;
    }

    .hero-mini-pill {
        font-size: 0.75rem !important;
        /* Smaller size as requested */
        padding: 4px 12px !important;
        line-height: 1.5 !important;
        background-color: rgba(197, 48, 48, 0.9) !important;
        /* Semi-transparent for modern look */
        border-radius: 4px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    }

    /* "What We Do" Grid Mobile */
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .service-item {
        height: 180px !important;
        /* Fixed: Reduced height to prevent "stretched" looking cards on mobile */
    }

    /* Split Sections Mobile - Image on top, Text below */
    .split-content {
        display: flex !important;
        flex-direction: column-reverse !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .split-text,
    .split-image {
        width: 100% !important;
    }

    .split-text h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* Gallery & Videos Mobile */
    .gallery-grid-premium,
    .video-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .footer-section h3::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .social-links {
        justify-content: center !important;
    }

    /* Solutions Grid Mobile - Handled in page specific section below */
    /* .interior-solution-grid { grid-template-columns: 1fr !important; } */
}

/* ==========================================================================
   SMALL MOBILE RESPONSIVENESS (480px and below)
   ========================================================================== */
@media (max-width: 480px) {
    .hero-slide-title {
        font-size: 1.7rem !important;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr !important;
    }

    .btn {
        padding: 10px 18px !important;
        font-size: 0.75rem !important;
    }

    .call-now span {
        display: none;
        /* Only show icon on very small screens to save space */
    }
}

/* Premium Mobile Side Menu Styles */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 10001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-side-menu.active {
    transform: translateX(0);
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.side-logo img {
    height: 40px;
}

.close-side-menu {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-side-menu:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

.side-nav {
    flex-grow: 1;
    overflow-y: auto;
}

.side-menu-list {
    list-style: none;
    padding: 0;
}

.side-menu-list li {
    margin-bottom: 5px;
}

.side-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.side-link:hover,
.side-link.active {
    background: rgba(var(--primary-color-rgb), 0.05);
    color: var(--primary-color);
    padding-left: 20px;
}

.side-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.side-dropdown.active .side-dropdown-toggle i {
    transform: rotate(180deg);
}

.side-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.side-dropdown.active .side-dropdown-menu {
    max-height: 400px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.side-dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.side-dropdown-menu li a:hover {
    color: var(--secondary-color);
}

.side-menu-footer {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.side-contact {
    margin-bottom: 25px;
}

.side-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-color);
    font-size: 0.85rem;
    text-decoration: none;
}

.side-contact-item i {
    color: var(--secondary-color);
}

.side-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.side-social a {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.side-social a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Sticky Estimate Badge Styling */
.sticky-estimate-badge {
    position: fixed;
    right: 0;
    top: 35%;
    /* Positioned ABOVE the sticky icons container (55%) */
    transform: translateY(-50%);
    background: var(--accent-color);
    /* Match desktop button color */
    color: var(--dark-color);
    /* Match desktop button text */
    padding: 18px 12px;
    border-radius: 12px 0 0 12px;
    text-decoration: none;
    z-index: 10000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION & LAYOUT (Max-Width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* Hide specific desktop/tablet elements */
    .header-top,
    .desktop-nav,
    .desktop-estimate {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        /* Fixed: Show menu toggle on mobile */
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #fff !important;
        /* White for hero background */
        z-index: 1000 !important;
    }

    /* Force Sticky Elements to Show on Mobile */
    .sticky-estimate-badge {
        display: block !important;
        right: 0 !important;
        left: auto !important;
        top: 55%;
        z-index: 9999;
        border-radius: 12px 0 0 12px !important;
        transform: translateY(-50%) !important;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2) !important;
        padding: 10px 8px !important;
        font-size: 0.8rem !important;
    }

    /* Mobile Call FAB (Right Side) */
    .mobile-call-fab {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 10px;
        /* Moved closer to right edge */
        top: 65%;
        /* Moved down */
        width: 45px;
        height: 45px;
        background: #3b82f6;
        /* Blue */
        color: white;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        font-size: 1.2rem;
        animation: pulseCall 2s infinite;
    }

    @keyframes pulseCall {
        0% {
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
        }
    }

    .sticky-container {
        display: flex !important;
        right: auto !important;
        left: 10px !important;
        top: 65%;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .sticky-container .call-item {
        display: none !important;
        /* Hide duplicate call icon from left on mobile */
    }

    .sticky-container .sticky-icon {
        width: 35px !important;
        /* Reduced size */
        height: 35px !important;
        font-size: 1rem !important;
    }

    /* Adjust Tooltips for Left-Side Icons */
    .sticky-container .icon-label {
        right: auto !important;
        left: 45px !important;
        /* Show to the right of the icon */
        transform: translateX(-10px) !important;
        padding: 4px 10px !important;
        font-size: 0.7rem !important;
    }

    .sticky-container .sticky-icon:hover .icon-label {
        transform: translateX(0) !important;
    }

    /* Hide Top Navbar on Mobile (Topper One) */
    .main-header {
        display: none !important;
    }

    /* Keep the toggle hidden as well if it's outside */
    .mobile-menu-toggle {
        display: none !important;
    }

    .header-container {
        justify-content: center !important;
        padding-left: 0 !important;
        height: auto !important;
        align-items: center !important;
    }

    .logo {
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0;
        box-shadow: none !important;
        display: block !important;
        z-index: 101 !important;
        position: relative;
    }

    .logo-img {
        height: 55px !important;
        width: auto !important;
        filter: none !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-width: none !important;
    }

    /* Hero Content Alignment */
    .hero-slide-title {
        font-size: 1.8rem !important;
        /* Reduced font size */
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }

    /* Add "padding on top" for text in mobile view */
    .hero-slide-content {
        top: 28% !important;
        bottom: auto !important;
        left: 20px !important;
        padding-right: 20px !important;
        padding-top: 80px !important;
        /* Increased padding */
        text-align: left !important;
        transform: translateY(-50%) !important;
    }

    .hero-pill-box,
    .hero-mini-pill {
        display: block !important;
        /* Animation handled by global class, overrides removed to allow it to play */
    }

    /* Ensure Hero is Full Screen and Top Aligned */
    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        top: 0 !important;
    }

    body {
        padding-top: 0 !important;
        /* Remove any padding causing white bar */
        margin-top: 0 !important;
    }

    /* Force Swiper Container to Fill Hero */
    .hero-slider,
    .swiper-wrapper,
    .swiper-slide {
        height: 100% !important;
        width: 100% !important;
    }

    .swiper-slide {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    /* Mobile Bottom Nav Styles */
    .mobile-bottom-nav-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: #ffffff;
        display: flex;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 10002;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-bottom-nav-bar .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--gray-color);
        text-decoration: none;
        font-size: 0.7rem;
        gap: 4px;
        width: 25%;
        height: 100%;
        cursor: pointer;
    }

    .mobile-bottom-nav-bar .nav-item i {
        font-size: 1.2rem;
    }

    .mobile-bottom-nav-bar .nav-item.active,
    .mobile-bottom-nav-bar .nav-item:hover {
        color: var(--primary-color);
    }

    /* Bottom Sheet Styles */
    .mobile-bottom-sheet {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10003;
        visibility: hidden;
        transition: visibility 0.3s;
    }

    .mobile-bottom-sheet.active {
        visibility: visible;
    }

    .sheet-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 1;
        /* Below sheet content */
    }

    .mobile-bottom-sheet.active .sheet-overlay {
        opacity: 1;
    }

    .sheet-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 20px;
        padding-bottom: calc(85px + env(safe-area-inset-bottom));
        /* Clear bottom nav */
        z-index: 2;
        /* Above overlay */
    }

    .mobile-bottom-sheet.active .sheet-content {
        transform: translateY(0);
    }

    .sheet-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .sheet-header h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0;
    }

    .close-sheet {
        background: none;
        border: none;
        font-size: 1.2rem;
        color: #666;
    }

    .sheet-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .sheet-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        text-decoration: none;
        color: var(--dark-color);
        padding: 10px;
        border-radius: 10px;
        background: #f9f9f9;
    }

    .sheet-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
    }

    .sheet-item span {
        font-size: 0.8rem;
        font-weight: 500;
    }

    /* ==========================================================================
       PAGE SPECIFIC MOBILE OVERRIDES
       ========================================================================== */

    /* "What We Do" Hero Sections */
    .interior-hero,
    .faq-hero,
    .gallery-hero,
    .contact-hero,
    .blog-hero {
        height: 250px !important;
        /* Slightly smaller for better focus */
        background-attachment: scroll !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .interior-hero h1,
    .faq-hero h1,
    .gallery-hero h1,
    .contact-hero h1,
    .blog-hero h1 {
        font-size: 1.6rem !important;
        text-align: center !important;
        padding: 0 15px !important;
    }

    .interior-hero p,
    .faq-hero p,
    .gallery-hero p,
    .contact-hero p,
    .blog-hero p {
        font-size: 0.85rem !important;
        text-align: center !important;
        padding: 0 20px !important;
    }

    /* Interior Solution Grid & Solutions Grid (What We Do Pages) */
    .interior-solution-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 5px !important;
    }

    .solution-card {
        height: 140px !important;
        /* Fixed height to prevent stretching */
        border-radius: 12px !important;
    }

    .solution-card img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .solution-text {
        text-align: left !important;
        padding: 0 10px !important;
    }

    .solution-text p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: #555 !important;
    }

    /* Category Feature Row (Exterior, Architecture, etc.) */
    .category-feature-row {
        display: flex !important;
        flex-direction: column !important;
        /* Stack text and images */
        gap: 20px !important;
        margin-bottom: 40px !important;
        text-align: left;
    }

    .feature-text {
        width: 100% !important;
    }

    .feature-text h3 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .feature-text p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .feature-images {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-top: 10px !important;
        width: 100% !important;
    }

    .feature-images img {
        height: 220px !important;
        /* Increased to 220px to prevent the "tiny" look compared to text */
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 10px !important;
    }

    /* Process Detail Box */
    .process-detail-box {
        padding: 25px 20px !important;
        border-radius: 15px !important;
        margin-top: 30px !important;
    }

    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .service-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Gallery Grid */
    .gallery-grid-premium {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .gallery-item-premium {
        height: 200px !important;
    }

    /* Video Grid */
    .video-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Contact Grid */
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .contact-info-side,
    .contact-form-side {
        width: 100% !important;
    }

    .contact-card-premium {
        padding: 20px !important;
    }

    /* FAQ Container */
    .faq-container {
        width: 100% !important;
        padding: 0 !important;
    }

    .faq-item {
        margin-bottom: 10px !important;
        border-radius: 8px !important;
    }

    .faq-question {
        padding: 10px 12px !important;
        /* Reduced padding to decrease height */
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }

    .faq-question span {
        padding-right: 15px !important;
    }

    .faq-answer p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .section-title-faq h2 {
        font-size: 1.5rem !important;
        padding: 0 10px !important;
    }

    /* General responsive padding */
    .mb-80 {
        margin-bottom: 30px !important;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .text-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 15px !important;
    }

    /* Blog List & Grid */
    .blog-main-section {
        padding: 40px 0 !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .blog-list-title {
        font-size: 1.5rem !important;
        margin-bottom: 30px !important;
    }

    /* Solution Card Overlay for Mobile */
    .solution-card .card-label {
        font-size: 0.8rem !important;
        padding: 5px 10px !important;
    }

    /* FAQ Answer Padding */
    .faq-answer {
        padding: 12px 15px !important;
        background: #fdfdfd !important;
    }

    .faq-question i {
        font-size: 0.8rem !important;
    }

    /* FAQ Search Bar / Categories (if any) */
    .faq-search-wrapper,
    .faq-categories {
        width: 100% !important;
        padding: 0 10px !important;
    }

    /* Blog Details (Sub Blog) */
    .blog-single-container {
        flex-direction: column !important;
    }

    .blog-single-sidebar {
        width: 100% !important;
        position: static !important;
        margin-top: 40px !important;
    }

    .blog-post-content {
        padding-right: 0 !important;
    }

    /* Layout Adjustments for Mobile */
    .hero {
        height: 100vh !important;
        /* Full screen hero */
    }

    .hero-slider,
    .swiper-slide {
        height: 100% !important;
    }

    /* Trust Circles - Grid Layout on Mobile */
    .trust-circles-horizontal {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        padding-bottom: 20px !important;
        margin-top: 20px !important;
    }

    .trust-circle {
        margin: 0 auto !important;
        width: 140px !important;
        /* Increased size significantly */
        height: 140px !important;
        flex: none !important;
        padding: 20px !important;
        /* More padding for text */
    }

    .trust-circle .circle-title {
        font-size: 0.9rem !important;
        /* Slightly larger text */
    }

    .arrow-connector {
        display: none !important;
        /* Hide arrows on mobile grid */
    }

    /* Video Text Split - Stacked */
    .video-text-split {
        flex-direction: column !important;
        height: auto !important;
    }

    .video-side,
    .text-side {
        width: 100% !important;
        height: auto !important;
    }

    .video-container {
        height: 250px !important;
        padding-bottom: 0 !important;
        overflow: hidden !important;
    }

    .video-container iframe {
        width: 450px !important;
        height: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .text-side {
        padding: 30px 20px !important;
        text-align: center !important;
        /* Visual balance */
    }

    /* What We Do Grid - 1 Col Wide Cards - With Side Margin */
    .what-we-do-grid .container-wide {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }

    .what-we-do-grid .services-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 0px !important;
        padding: 0 !important;
        margin-top: 20px !important;
        /* Added space below title */
    }

    .what-we-do-grid .service-item {
        aspect-ratio: 16/9 !important;
        /* Standard wide ratio */
        width: 100% !important;
        margin-bottom: 0 !important;
        height: auto !important;
        grid-column: auto !important;
        grid-row: auto !important;
        box-shadow: none !important;
        border: none !important;
        overflow: hidden !important;
    }

    /* Fix for anchor tag not filling height causing gaps */
    .what-we-do-grid .service-item a {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .what-we-do-grid .service-item img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block !important;
        /* Remove descender gap */
    }



    .service-overlay h3 {
        font-size: 1.4rem !important;
    }

    /* Content Blocks - Stacked */
    .content-block {
        flex-direction: column !important;
    }

    /* Hide specific sections on Mobile */
    .mobile-hide-commercial,
    .mobile-hide-approach {
        display: none !important;
    }

    .content-block.reverse {
        flex-direction: column !important;
    }

    .block-image,
    .block-text {
        width: 100% !important;
        min-height: auto !important;
    }

    .block-image {
        height: 250px !important;
    }

    .production-right-side {
        width: 100% !important;
    }

    /* Company Page Mobile Adjustments */
    .company-banner {
        height: 100vh !important;
        background-attachment: scroll !important;
    }

    .welcome-split .split-content,
    .modern-design .split-content,
    .affordable-design .split-content,
    .locations-section .split-content {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .welcome-split .split-image,
    .welcome-split .split-text,
    .modern-design .split-image,
    .modern-design .split-text,
    .affordable-design .split-image,
    .affordable-design .split-text,
    .locations-section .split-image,
    .locations-section .split-text {
        width: 100% !important;
    }

    .process-circles {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .process-item {
        margin: 0 auto !important;
        text-align: center !important;
    }

    .process-item .circle {
        margin: 0 auto 10px !important;
        width: 120px !important;
        height: 120px !important;
        font-size: 0.9rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Seamless Sample Gallery on Mobile - With Side Margin */
    .design-samples .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }

    .design-samples .factory-grid {
        grid-template-columns: 1fr !important;
        gap: 0px !important;
        padding: 0 !important;
    }

    .sample-item {
        margin-bottom: 0 !important;
        border-radius: 0 !important;
    }

    .sample-item .img-wrapper {
        height: 250px !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
    }

    .sample-item h4 {
        background: #fff;
        padding: 15px 0 !important;
        margin: 0 !important;
    }

    /* Factory Section Mobile */
    .factory-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .factory-chart {
        padding: 20px !important;
    }

    .chart-container {
        height: 200px !important;
    }

    /* Add padding to bottom of body to account for fixed nav */
    body {
        padding-bottom: 70px !important;
    }
}

@media (max-width: 1150px) {
    .sticky-estimate-badge {
        display: block;
        /* Show only on tablet/mobile */
    }

    .sticky-estimate-badge:hover {
        padding-right: 20px;
        background: #c09527;
        /* Match desktop hover color */
    }
}

@media (max-width: 480px) {
    .mobile-side-menu {
        width: 85%;
    }
}

/* Tablet View Modifications (769px - 1150px) */
@media screen and (min-width: 769px) and (max-width: 1150px) {
    .call-item {
        display: flex !important;
        order: 2 !important;
    }

    .sticky-social-blur {
        display: flex !important;
        flex-direction: column !important;
    }

    .whatsapp-item {
        order: 1 !important;
    }

    .email-item {
        order: 3 !important;
    }
}

/* Desktop Header Modifications (Header Top Bar) */
@media screen and (min-width: 1151px) {

    .header-top,
    .sticky-estimate-badge {
        display: none !important;
    }

    /* Ensuring sticky call item is visible and correctly ordered on desktop */
    .sticky-social-blur {
        display: flex !important;
        flex-direction: column !important;
    }

    .whatsapp-item {
        order: 1 !important;
    }

    .call-item {
        order: 2 !important;
        display: flex !important;
    }

    .email-item {
        order: 3 !important;
    }
}

/* WhatsApp Modal/Popup Styles */
.wp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wp-modal.active {
    display: flex;
    opacity: 1;
}

.wp-modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wp-modal.active .wp-modal-content {
    transform: translateY(0);
}

.wp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wp-modal-close:hover {
    color: var(--dark-color);
    background: #f0f0f0;
}

.wp-modal-content .wp-icon {
    width: 80px;
    height: 80px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.wp-modal-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.wp-modal-content p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.wp-modal-content .wp-btn {
    display: inline-block;
    margin-top: 25px;
    background: #25d366;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wp-modal-content .wp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}
/* Remove Blue Tap Highlight on Mobile */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent !important;
        outline: none !important;
    }
}
