ï»¿/* ================================================================
   RAFA AL-AAMAL - PREMIUM UI STYLESHEET
   Complete Design System with Dark/Light Sections & Animations
================================================================ */

/* ============ GOOGLE FONTS (loaded via HTML) ============ */

/* ============ CSS VARIABLES ============ */
:root {
    /* Primary palette */
    --primary: #1a1f4e;
    --primary-light: #2d3580;
    --primary-dark: #0f1235;
    --accent: #c8a45a;
    --accent-light: #d4b876;
    --accent-dark: #a88838;

    /* Neutrals */
    --bg-dark: #0c0f2e;
    --bg-dark-2: #141842;
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #e8e8f0;
    --text-muted: #6b7280;
    --text-muted-light: rgba(255, 255, 255, 0.6);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a1f4e, #2d3580);
    --gradient-accent: linear-gradient(135deg, #c8a45a, #a88838);
    --gradient-dark: linear-gradient(180deg, #0c0f2e, #141842);
    --gradient-hero: linear-gradient(135deg, rgba(30, 20, 60, 0.92), rgba(10, 13, 46, 0.88));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(200, 164, 90, 0.2);

    /* Borders */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s var(--ease);
    --transition-fast: all 0.25s var(--ease);
    --transition-slow: all 0.6s var(--ease);
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 19px;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

/* ============ UTILITY CLASSES ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2.5rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 4px;
    margin-top: 15px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
}

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-12px) translateX(-50%);
    }

    60% {
        transform: translateY(-6px) translateX(-50%);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInStagger {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 42px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    box-shadow: 0 6px 25px rgba(200, 164, 90, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(200, 164, 90, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.15rem;
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hide,
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.preloader-bar {
    width: 80px;
    height: 4px;
    background: rgba(200, 164, 90, 0.2);
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% {
        left: -60%;
    }

    100% {
        left: 100%;
    }
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--primary-dark);
    color: var(--text-muted-light);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-top {
    display: flex;
    gap: 25px;
}

.contact-info-top span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-top {
    display: flex;
    gap: 12px;
}

.top-bar a {
    color: var(--text-muted-light);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar i {
    color: var(--accent);
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 13, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
    background: rgba(10, 13, 46, 0.97);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--accent);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-muted-light);
}

.nav .nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions .btn {
    padding: 10px 28px;
    font-size: 0.9rem;
}

.d-none-mobile {
    display: inline-flex;
}

.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

/* ============ HERO ============ */
.hero {
    height: 100vh;
    min-height: 700px;
    background: no-repeat center center / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(200, 164, 90, 0.15) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceDown 2s infinite;
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

/* ============ INTRO / ABOUT (Light) ============ */
.intro-section {
    background: var(--bg-white);
}

.intro-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.text-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.text-content strong {
    color: var(--primary);
}

.img-badge-container {
    position: relative;
}

.img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.img-wrapper:hover .about-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

.experience-badge i {
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
}

.experience-badge span {
    font-size: 1.3rem;
    font-weight: 800;
    display: block;
    font-family: 'Cairo', sans-serif;
}

.experience-badge small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============ STATS (Dark) ============ */
.stats-section {
    background: var(--gradient-dark);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 164, 90, 0.06) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 30px;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    display: block;
    font-family: 'Cairo', sans-serif;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 5px;
}

.stat-label {
    color: var(--text-muted-light);
    font-size: 1rem;
    margin-top: 5px;
    display: block;
}

/* ============ VMG (Light) ============ */
.vmg-section {
    background: var(--bg-light);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmg-card {
    background: var(--bg-white);
    padding: 45px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.vmg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.vmg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vmg-card:hover::before {
    transform: scaleX(1);
}

.vmg-card.featured {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

.vmg-card.featured::before {
    background: var(--gradient-accent);
}

.vmg-card.featured .icon-box {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-light);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.vmg-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.vmg-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.vmg-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.vmg-card.featured p {
    color: rgba(255, 255, 255, 0.75);
}

.check-list {
    text-align: right;
}

.check-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    position: relative;
    padding-right: 25px;
    color: var(--text-muted);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--accent);
    font-size: 0.85rem;
}

/* ============ SERVICES SUMMARY (Dark) ============ */
.services-summary {
    background: var(--gradient-dark);
    color: #fff;
}

.services-summary .section-title {
    color: #fff;
}

.services-summary .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-icon-box {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 25px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-icon-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.service-icon-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 164, 90, 0.3);
}

.service-icon-box:hover::after {
    transform: scaleX(1);
}

.service-icon-box i {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.service-icon-box:hover i {
    transform: scale(1.15);
}

.service-icon-box h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-icon-box p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

/* ============ DETAILED SECTIONS (Construction/Finishing/etc.) ============ */
.detailed-section {
    background: var(--bg-white);
}

.detailed-section.bg-light {
    background: var(--bg-light);
}

.section-split {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 50px;
    align-items: flex-start;
}

.sticky-content {
    position: sticky;
    top: 100px;
}

.sticky-content .section-title {
    font-size: 2.2rem;
}

.sticky-content .section-desc {
    font-size: 1.05rem;
}

.specs-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.spec-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-right: 4px solid var(--accent);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bg-light .spec-card {
    background: var(--bg-white);
}

.spec-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow);
    border-right-color: var(--primary);
}

.spec-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.spec-card:hover .spec-icon {
    background: var(--gradient-primary);
    color: #fff;
}

.spec-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.spec-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============ RENOVATION (Light) ============ */
.renovation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.renovation-box {
    padding: 35px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.renovation-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-bottom-color: var(--accent);
}

.renovation-box h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.renovation-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============ INSULATION (Dark Theme) ============ */
.insulation-theme {
    background: var(--gradient-dark);
    color: #fff;
}

.insulation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.ins-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.ins-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 164, 90, 0.3);
}

.ins-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(200, 164, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--accent);
    transition: var(--transition);
}

.ins-card:hover .ins-icon {
    background: var(--gradient-accent);
    color: var(--primary-dark);
}

.ins-card h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.ins-card p {
    color: var(--text-muted-light);
    font-size: 0.93rem;
    line-height: 1.8;
}

.text-white-50 {
    color: var(--text-muted-light) !important;
}

.materials-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 35px;
}

.materials-box h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.materials-list li {
    padding: 10px 0;
    color: var(--text-muted-light);
    font-size: 0.95rem;
}

.materials-list li i {
    color: var(--accent);
    margin-left: 10px;
}

/* ============ PROJECTS (Light) ============ */
.projects-section {
    background: var(--bg-light);
}

.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 28px;
    border: 2px solid rgba(26, 31, 78, 0.15);
    border-radius: 50px;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: var(--primary);
}

.projects-grid-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(10, 13, 46, 0.9));
    color: #fff;
}

.project-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.project-info span {
    font-size: 0.85rem;
    color: var(--accent-light);
}

.project-info span i {
    margin-left: 8px;
}

/* ============ WHY US (Dark) ============ */
.why-us {
    background: var(--gradient-dark);
    color: #fff;
}

.why-us .section-title {
    color: #fff;
}

.why-us .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.why-us .grid-4 {
    margin-top: 50px;
}

.feature-box {
    text-align: center;
    padding: 35px 20px;
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 164, 90, 0.3);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 18px;
    display: block;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-box p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

/* ============ PROCESS (Light) ============ */
.process-section {
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: step;
    margin-top: 50px;
}

.process-step {
    background: var(--bg-light);
    padding: 40px 25px;
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition);
    counter-increment: step;
}

.process-step::before {
    content: counter(step);
    position: absolute;
    top: -15px;
    right: 25px;
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border-radius: 50%;
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(200, 164, 90, 0.3);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.process-step i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============ TESTIMONIALS (Dark) ============ */
.testimonials-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 164, 90, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 35px;
    border-radius: var(--radius-xl);
    text-align: right;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 164, 90, 0.2);
}

.quote-icon {
    color: var(--accent);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.testimonial-author h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author span {
    color: var(--text-muted-light);
    font-size: 0.8rem;
}

/* ============ CLIENTS (Light) ============ */
.clients-section {
    background: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    align-items: center;
}

.client-logo {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.img-placeholder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.img-placeholder-box i {
    font-size: 2.5rem;
    color: var(--primary-light);
    opacity: 0.4;
}

.img-placeholder-box span {
    font-size: 0.85rem;
}

/* ============ FAQ (Dark) ============ */
.faq-section {
    background: var(--gradient-dark);
    color: #fff;
}

.faq-section .section-title {
    color: #fff;
}

.faq-section .section-desc {
    color: var(--text-muted-light);
}

.faq-section .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(200, 164, 90, 0.2);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: right;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s var(--ease);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 22px;
}

.faq-answer p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============ CONTACT (Light) ============ */
.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-info-col {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-info-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-info-header h3 i {
    color: var(--accent);
    margin-left: 8px;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.info-item h5 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.info-item a {
    color: rgba(255, 255, 255, 0.7);
}

.info-item a:hover {
    color: var(--accent);
}

.contact-form-col {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-header h3 i {
    color: var(--accent);
    margin-left: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.form-group label i {
    color: var(--accent);
    margin-left: 6px;
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 31, 78, 0.08);
    background: var(--bg-white);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 12px;
}

.form-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

.form-note i {
    color: #22c55e;
    margin-left: 4px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.footer-about p {
    color: var(--text-muted-light);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: var(--text-muted-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.footer-links a i,
.footer-services a i {
    font-size: 0.7rem;
    margin-left: 8px;
    color: var(--accent);
    opacity: 0.5;
}

.footer-contact-list li {
    margin-bottom: 12px;
    color: var(--text-muted-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list li i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.footer-contact-list a {
    color: var(--text-muted-light);
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-certifications {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-certifications span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

.footer-certifications span i {
    color: var(--accent);
    margin-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted-light);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ============ FLOATING BUTTONS ============ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    left: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 25px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-accent);
    color: var(--primary-dark);
}

/* ============ LOGO IMAGE STYLES ============ */
.logo-img {
    height: 55px;
    width: auto;
    display: block;
    transition: var(--transition);
}



.preloader-logo-img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

/* ============ CENTERING ============ */
.text-center {
    text-align: center;
}

.section-title,
.section-desc {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* ============ DARK SECTIONS: BG IMAGES + OVERLAY ============ */
.stats-section,
.services-summary,
.insulation-theme,
.why-us,
.testimonials-section,
.faq-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stats-section {
    background-image: url('../assets/images/Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â´Ã˜Â§Ã˜Â±Ã™Å Ã˜Â¹/imgi_3_95430b3aa1adae364720801c7bdb2901.jpg');
}

.services-summary {
    background-image: url('../assets/images/Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â´Ã˜Â§Ã˜Â±Ã™Å Ã˜Â¹/imgi_1_7177514a028da196df5e8f6974fdb5c7.jpg');
}

.insulation-theme {
    background-image: url('../assets/images/Ã™â€¦Ã˜Â´Ã˜Â§Ã˜Â±Ã™Å Ã˜Â¹ Ã˜Â§Ã™â€žÃ˜ÂªÃ˜Â´Ã˜Â·Ã™Å Ã˜Â¨ Ã™Ë† Ã˜Â§Ã™â€žÃ˜ÂªÃ˜Â±Ã™â€¦Ã™Å Ã™â€¦/imgi_1_c16439be0c0f2bb3792ee2791302c103.jpg');
}

.why-us {
    background-image: url('../assets/images/Ã˜Â§Ã™â€žÃ™â€¦Ã™â€šÃ˜Â¯Ã™â€¦Ã˜Â©/imgi_4_223970c3f9bea39a9d6d0f1abca339fd.jpg');
}

.testimonials-section {
    background-image: url('../assets/images/Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â´Ã˜Â§Ã˜Â±Ã™Å Ã˜Â¹/imgi_3_95430b3aa1adae364720801c7bdb2901.jpg');
}

.faq-section {
    background-image: url('../assets/images/Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â´Ã˜Â§Ã˜Â±Ã™Å Ã˜Â¹/imgi_1_7177514a028da196df5e8f6974fdb5c7.jpg');
}

.stats-section::before,
.services-summary::before,
.insulation-theme::before,
.why-us::before,
.testimonials-section::before,
.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.stats-section::before,
.services-summary::before,
.insulation-theme::before,
.why-us::before,
.testimonials-section::before,
.faq-section::before {
    background: rgba(10, 13, 46, 0.88);
}

.stats-section>.container,
.services-summary>.container,
.insulation-theme>.container,
.why-us>.container,
.testimonials-section>.container,
.faq-section>.container {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    background-image: url('../assets/images/Ã˜Â§Ã™â€žÃ™â€¦Ã™â€šÃ˜Â¯Ã™â€¦Ã˜Â©/imgi_4_223970c3f9bea39a9d6d0f1abca339fd.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 13, 46, 0.90);
    z-index: 0;
}

.footer>.container {
    position: relative;
    z-index: 1;
}

/* ============ MOBILE NAV OVERLAY ============ */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--primary-dark);
        background: rgba(10, 13, 46, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav .nav-list {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        padding: 0 30px;
    }

    .nav .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 18px 10px !important;
        font-size: 1.2rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .nav-link:hover {
        color: var(--accent) !important;
    }
}

/* ============ RESPONSIVE: 1024px ============ */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .container {
        padding: 0 20px;
    }

    .intro-section .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-grid-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .sticky-content {
        position: static;
    }
}

/* ============ RESPONSIVE: 768px ============ */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 600px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 35px;
        font-size: 1rem;
    }

    .top-bar {
        display: none;
    }

    .d-none-mobile {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 85px;
    }

    .intro-section .row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid-gallery {
        grid-template-columns: 1fr;
    }

    .renovation-grid {
        grid-template-columns: 1fr;
    }

    .insulation-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-certifications {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-content {
        position: static;
    }

    .about-img {
        height: 300px;
    }

    .experience-badge {
        right: 10px;
        bottom: -10px;
        padding: 15px 20px;
    }

    .contact-info-top {
        display: none;
    }

    .social-top {
        display: none;
    }

    /* Fixed background fallback for mobile */
    .stats-section,
    .services-summary,
    .insulation-theme,
    .why-us-section,
    .testimonials-section,
    .faq-section,
    .footer {
        background-attachment: scroll;
    }
}

/* ============ RESPONSIVE: 480px ============ */
@media (max-width: 480px) {
    .section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero {
        min-height: 500px;
    }

    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 38px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-col {
        padding: 25px;
    }

    .contact-info-col {
        padding: 25px;
    }

    .projects-tabs {
        gap: 8px;
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .spec-card {
        flex-direction: column;
        text-align: center;
    }

    .spec-icon {
        margin: 0 auto;
    }

    .vmg-card {
        padding: 30px 20px;
    }

    .service-icon-box {
        padding: 30px 20px;
    }

    .ins-card {
        padding: 25px 20px;
    }

    .renovation-box {
        padding: 25px 20px;
    }

    .footer-logo {
        width: 110px;
    }

    .experience-badge {
        display: none;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}

/* ============ DESKTOP LAYOUT LIMIT (Max 1300px) ============ */
@media (min-width: 1025px) {
    .container {
        max-width: 1300px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo-img {
        height: 115px;
        width: auto;
    }

    .footer-bottom {
        text-align: center;
    }
}

.footer-bottom {
    text-align: right;
    width: 100%;
}

.info-item {
    justify-content: flex-start;
    text-align: right;
}

/* ============ TABLET MENU TOGGLE (992px) ============ */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .d-none-mobile {
        display: none !important;
    }

    .top-bar {
        display: none;
    }
}

.contact-glass-note {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 16px;
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    text-align: right;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-glass-note i {
    font-size: 2.5rem;
    color: #c8a45a;
    background: rgba(200, 164, 90, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.contact-glass-note h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-glass-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
/ *   = = = = = = = = = = = =   V I S I O N   2 0 3 0   L O G O   = = = = = = = = = = = =   * /  
 . v i s i o n - l o g o   {  
         w i d t h :   2 0 0 p x   ! i m p o r t a n t ;  
         h e i g h t :   a u t o   ! i m p o r t a n t ;  
         m a r g i n :   0   a u t o   2 5 p x   a u t o   ! i m p o r t a n t ;  
         d i s p l a y :   b l o c k   ! i m p o r t a n t ;  
         f i l t e r :   d r o p - s h a d o w ( 0   4 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ) ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . v i s i o n - l o g o   {  
                 w i d t h :   1 5 0 p x   ! i m p o r t a n t ;  
                 m a r g i n - b o t t o m :   2 0 p x   ! i m p o r t a n t ;  
         }  
 }  
 / *   = = = = = = = = = = = =   P R E M I U M   O V E R L A Y   B A C K G R O U N D   = = = = = = = = = = = =   * /  
 . b g - p r e m i u m - o v e r l a y   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( r g b a ( 1 2 ,   1 5 ,   4 6 ,   0 . 8 9 ) ,   r g b a ( 1 2 ,   1 5 ,   4 6 ,   0 . 8 9 ) ) ,   u r l ( ' . . / a s s e t s / i m a g e s / Ø § Ù  Ù & Ø ´ Ø § Ø ± Ù `Ø ¹ / i m g i _ 5 _ a d f 4 0 3 d f 9 1 f 4 e f 0 c 6 8 f 4 7 4 8 3 d 1 c f 9 a b 9 . p n g ' )   ! i m p o r t a n t ;  
         b a c k g r o u n d - s i z e :   c o v e r   ! i m p o r t a n t ;  
         b a c k g r o u n d - p o s i t i o n :   c e n t e r   ! i m p o r t a n t ;  
         b a c k g r o u n d - a t t a c h m e n t :   f i x e d   ! i m p o r t a n t ;  
         c o l o r :   # f f f   ! i m p o r t a n t ;  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   1 ;  
 }  
  
 . b g - p r e m i u m - o v e r l a y   h 2 ,  
 . b g - p r e m i u m - o v e r l a y   h 3 ,  
 . b g - p r e m i u m - o v e r l a y   h 4 ,  
 . b g - p r e m i u m - o v e r l a y   h 5 ,  
 . b g - p r e m i u m - o v e r l a y   p ,  
 . b g - p r e m i u m - o v e r l a y   s p a n ,  
 . b g - p r e m i u m - o v e r l a y   l i ,  
 . b g - p r e m i u m - o v e r l a y   i   {  
         c o l o r :   # f f f   ! i m p o r t a n t ;  
 }  
  
 . b g - p r e m i u m - o v e r l a y   . s e c t i o n - t i t l e : : a f t e r   {  
         b a c k g r o u n d :   v a r ( - - a c c e n t )   ! i m p o r t a n t ;  
 }  
  
 . b g - p r e m i u m - o v e r l a y   . t e x t - m u t e d ,  
 . b g - p r e m i u m - o v e r l a y   . t e x t - m u t e d - l i g h t   {  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 7 )   ! i m p o r t a n t ;  
 }  
  
 . b g - p r e m i u m - o v e r l a y   i ,  
 . b g - p r e m i u m - o v e r l a y   . f a - s o l i d   {  
         c o l o r :   v a r ( - - a c c e n t )   ! i m p o r t a n t ;  
 }  
  
 / *   G l a s s   E f f e c t   f o r   S e r v i c e   B o x e s   i n   S u m m a r y   S e c t i o n   * /  
 . b g - p r e m i u m - o v e r l a y   . s e r v i c e - i c o n - b o x   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 8 ) ;  
         p a d d i n g :   3 5 p x   2 0 p x ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - x l ) ;  
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;  
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . b g - p r e m i u m - o v e r l a y   . s e r v i c e - i c o n - b o x : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         b o r d e r - c o l o r :   r g b a ( 2 0 0 ,   1 6 4 ,   9 0 ,   0 . 3 ) ;  
         b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
 }  
  
 / *   E n s u r e   e x i s t i n g   c a r d s   k e e p   t h e i r   g l a s s   s t y l e   i f   u p d a t e d   * /  
 . b g - p r e m i u m - o v e r l a y   . f e a t u r e - b o x ,  
 . b g - p r e m i u m - o v e r l a y   . f a q - i t e m ,  
 . b g - p r e m i u m - o v e r l a y   . i n s - c a r d   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 )   ! i m p o r t a n t ;  
         b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 8 )   ! i m p o r t a n t ;  
 }  
 