/*
Theme Name: Nader Construction Pro
Theme URI: https://nader-construction.com
Author: Nader General Contracting
Author URI: https://nader-construction.com
Description: قالب احترافي فاخر لمؤسسة نادر للمقاولات العامة - متخصص في البناء العضم والتشطيبات الفاخرة بأعلى معايير الجودة والاحترافية في المملكة العربية السعودية
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nader-construction
Tags: construction, arabic, rtl, one-page, dark, gold, luxury, professional
*/

/* === Variables === */
:root {
    --gold: #C9A84C;
    --gold-light: #F5D06E;
    --gold-dark: #A07830;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #F5D06E 50%, #C9A84C 100%);
    --dark: #0A0A0A;
    --dark2: #111111;
    --dark3: #1A1A1A;
    --dark4: #222222;
    --dark5: #2A2A2A;
    --text: #E8E8E8;
    --text-muted: #999999;
    --white: #FFFFFF;
    --font-ar: 'Cairo', 'Tajawal', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-gold: 0 10px 40px rgba(201,168,76,0.3);
}

/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-ar);
    background: var(--dark);
    color: var(--text);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.8;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-ar); }
input, textarea, select { font-family: var(--font-ar); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.logo-n {
    width: 70px; height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 900; color: var(--dark);
    animation: pulse-gold 1.5s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
    50% { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
}

.preloader-text span { display: block; }
.preloader-text span:first-child { font-size: 28px; font-weight: 900; color: var(--gold); }
.preloader-text .sub { font-size: 14px; color: var(--text-muted); }

.preloader-bar {
    width: 300px; height: 3px;
    background: var(--dark4);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 12px;
}
.preloader-progress {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    width: 0;
    animation: loadBar 2s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

.preloader-percent {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */
.cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform 0.1s;
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 2px solid rgba(201,168,76,0.6);
    border-radius: 50%;
    transition: transform 0.15s ease, width 0.3s, height 0.3s;
}
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--dark2);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 8px 0;
    font-size: 13px;
}
.top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.top-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-link {
    display: flex; align-items: center; gap: 6px;
    color: var(--text-muted);
    transition: var(--transition);
}
.top-link:hover { color: var(--gold); }
.top-link i { color: var(--gold); font-size: 12px; }

.top-wa-btn {
    display: flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}
.top-wa-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(37,211,102,0.3); }

/* ==========================================
   HEADER
   ========================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    margin-top: 41px;
}
.site-header.scrolled {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    margin-top: 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.logo-icon { width: 50px; height: 50px; flex-shrink: 0; }
.logo-name { font-size: 22px; font-weight: 900; color: var(--gold); line-height: 1; }
.logo-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 14%; right: 14%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-header-wa {
    display: flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-header-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}
.site-header.scrolled .header-line { opacity: 1; }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    transition: var(--transition);
    border: none; cursor: pointer;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201,168,76,0.4);
}

.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent;
    color: var(--gold);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--gold);
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201,168,76,0.3);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
    animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.75) 100%);
    z-index: 2;
}

.hero-geo {
    position: absolute;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    z-index: 3;
    animation: geoRotate 20s linear infinite;
}
.geo-1 { width: 600px; height: 600px; top: -200px; left: -200px; animation-duration: 30s; }
.geo-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; animation-direction: reverse; animation-duration: 25s; }
.geo-3 { width: 200px; height: 200px; top: 50%; right: 10%; border-color: rgba(201,168,76,0.25); animation-duration: 15s; }

@keyframes geoRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-section .container { position: relative; z-index: 4; }

.hero-content { max-width: 700px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.3s forwards;
}
.badge-line { width: 40px; height: 1px; background: var(--gold); }

.hero-title {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}
.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.title-line:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) { animation-delay: 0.7s; }
.title-line:nth-child(3) { animation-delay: 0.9s; }
.title-line.gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: rgba(232,232,232,0.8);
    margin-bottom: 36px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.3s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 20px 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hs-num { display: block; font-size: 28px; font-weight: 900; color: var(--gold); }
.hs-label { font-size: 12px; color: var(--text-muted); }
.hs-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.2); flex-shrink: 0; }

.slide-indicators {
    position: absolute;
    bottom: 100px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.si-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.si-dot.active { background: var(--gold); transform: scale(1.5); }

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(201,168,76,0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ==========================================
   MARQUEE STRIP
   ========================================== */
.marquee-strip {
    background: var(--gold-gradient);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}
.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeRTL 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-track span {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.marquee-track i { font-size: 10px; }
@keyframes marqueeRTL { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================
   SECTION COMMONS
   ========================================== */
section { padding: 100px 0; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title .gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 60px; height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 16px 0;
}
.section-divider.center { margin: 16px auto; }

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.9;
}

/* AOS-like animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos].aos-animate { opacity: 1; transform: none; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section { background: var(--dark2); }

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

.about-images {
    position: relative;
    height: 500px;
}
.about-img-main {
    position: absolute;
    top: 0; right: 0;
    width: 75%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
    position: absolute;
    bottom: 0; left: 0;
    width: 55%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--dark2);
    box-shadow: var(--shadow);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-badge-exp {
    position: absolute;
    bottom: 60px; right: -20px;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 16px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}
.exp-num { font-size: 36px; font-weight: 900; display: block; line-height: 1; }
.exp-label { font-size: 12px; font-weight: 700; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
.af-item {
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}
.af-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.af-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}
.af-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.af-item p { font-size: 12px; color: var(--text-muted); }

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section { background: var(--dark); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201,168,76,0.15);
}

.sc-num {
    position: absolute;
    top: 20px; left: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(201,168,76,0.06);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.sc-icon {
    width: 64px; height: 64px;
    background: rgba(201,168,76,0.1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .sc-icon {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: scale(1.1);
}

.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ==========================================
   WHY US SECTION
   ========================================== */
.whyus-section { background: var(--dark2); }

.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.whyus-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}
.whyus-image img { width: 100%; height: 100%; object-fit: cover; }
.whyus-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
}

.whyus-badge {
    position: absolute;
    bottom: 30px; right: 30px;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 14px 20px;
    border-radius: 12px;
    z-index: 2;
    display: flex; align-items: center; gap: 10px;
    font-weight: 800;
}

.whyus-list { display: flex; flex-direction: column; gap: 16px; }
.wl-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    transition: var(--transition);
}
.wl-item:hover { border-color: rgba(201,168,76,0.3); transform: translateX(-4px); }
.wl-check {
    width: 32px; height: 32px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.wl-item span { font-size: 15px; font-weight: 600; padding-top: 4px; }

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects-section { background: var(--dark); }

.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.projects-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: transparent;
}

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

.project-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.pc-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.pc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .pc-image img { transform: scale(1.08); }

.pc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.pc-cat {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    width: fit-content;
}
.pc-overlay h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.pc-overlay p { font-size: 13px; color: rgba(232,232,232,0.7); margin-bottom: 12px; }

.pc-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.project-card:hover .pc-link { opacity: 1; transform: translateY(0); }

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.88);
}

.stats-section .container { position: relative; z-index: 1; }

.stats-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    margin-bottom: 60px;
}

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

.stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.stat-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.05);
    transform: translateY(-6px);
}
.stat-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}
.stat-num {
    font-size: 52px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section { background: var(--dark2); }

.testimonials-header { text-align: center; margin-bottom: 60px; }

.testimonials-slider { position: relative; overflow: hidden; }

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    margin: 0 8px;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }

.tc-quote {
    font-size: 48px;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}
.tc-text { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 24px; }

.tc-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }

.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-avatar {
    width: 48px; height: 48px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    flex-shrink: 0;
}
.tc-name { font-size: 15px; font-weight: 800; }
.tc-role { font-size: 12px; color: var(--text-muted); }

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.tn-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--gold);
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.tn-btn:hover { background: var(--gold-gradient); color: var(--dark); border-color: transparent; }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.85);
}
.cta-section .container { position: relative; z-index: 1; }

.cta-icon {
    width: 80px; height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    color: var(--dark);
    margin: 0 auto 24px;
    animation: pulse-gold 2s ease-in-out infinite;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section { background: var(--dark); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.contact-info-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }

.ci-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ci-item {
    display: flex; align-items: center; gap: 16px;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 12px;
    padding: 16px 20px;
    transition: var(--transition);
}
.ci-item:hover { border-color: rgba(201,168,76,0.3); }
.ci-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}
.ci-label { font-size: 12px; color: var(--text-muted); }
.ci-value { font-size: 15px; font-weight: 700; }

.contact-wa-btn {
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    transition: var(--transition);
    width: fit-content;
}
.contact-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37,211,102,0.4); }

.contact-form {
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 24px;
    padding: 40px;
}
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-form > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--dark4);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    width: 100%;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--dark2);
    border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-main { padding: 80px 0 40px; }

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

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-icon { width: 44px; height: 44px; }
.footer-col > p { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.fs-link {
    width: 38px; height: 38px;
    background: var(--dark4);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
}
.fs-link:hover { background: var(--gold-gradient); color: var(--dark); border-color: transparent; }

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); padding-right: 4px; }
.footer-col ul li a i { font-size: 10px; color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fc-item { display: flex; align-items: center; gap: 10px; }
.fc-item i { color: var(--gold); width: 16px; }
.fc-item a, .fc-item span { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.fc-item a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.float-wa, .float-phone {
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.float-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    bottom: 170px;
}
.float-phone {
    background: var(--gold-gradient);
    color: var(--dark);
}
.float-wa:hover, .float-phone:hover { transform: scale(1.15); }

.float-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: floatPulse 2s ease-in-out infinite;
}
@keyframes floatPulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.3); opacity: 0; } }

.float-tooltip {
    position: absolute;
    right: 64px;
    background: var(--dark3);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(201,168,76,0.2);
}
.float-wa:hover .float-tooltip, .float-phone:hover .float-tooltip { opacity: 1; }

.float-top {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--gold);
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.float-top.visible { opacity: 1; visibility: visible; }
.float-top:hover { background: var(--gold-gradient); color: var(--dark); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .about-grid, .whyus-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-images { height: 350px; }
    .testimonial-card { min-width: calc(50% - 16px); }
    
    /* Hide old elements that might cause overlap */
    .pc-info, .sc-number, .sc-glow, .sc-arrow, .wu-item, .af-text, .ci-card, .cf-header, .cf-row { display: none !important; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .site-header { margin-top: 0; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--dark2);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        z-index: 999;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(201,168,76,0.2);
    }
    .nav-menu.open { right: 0; }
    .hamburger { display: flex; }
    .btn-header-wa span { display: none; }
    .services-grid, .projects-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hs-divider { width: 60px; height: 1px; }
    .about-features { grid-template-columns: 1fr; }
    .testimonial-card { min-width: calc(100% - 16px); }
    .projects-header { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; align-items: center; }
    
    /* Ensure new elements are visible and old ones are hidden */
    .pc-overlay { opacity: 1 !important; visibility: visible !important; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 100%) !important; }
    .pc-link { opacity: 1 !important; transform: translateY(0) !important; }
    .pc-info, .sc-number, .sc-glow, .sc-arrow, .wu-item, .af-text, .ci-card, .cf-header, .cf-row { display: none !important; }
}

@media (max-width: 480px) {
    section { padding: 70px 0; }
    .hero-title { font-size: 42px; }
    .stat-num { font-size: 40px; }
    .contact-form { padding: 24px; }
    .float-wa, .float-phone { width: 48px; height: 48px; font-size: 20px; }
}
