/* ========================================
   FR Construction - Premium 3D Theme
   ======================================== */

/* --- CSS Variables (Light Mode Default) --- */
:root {
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-gray: #f7f7f7;
    --bg-card-bottom: #ffffff;
    --text-primary: #232323;
    --text-secondary: #666666;
    --text-muted: #aaaaaa;
    --border-color: #e7e7e7;
    --border-light: #f0f0f0;
    --shadow-card: rgba(0,0,0,0.08);
    --shadow-card-hover: rgba(255,94,20,0.15);
    --shadow-dropdown: rgba(0,0,0,0.15);
    --input-bg: #ffffff;
    --nav-bg: rgba(255,255,255,0.95);
    --nav-bg-scrolled: rgba(255,255,255,0.98);
    --dropdown-bg: #ffffff;
    --mobile-menu-bg: #ffffff;
    --contact-card-bg: #f7f7f7;
    --value-card-bg: #f7f7f7;
    --preloader-bg: #ffffff;
    --form-card-bg: #f7f7f7;
    --why-content-bg: #f7f7f7;
}

[data-theme="dark"] {
    --bg-body: #1a1a2e;
    --bg-card: #16213e;
    --bg-gray: #1a1a2e;
    --bg-card-bottom: #0f3460;
    --text-primary: #eaeaea;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --border-color: #2a2a4a;
    --border-light: #2a2a4a;
    --shadow-card: rgba(0,0,0,0.3);
    --shadow-card-hover: rgba(255,94,20,0.25);
    --shadow-dropdown: rgba(0,0,0,0.4);
    --input-bg: #16213e;
    --nav-bg: rgba(26,26,46,0.95);
    --nav-bg-scrolled: rgba(26,26,46,0.98);
    --dropdown-bg: #16213e;
    --mobile-menu-bg: #1a1a2e;
    --contact-card-bg: #16213e;
    --value-card-bg: #16213e;
    --preloader-bg: #1a1a2e;
    --form-card-bg: #16213e;
    --why-content-bg: #16213e;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow: visible; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-secondary);
    background: var(--bg-body);
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

/* --- Dark Mode Toggle --- */
.theme-toggle {
    background: #f0f0f0;
    border: 2px solid #ddd;
    color: #333;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
    line-height: 1;
}
.theme-toggle:hover {
    background: #ff5e14;
    border-color: #ff5e14;
    color: #fff;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--preloader-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
body.loading { overflow: hidden; }
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-logo {
    height: 80px;
    width: auto;
    animation: preloaderFade 1.5s ease-in-out infinite;
}
.preloader-bar {
    width: 120px;
    height: 2px;
    background: #eee;
    border-radius: 2px;
    margin-top: 24px;
    overflow: hidden;
}
.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: #ff5e14;
    border-radius: 2px;
    animation: preloaderSlide 1s ease-in-out infinite;
}
@keyframes preloaderFade { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes preloaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* --- Custom Cursor (desktop only) --- */
.cursor-dot { width: 8px; height: 8px; background: #ff5e14; border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998; transition: transform 0.1s; mix-blend-mode: difference; }
.cursor-ring { width: 40px; height: 40px; border: 2px solid rgba(255,94,20,0.5); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99997; transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s; transform: translate(-50%,-50%); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: #ff5e14; }
@media (max-width: 991px) { .cursor-dot, .cursor-ring { display: none; } }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 15px;
}

a { transition: all 0.35s ease; text-decoration: none; color: var(--text-primary); }
img { max-width: 100%; border: none; outline: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { color: var(--text-secondary); line-height: 1.85; margin: 0 0 15px; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }
.bg-cover { background-position: center; background-size: cover; }
.bg-gray { background: var(--bg-gray); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 14px 36px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}
.btn:hover::before { left: 100%; }

.btn-theme {
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    color: #fff;
    border-color: #ff5e14;
    box-shadow: 0 4px 15px rgba(255,94,20,0.3);
}
.btn-theme:hover {
    background: linear-gradient(135deg, #e04e10, #ff5e14);
    border-color: #e04e10;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,94,20,0.4);
}

.btn-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}
.btn-white:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar-area {
    background: #1d2024;
    padding: 0;
    border-bottom: 4px solid #ff5e14;
    position: relative;
    overflow: hidden;
}
.top-bar-area::before {
    content: '';
    position: absolute;
    top: 0; right: -50%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,94,20,0.05), transparent);
    animation: topBarShimmer 8s ease-in-out infinite;
}
@keyframes topBarShimmer { 0%,100% { transform: translateX(-50%); } 50% { transform: translateX(50%); } }

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
    position: relative;
}

.top-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: -15%;
    height: 130%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.top-bar-item:last-child { margin-right: 0; }

.top-bar-item .icon {
    border: 1px solid rgba(255,255,255,0.1);
    color: #ff5e14;
    font-size: 18px;
    padding: 10px 12px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.top-bar-item:hover .icon {
    background: #ff5e14;
    color: #fff;
    transform: rotateY(10deg);
}

.top-bar-item .info span {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar-item .info a {
    color: #ccc;
    font-size: 13px;
    transition: color 0.3s;
}

.top-bar-item .info a:hover { color: #ff5e14; }

.top-bar-right {
    display: flex;
    gap: 12px;
}

.top-bar-right a {
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}
.top-bar-right a:hover { color: #fff; background: #ff5e14; border-color: #ff5e14; transform: translateY(-2px); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    background: var(--nav-bg-scrolled);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; padding: 8px 0; transition: transform 0.3s; }
.navbar-brand:hover .logo-img { transform: scale(1.03); }

.navbar-toggle {
    display: none;
    background: none;
    border: 2px solid var(--border-color);
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: auto;
}

.navbar-toggle:hover {
    background: #ff5e14;
    border-color: #ff5e14;
    color: #fff;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links li { position: relative; }

.nav-links li a {
    display: block;
    padding: 25px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ff5e14;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff5e14, #ff8c42);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px 3px 0 0;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dropdown-bg);
    min-width: 220px;
    box-shadow: 0 12px 40px var(--shadow-dropdown);
    border-top: 3px solid #ff5e14;
    z-index: 100;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-menu li a {
    padding: 12px 20px !important;
    font-size: 13px !important;
    text-transform: none !important;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    color: #fff !important;
    padding-left: 25px !important;
}

.nav-cta { margin-left: 15px; }

.btn-quote {
    display: inline-block;
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(255,94,20,0.3);
}

.btn-quote:hover {
    background: linear-gradient(135deg, #232323, #3a3a3a);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
}

.nav-overlay.active { display: block; }
body.nav-open { overflow: hidden; }

/* ========================================
   HERO BANNER - 3D Enhanced
   ======================================== */
.hero-banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    perspective: 1000px;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}
.hero-banner:hover .hero-video-wrap { transform: scale(1.0); }

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(29,32,36,0.8) 100%);
}

/* 3D Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.hero-particle {
    position: absolute;
    border: 1px solid rgba(255,94,20,0.3);
    background: rgba(255,94,20,0.05);
    animation: floatParticle linear infinite;
}
.hero-particle:nth-child(1) { width: 60px; height: 60px; top: 20%; left: 10%; animation-duration: 12s; animation-delay: 0s; border-radius: 8px; transform: rotate(45deg); }
.hero-particle:nth-child(2) { width: 40px; height: 40px; top: 60%; left: 80%; animation-duration: 15s; animation-delay: 2s; border-radius: 50%; }
.hero-particle:nth-child(3) { width: 80px; height: 80px; top: 70%; left: 20%; animation-duration: 18s; animation-delay: 4s; border-radius: 12px; transform: rotate(30deg); }
.hero-particle:nth-child(4) { width: 30px; height: 30px; top: 15%; left: 70%; animation-duration: 10s; animation-delay: 1s; border-radius: 6px; }
.hero-particle:nth-child(5) { width: 50px; height: 50px; top: 40%; left: 50%; animation-duration: 14s; animation-delay: 3s; border-radius: 10px; transform: rotate(60deg); }
.hero-particle:nth-child(6) { width: 35px; height: 35px; top: 80%; left: 60%; animation-duration: 11s; animation-delay: 5s; border-radius: 50%; }
.hero-particle:nth-child(7) { width: 45px; height: 45px; top: 30%; left: 85%; animation-duration: 16s; animation-delay: 2.5s; border-radius: 8px; transform: rotate(20deg); }
.hero-particle:nth-child(8) { width: 25px; height: 25px; top: 50%; left: 5%; animation-duration: 13s; animation-delay: 1.5s; border-radius: 50%; }

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(-40px) rotate(270deg); opacity: 0.7; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-slide-content .container {
    width: 100%;
}

.hero-slide-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-slide-content h1 span {
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 35px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-slide-content .slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll-indicator span {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-mouse::after {
    content: '';
    width: 3px;
    height: 8px;
    background: #ff5e14;
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ========================================
   ABOUT AREA - 3D Cards
   ======================================== */
.about-area {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.about-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,94,20,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h4 {
    color: #ff5e14;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-content h2 span {
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p { margin-bottom: 15px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    perspective: 800px;
}

.about-feature-item {
    padding: 35px 25px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
}
.about-feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,94,20,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.about-feature-item:hover::before { opacity: 1; }

.about-feature-item:hover {
    transform: translateZ(20px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,94,20,0.12);
    z-index: 1;
}

.about-feature-item i {
    font-size: 42px;
    color: #ff5e14;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-feature-item:hover i { transform: scale(1.15) rotateY(15deg); }

.about-feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.about-feature-item p {
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   WHY CHOOSE US - Parallax 3D
   ======================================== */
.why-area {
    padding: 0;
    position: relative;
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.why-image {
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease-out;
}
.why-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,94,20,0.1) 0%, transparent 100%);
}

.why-content {
    padding: 70px 55px;
    background: var(--why-content-bg);
    position: relative;
    overflow: hidden;
}
.why-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,94,20,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-content h4 {
    color: #ff5e14;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.why-content h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.why-point {
    margin-bottom: 22px;
    padding-left: 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}
.why-point:hover {
    border-left-color: #ff5e14;
    padding-left: 25px;
}

.why-point h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.why-point p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.why-stat {
    margin-top: 35px;
    display: flex;
    gap: 40px;
    perspective: 600px;
}

.why-stat .stat-box {
    transition: transform 0.4s;
}
.why-stat .stat-box:hover { transform: rotateY(5deg) translateY(-3px); }

.why-stat .stat-box .stat-number {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.why-stat .stat-box .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

/* ========================================
   SERVICES AREA - 3D Flip Cards
   ======================================== */
.services-area {
    padding: 100px 0;
    position: relative;
    background: var(--bg-body);
}
.services-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,94,20,0.2), transparent);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h4 {
    color: #ff5e14;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.section-heading h2 {
    font-size: 34px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-heading h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff5e14, #ff8c42);
    border-radius: 3px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% + 27px);
    width: 6px;
    height: 3px;
    background: #ff5e14;
    border-radius: 3px;
}

.section-heading p {
    max-width: 600px;
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(255,94,20,0.15);
}

.service-card .card-thumb {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.service-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .card-thumb img { transform: scale(1.1); }

.service-card .card-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: height 0.4s;
}
.service-card:hover .card-thumb::after { height: 100%; }

.service-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .card-overlay { transform: translateY(0); opacity: 1; }

.service-card .card-overlay h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.service-card .card-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin: 0 0 12px;
    line-height: 1.6;
}

.service-card .card-overlay a {
    color: #ff5e14;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.service-card:hover .card-overlay a { gap: 12px; }

.service-card .card-overlay a:hover { color: #fff; }

.service-card .card-bottom {
    background: var(--bg-card-bottom);
    border: none;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}
.service-card:hover .card-bottom { background: #ff5e14; }
.service-card:hover .card-bottom h4 a { color: #fff; }
.service-card:hover .card-bottom i { color: #fff; transform: rotate(90deg); }

.service-card .card-bottom h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.service-card .card-bottom h4 a:hover { color: #ff5e14; }

.service-card .card-bottom i {
    color: #ff5e14;
    font-size: 24px;
    transition: transform 0.3s;
}

/* ========================================
   STATS / FUN FACT - 3D Flip
   ======================================== */
.stats-area {
    background: linear-gradient(135deg, #1d2024, #2a2d32);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,94,20,0.08)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: #fff;
    position: relative;
    perspective: 500px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: -20%;
    height: 140%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-item i {
    font-size: 36px;
    margin-bottom: 14px;
    opacity: 0.9;
    display: block;
    transition: transform 0.5s;
}
.stat-item:hover i { transform: scale(1.2) rotateY(15deg); }

.stat-item .stat-number {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    display: block;
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    opacity: 0.8;
}

/* ========================================
   PROJECTS AREA - 3D Hover
   ======================================== */
.projects-area {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-card);
    border: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px var(--shadow-card);
    transform-style: preserve-3d;
}

.project-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-1deg);
    box-shadow: 0 25px 60px rgba(255,94,20,0.15);
}

.project-card .project-thumb {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.project-card .project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-thumb img { transform: scale(1.08); }

.project-card .project-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.project-card:hover .project-thumb::after { opacity: 1; }

.project-card .project-info {
    padding: 25px;
    position: relative;
}

.project-card .project-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 2px;
    background: linear-gradient(90deg, #ff5e14, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.project-card:hover .project-info::before { transform: scaleX(1); }

.project-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-card h4 a:hover { color: #ff5e14; }

.project-card p {
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.project-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,94,20,0.08), rgba(255,94,20,0.04));
    color: #ff5e14;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,94,20,0.15);
}

/* ========================================
   CLIENTS AREA - Marquee + 3D
   ======================================== */
.clients-area {
    padding: 100px 0;
    background: var(--bg-gray);
    overflow: hidden;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.client-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(40%);
    opacity: 0.85;
    border-radius: 8px;
    transform-style: preserve-3d;
}

.client-item:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(255,94,20,0.12);
    filter: grayscale(0%);
    opacity: 1;
    border-color: rgba(255,94,20,0.3);
}

.client-item img { max-height: 50px; max-width: 100%; object-fit: contain; transition: transform 0.4s; }
.client-item:hover img { transform: scale(1.05); }

.client-item span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    text-align: center;
}

/* ========================================
   CONTACT AREA
   ======================================== */
.contact-area {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--contact-card-bg);
    padding: 24px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

.contact-card:hover {
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    color: #fff;
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 40px rgba(255,94,20,0.2);
}

.contact-card:hover .contact-card-icon { background: rgba(255,255,255,0.2); color: #fff; }
.contact-card:hover .contact-card-text h4,
.contact-card:hover .contact-card-text p,
.contact-card:hover .contact-card-text a { color: #fff; }

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5e14;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-card-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-card-text p,
.contact-card-text a {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.3s;
}

.contact-form-card {
    background: var(--form-card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff5e14, #ff8c42);
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-form-card form label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-form-card form input,
.contact-form-card form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s;
    background: var(--input-bg);
    color: var(--text-primary);
}

.contact-form-card form input:focus,
.contact-form-card form textarea:focus {
    outline: none;
    border-color: #ff5e14;
    box-shadow: 0 0 0 4px rgba(255,94,20,0.1);
    transform: translateY(-1px);
}

.contact-form-card form textarea { resize: vertical; min-height: 130px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-area {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-card);
}

/* ========================================
   CTA BANNER - Animated
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, #1d2024, #2a2d32);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,94,20,0.08)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5e14, #ff8c42, #ff5e14);
    background-size: 200% 100%;
    animation: ctaGradient 3s linear infinite;
}
@keyframes ctaGradient { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }

.cta-banner h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.cta-banner p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 35px;
    position: relative;
}

.cta-banner .btn { position: relative; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer { background: #1d2024; position: relative; overflow: hidden; }
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,94,20,0.3), transparent);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 18px;
    transition: transform 0.3s;
}
.footer-logo:hover { transform: scale(1.05); }

.about-col p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    color: #aaa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
}
.footer-social a:hover {
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff5e14, #ff8c42);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #aaa;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-links li a:hover {
    color: #ff5e14;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #aaa;
    font-size: 13px;
}

.footer-contact li i {
    color: #ff5e14;
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact li a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-contact li a:hover { color: #ff5e14; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.55);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 65px;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-tooltip { display: none; }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(255,94,20,0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(255,94,20,0.4); }

/* ========================================
   REVEAL ANIMATIONS - Enhanced
   ======================================== */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-item:nth-child(3) { transition-delay: 0.2s; }
.reveal-item:nth-child(4) { transition-delay: 0.3s; }
.reveal-item:nth-child(5) { transition-delay: 0.4s; }
.reveal-item:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   MESSAGES
   ======================================== */
.messages-toast {
    background: #e6f7ed;
    color: #1a7a3a;
    border: 1px solid #b7e4c7;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* ========================================
   PAGE HEADER (for inner pages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #1d2024, #2a2d32);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,94,20,0.06)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5e14, #ff8c42, #ff5e14);
    background-size: 200% 100%;
    animation: ctaGradient 3s linear infinite;
}

.page-header h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    position: relative;
}

.page-header .breadcrumb a { color: #ff5e14; }
.page-header .breadcrumb a:hover { color: #fff; }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-page-content {
    padding: 100px 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 35px 22px;
    background: var(--value-card-bg);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    transform-style: preserve-3d;
}

.value-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(255,94,20,0.12);
    border-color: rgba(255,94,20,0.2);
}

.value-card i {
    font-size: 40px;
    background: linear-gradient(135deg, #ff5e14, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.5s;
}
.value-card:hover i { transform: scale(1.15) rotateY(10deg); }

.value-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .top-bar-left { display: none; }

    .navbar-toggle { display: block; }

    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 15px;
        margin-left: 8px;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--mobile-menu-bg);
        flex-direction: column;
        align-items: stretch;
        padding: 70px 20px 30px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -8px 0 40px rgba(0,0,0,0.15);
        overflow-y: auto;
        z-index: 999;
    }

    .navbar-menu.active { right: 0; }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li a {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-primary);
    }

    .nav-links li a::after { display: none; }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: none;
        display: none;
        padding-left: 20px;
        transform: none;
        opacity: 1;
        background: var(--dropdown-bg);
    }

    .dropdown.open .dropdown-menu { display: block; }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
    }

    .btn-quote { display: block; text-align: center; }

    .about-split,
    .why-split,
    .contact-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item:not(:last-child)::after { display: none; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-slide-content h1 { font-size: 38px; }

    .why-content { padding: 45px 30px; }
}

@media (max-width: 600px) {
    .top-bar-area { display: none; }

    .hero-slide-content h1 { font-size: 30px; }
    .hero-slide-content p { font-size: 14px; }
    .hero-slide-content .slide-buttons { flex-direction: column; }
    .hero-slide-content .slide-buttons .btn { width: 100%; text-align: center; }
    .hero-scroll-indicator { display: none; }

    .services-grid,
    .projects-grid,
    .about-values {
        grid-template-columns: 1fr;
    }

    .clients-grid { grid-template-columns: 1fr 1fr; }

    .stats-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .section-heading h2 { font-size: 26px; }

    .page-header h1 { font-size: 30px; }

    .cta-banner h2 { font-size: 26px; }

    .why-stat { flex-direction: column; gap: 20px; }

    .about-area, .services-area, .projects-area, .clients-area, .contact-area, .about-page-content { padding: 60px 0; }
}