/* ============================================
   SIANAHOME FIXER - Premium CSS
   Modern Standard Arabic (RTL) Website
   ============================================ */

:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --secondary: #00c853;
    --secondary-dark: #009624;
    --accent: #ff6d00;
    --accent-light: #fff3e0;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --danger: #e53935;
    --warning: #ffa000;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(255,255,255,0.3);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-family); color: var(--text-primary); background: var(--bg-light); line-height: 1.7; overflow-x: hidden; direction: rtl; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Loading Screen */
#loading-screen { position: fixed; inset: 0; background: var(--bg-white); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-container { text-align: center; }
.loader-ring { width: 80px; height: 80px; margin: 0 auto 24px; position: relative; }
.loader-ring-inner { width: 100%; height: 100%; border: 4px solid var(--gray-200); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; }
.loader-logo i { font-size: 28px; color: var(--primary); }
.loader-logo span { font-size: 22px; font-weight: 800; color: var(--text-primary); }
.loader-bar { width: 200px; height: 4px; background: var(--gray-200); border-radius: 4px; overflow: hidden; margin: 0 auto; }
.loader-progress { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 4px; animation: loadProgress 2s ease-in-out forwards; }
@keyframes loadProgress { 0% { width: 0; } 100% { width: 100%; } }

/* Scroll Progress Bar */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999; background: transparent; }
.scroll-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); width: 0%; transition: width 0.1s ease; }

/* Emergency Banner */
.emergency-banner { background: linear-gradient(135deg, var(--danger), #c62828); color: white; padding: 12px 0; position: relative; z-index: 1000; transition: var(--transition); }
.emergency-banner.hidden { display: none; }
.emergency-content { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 15px; font-weight: 500; }
.emergency-content i { font-size: 18px; animation: pulse 1.5s ease infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } }
.emergency-btn { background: white; color: var(--danger); padding: 6px 20px; border-radius: 20px; font-weight: 700; font-size: 14px; transition: var(--transition); }
.emergency-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.emergency-close { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: white; font-size: 16px; opacity: 0.8; transition: var(--transition); }
.emergency-close:hover { opacity: 1; transform: translateY(-50%) rotate(90deg); }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; transition: var(--transition); }
.header.scrolled { box-shadow: var(--shadow-lg); }
.header.scrolled .header-top { display: none; }
.header-top { background: var(--dark); padding: 8px 0; transition: var(--transition); }
.header-top-content { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--gray-400); }
.header-contact { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 6px; color: white; font-weight: 600; transition: var(--transition); }
.header-phone:hover { color: var(--primary-light); }
.header-phone i { color: var(--secondary); }
.header-divider { color: var(--gray-600); }
.header-hours { display: flex; align-items: center; gap: 6px; }
.header-hours i { color: var(--accent); }
.header-social { display: flex; align-items: center; gap: 12px; }
.header-social a { color: var(--gray-400); font-size: 14px; transition: var(--transition); }
.header-social a:hover { color: white; transform: translateY(-2px); }
.header-nav { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); padding: 0; transition: var(--transition); }
.header.scrolled .header-nav { background: rgba(255,255,255,0.95); padding: 0; }
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; box-shadow: var(--shadow); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: 20px; font-weight: 800; color: var(--text-primary); }
.logo-sub { font-size: 13px; font-weight: 500; color: var(--primary); letter-spacing: 1px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--text-secondary); border-radius: var(--radius-sm); transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { display: flex; align-items: center; gap: 8px; padding: 10px 20px; font-size: 14px; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-size: 15px; font-weight: 700; border-radius: var(--radius); transition: var(--transition); border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 4px 15px rgba(26, 115, 232, 0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26, 115, 232, 0.45); }
.btn-whatsapp { background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); color: white; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: white; color: var(--primary); border-color: white; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-submit { width: 100%; margin-top: 8px; }

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, #1a1a3e 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("Images/ac-repair-service-riyadh (1).png") center center / cover no-repeat;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,26,46,0.60) 0%,
        rgba(22,33,62,0.45) 50%,
        rgba(26,26,46,0.60) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.hero-particles::after {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation-delay: -4s;
}

@keyframes float {
    0%,100% {
        transform: translate(0,0);
    }
    50% {
        transform: translate(30px,-30px);
    }
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInDown .8s ease;
}

.hero-badge i {
    color: var(--accent);
}

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

.hero-title {
    font-size: clamp(36px,6vw,64px);
    font-weight:900;
    line-height:1.2;
    color:white;
    margin-bottom:24px;
}

.hero-title-line {
    display:block;
}

.hero-title-line.highlight {
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero-desc {
    font-size:18px;
    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:36px;
    max-width:600px;
}

.hero-buttons {
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:48px;
}

.hero-features {
    display:flex;
    flex-wrap:wrap;
    gap:24px;
}

.hero-feature {
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.8);
    font-size:14px;
    font-weight:500;
}

.hero-feature-icon {
    width:36px;
    height:36px;
    background:rgba(255,255,255,.1);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:14px;
}

.hero-scroll {
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    z-index:3;
}

.scroll-down {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.6);
    font-size:13px;
    font-weight:500;
    animation:bounce 2s ease infinite;
}

.scroll-down i {
    font-size:18px;
}

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform:translateY(0);
    }
    40% {
        transform:translateY(-10px);
    }
    60% {
        transform:translateY(-5px);
    }
}

.hero-shape {
    position:absolute;
    bottom:-1px;
    left:0;
    right:0;
    z-index:4;
    line-height:0;
}

.hero-shape svg {
    display:block;
    width:100%;
    height:auto;
}


/* Section Header */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.section-tag { display: inline-block; padding: 6px 18px; background: var(--primary-light); color: var(--primary); font-size: 13px; font-weight: 700; border-radius: 50px; margin-bottom: 16px; letter-spacing: 0.5px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--text-primary); line-height: 1.3; margin-bottom: 16px; }
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 600px; line-height: 1.7; }

/* Stats Section */
.stats { padding: 80px 0; background: var(--bg-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.stat-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-light), rgba(26,115,232,0.1)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; color: var(--primary); }
.stat-number { font-size: 40px; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 2px; }
.stat-plus, .stat-slash { font-size: 28px; color: var(--primary); }
.stat-label { font-size: 15px; color: var(--text-muted); font-weight: 500; }

/* About Section */
.about { padding: 100px 0; background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; transition: var(--transition-slow); }
.about-img-main:hover img { transform: scale(1.05); }
.about-img-badge { position: absolute; bottom: 24px; right: 24px; background: var(--bg-white); padding: 16px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; }
.badge-number { display: block; font-size: 32px; font-weight: 900; color: var(--primary); line-height: 1; }
.badge-text { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.about-img-secondary { position: absolute; bottom: -30px; left: -30px; width: 200px; height: 150px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 4px solid var(--bg-white); z-index: 2; }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience { position: absolute; top: -20px; left: -20px; z-index: 3; }
.experience-ring { width: 120px; height: 120px; position: relative; }
.experience-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.experience-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--bg-white); border-radius: 50%; box-shadow: var(--shadow-lg); }
.experience-number { font-size: 24px; font-weight: 900; color: var(--primary); line-height: 1; }
.experience-text { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.about-content .section-header { margin-bottom: 24px; }
.about-text { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-primary); }
.about-feature-icon { width: 28px; height: 28px; background: var(--secondary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.about-cta { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.about-rating { display: flex; flex-direction: column; gap: 4px; }
.rating-stars { display: flex; gap: 4px; color: var(--warning); font-size: 16px; }
.about-rating span { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* Services Section */
.services { padding: 100px 0; position: relative; overflow: hidden; }
.services-bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%); z-index: 0; }
.services .container { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 2px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); transition: var(--transition-slow); z-index: 0; }
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card-inner { background: var(--bg-white); border-radius: calc(var(--radius-lg) - 2px); padding: 32px; position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }
.service-card:hover .service-card-inner { background: transparent; }
.service-card:hover .service-title, .service-card:hover .service-desc, .service-card:hover .service-list li { color: white; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); color: white; }
.service-card:hover .service-link { color: white; }
.service-card:hover .service-link i { background: white; color: var(--primary); }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary-light), rgba(26,115,232,0.1)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--primary); margin-bottom: 20px; transition: var(--transition); }
.service-title { font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; transition: var(--transition); }
.service-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; transition: var(--transition); }
.service-list { margin-bottom: 24px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; transition: var(--transition); }
.service-list li i { color: var(--secondary); font-size: 12px; flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--primary); transition: var(--transition); }
.service-link i { width: 32px; height: 32px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: var(--transition); }

/* Why Us Section */
.why-us { padding: 100px 0; background: var(--bg-white); }
.why-us-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.why-us-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; gap: 20px; padding: 24px; background: var(--bg-light); border-radius: var(--radius-lg); transition: var(--transition); }
.why-feature:hover { background: var(--primary-light); transform: translateX(-8px); }
.why-feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; flex-shrink: 0; box-shadow: 0 4px 15px rgba(26,115,232,0.3); }
.why-feature-content h4 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.why-feature-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.why-us-images { position: relative; }
.why-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.why-img-main img { width: 100%; height: 550px; object-fit: cover; }
.why-img-floating { position: absolute; bottom: 40px; left: -30px; z-index: 2; }
.floating-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 20px 28px; box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: 16px; border: 1px solid var(--gray-200); }
.floating-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent), var(--warning)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; }
.floating-number { display: block; font-size: 24px; font-weight: 900; color: var(--text-primary); line-height: 1; }
.floating-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* Process Section */
.process { padding: 100px 0; position: relative; overflow: hidden; }
.process-bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%); z-index: 0; }
.process .container { position: relative; z-index: 1; }
.process-timeline { position: relative; padding-top: 20px; }
.process-line { position: absolute; top: 80px; left: 50%; transform: translateX(-50%); width: 80%; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; }
.process-steps { display: flex; justify-content: space-between; gap: 20px; position: relative; }
.process-step { flex: 1; text-align: center; position: relative; }
.process-step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; margin: 0 auto 24px; position: relative; z-index: 2; box-shadow: 0 4px 15px rgba(26,115,232,0.3); }
.process-step-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-200); }
.process-step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.process-step-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-light), rgba(26,115,232,0.1)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin: 0 auto 16px; }
.process-step-title { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.process-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Gallery Section */
.gallery { padding: 100px 0; background: var(--bg-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; }
.gallery-item.large { grid-column: span 2; grid-row: span 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); display: flex; align-items: flex-end; padding: 24px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-content { transform: translateY(20px); transition: var(--transition); }
.gallery-item:hover .gallery-content { transform: translateY(0); }
.gallery-tag { display: inline-block; padding: 4px 12px; background: var(--primary); color: white; font-size: 12px; font-weight: 600; border-radius: 20px; margin-bottom: 8px; }
.gallery-content h4 { font-size: 18px; font-weight: 700; color: white; }

/* Testimonials Section */
.testimonials { padding: 100px 0; position: relative; overflow: hidden; }
.testimonials-bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%); z-index: 0; }
.testimonials .container { position: relative; z-index: 1; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testimonial-card { flex: 0 0 calc(33.333% - 16px); background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testimonial-avatar { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; font-weight: 700; flex-shrink: 0; }
.testimonial-info h4 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.testimonial-info span { font-size: 13px; color: var(--text-muted); }
.testimonial-rating { display: flex; gap: 4px; color: var(--warning); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-service { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--primary-light); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--primary); }
.testimonial-service i { font-size: 12px; }
.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.testimonial-btn { width: 48px; height: 48px; background: var(--bg-white); border: 2px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-primary); font-size: 16px; transition: var(--transition); }
.testimonial-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: scale(1.1); }
.testimonials-dots { display: flex; gap: 8px; }
.testimonial-dot { width: 10px; height: 10px; background: var(--gray-300); border-radius: 50%; cursor: pointer; transition: var(--transition); border: none; }
.testimonial-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* FAQ Section */
.faq { padding: 100px 0; background: var(--bg-light); }
.faq-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); }
.faq-item.active { box-shadow: var(--shadow); border-color: var(--primary-light); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-size: 16px; font-weight: 700; color: var(--text-primary); text-align: right; transition: var(--transition); }
.faq-question i { font-size: 14px; color: var(--primary); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.faq-image { position: sticky; top: 100px; }
.faq-image img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); margin-bottom: 24px; }
.faq-cta { background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.faq-cta-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-light), rgba(26,115,232,0.1)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin: 0 auto 16px; }
.faq-cta h4 { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.faq-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

/* Areas Section */
.areas { padding: 80px 0; background: var(--bg-white); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-card { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: var(--bg-light); border-radius: var(--radius); font-size: 14px; font-weight: 600; color: var(--text-secondary); transition: var(--transition); border: 1px solid var(--gray-200); }
.area-card:hover { background: var(--primary); color: white; transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.area-card i { color: var(--primary); font-size: 14px; transition: var(--transition); }
.area-card:hover i { color: white; }

/* Contact Section */
.contact { padding: 100px 0; position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%); z-index: 0; }
.contact .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition); }
.contact-card:hover { transform: translateX(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.contact-card-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary-light), rgba(26,115,232,0.1)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); flex-shrink: 0; }
.contact-card-content h4 { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.contact-card-content a, .contact-card-content span { font-size: 16px; font-weight: 700; color: var(--text-primary); display: block; }
.contact-card-content a:hover { color: var(--primary); }
.contact-card-content span:last-child { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-top: 2px; }
.contact-map { margin-top: 8px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.contact-form-wrapper { background: var(--bg-white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.form-header { text-align: center; margin-bottom: 28px; }
.form-header h3 { font-size: 24px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.form-header p { font-size: 15px; color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.form-input-wrapper { position: relative; }
.form-input-wrapper i { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--gray-500); font-size: 14px; pointer-events: none; }
.form-input-wrapper.textarea-wrapper i { top: 16px; transform: none; }
.form-input-wrapper input, .form-input-wrapper select, .form-input-wrapper textarea { width: 100%; padding: 14px 16px 14px 44px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: 15px; color: var(--text-primary); background: var(--bg-white); transition: var(--transition); }
.form-input-wrapper input:focus, .form-input-wrapper select:focus, .form-input-wrapper textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }
.form-input-wrapper textarea { resize: vertical; min-height: 120px; }
.form-input-wrapper select { appearance: none; cursor: pointer; }

/* Footer */
.footer { background: var(--dark); color: white; }
.footer-top { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.footer-logo-main { font-size: 20px; font-weight: 800; color: white; }
.footer-logo-sub { font-size: 13px; font-weight: 500; color: var(--primary); letter-spacing: 1px; }
.footer-about p { font-size: 14px; color: var(--gray-400); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-4px); }
.footer-col h4 { font-size: 17px; font-weight: 800; color: white; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-400); transition: var(--transition); }
.footer-links a:hover { color: white; padding-right: 8px; }
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--gray-400); }
.footer-contact li i { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 14px; flex-shrink: 0; }
.footer-contact a { color: var(--gray-400); transition: var(--transition); }
.footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--gray-500); transition: var(--transition); }
.footer-bottom-links a:hover { color: white; }

/* Floating Buttons */
.floating-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 16px; z-index: 998; }
.floating-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; box-shadow: var(--shadow-lg); position: relative; transition: var(--transition); }
.floating-btn:hover { transform: scale(1.1) translateY(-4px); }
.floating-call { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.floating-whatsapp { background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); }
.floating-pulse { position: absolute; inset: -4px; border-radius: 50%; animation: pulse-ring 2s ease infinite; }
.floating-call .floating-pulse { border: 2px solid var(--primary); }
.floating-whatsapp .floating-pulse { border: 2px solid var(--whatsapp); }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }
.floating-tooltip { position: absolute; right: 70px; background: var(--dark); color: white; padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; visibility: hidden; transform: translateX(10px); transition: var(--transition); }
.floating-btn:hover .floating-tooltip { opacity: 1; visibility: visible; transform: translateX(0); }

/* Booking Popup */
.booking-popup { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.booking-popup.active { opacity: 1; visibility: visible; }
.booking-popup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); }
.booking-popup-content { position: relative; background: var(--bg-white); border-radius: var(--radius-xl); padding: 40px; width: 90%; max-width: 480px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-xl); transform: scale(0.9) translateY(20px); transition: var(--transition); }
.booking-popup.active .booking-popup-content { transform: scale(1) translateY(0); }
.booking-popup-close { position: absolute; top: 16px; left: 16px; width: 36px; height: 36px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.booking-popup-close:hover { background: var(--danger); color: white; }
.booking-popup-header { text-align: center; margin-bottom: 28px; }
.booking-popup-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-light), rgba(26,115,232,0.1)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin: 0 auto 16px; }
.booking-popup-header h3 { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.booking-popup-header p { font-size: 14px; color: var(--text-muted); }
.booking-popup-form .form-group { margin-bottom: 16px; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow-lg); z-index: 997; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.9); }
.lightbox-overlay { position: absolute; inset: 0; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; left: 20px; width: 48px; height: 48px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; cursor: pointer; transition: var(--transition); }
.lightbox-close:hover { background: var(--danger); }

/* Nav Backdrop */
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 997; opacity: 0; visibility: hidden; transition: all 0.3s; }
.nav-backdrop.active { opacity: 1; visibility: visible; }

/* Responsive */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .about-grid, .why-us-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-wrap: wrap; }
    .process-step { flex: 0 0 calc(50% - 10px); }
    .process-line { display: none; }
    .testimonial-card { flex: 0 0 calc(50% - 12px); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 2; }
    .hero-buttons { flex-direction: column; }
    .hero-features { flex-direction: column; gap: 12px; }
    .about-features { grid-template-columns: 1fr; }
    .about-cta { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .floating-buttons { bottom: 20px; right: 20px; }
    .floating-btn { width: 50px; height: 50px; font-size: 20px; }
    .back-to-top { bottom: 20px; left: 20px; width: 44px; height: 44px; font-size: 16px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .emergency-content { padding: 0 40px; text-align: center; }
    .emergency-close { left: 8px; }
    .why-img-floating { left: 10px; bottom: 20px; }
    .floating-card { padding: 14px 18px; }
    .about-img-secondary { display: none; }
    .about-experience { top: -10px; left: -10px; }
    .experience-ring { width: 90px; height: 90px; }
    .experience-number { font-size: 18px; }
    .experience-text { font-size: 9px; }
    .contact-form-wrapper { padding: 24px; }
    .booking-popup-content { padding: 24px; width: 95%; }
    .header-top { display: none; }
    .nav-content { height: 64px; }
    .hero { padding-top: 80px; min-height: auto; padding-bottom: 80px; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .section-title { font-size: 26px; }
    .stats, .about, .services, .why-us, .process, .gallery, .testimonials, .faq, .areas, .contact { padding: 60px 0; }
    .stat-card { padding: 28px 20px; }
    .stat-number { font-size: 32px; }
    .service-card-inner { padding: 24px; }
    .why-feature { padding: 18px; gap: 14px; }
    .why-feature-icon { width: 48px; height: 48px; font-size: 18px; }
    .process-step-card { padding: 24px 18px; }
    .testimonial-card { padding: 24px; }
    .faq-question { padding: 16px 20px; font-size: 15px; }
    .faq-item.active .faq-answer { padding: 0 20px 16px; }
    .area-card { padding: 14px 16px; font-size: 13px; }
    .contact-card { padding: 18px; }
    .contact-card-icon { width: 44px; height: 44px; font-size: 16px; }
    .footer-top { padding: 50px 0 30px; }
    .footer-col h4 { font-size: 16px; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--bg-white); flex-direction: column; padding: 100px 24px 24px; gap: 4px; box-shadow: var(--shadow-xl); transition: var(--transition); z-index: 998; }
    .nav-menu.active { right: 0; }
    .nav-link { padding: 12px 16px; font-size: 16px; width: 100%; }
    .mobile-toggle { display: flex; z-index: 999; }
    .nav-cta { display: none; }
    .about-images { order: 2; }
    .about-content { order: 1; }
    .why-us-images { order: 2; }
    .why-us-content { order: 1; }
    .faq-image { position: relative; top: 0; order: 1; }
    .faq-content { order: 2; }
}

@media (max-width: 768px) {
    .services-grid, .stats-grid, .areas-grid, .footer-grid { grid-template-columns: 1fr; }
    .process-step { flex: 0 0 100%; }
    .testimonial-card { flex: 0 0 100%; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .gallery-item.large { grid-column: span 1; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 28px; }
    .btn-lg { padding: 12px 24px; font-size: 14px; }
    .section-title { font-size: 24px; }
    .logo-main { font-size: 16px; }
    .logo-sub { font-size: 11px; }
    .logo-icon { width: 38px; height: 38px; font-size: 16px; }
    .stat-card { padding: 24px 16px; }
    .stat-icon { width: 48px; height: 48px; font-size: 20px; }
    .stat-number { font-size: 28px; }
    .service-icon { width: 52px; height: 52px; font-size: 22px; }
    .service-title { font-size: 17px; }
    .why-feature-content h4 { font-size: 15px; }
    .process-step-number { width: 42px; height: 42px; font-size: 15px; }
    .process-step-icon { width: 48px; height: 48px; font-size: 20px; }
    .process-step-title { font-size: 16px; }
    .testimonial-avatar { width: 44px; height: 44px; font-size: 16px; }
    .testimonial-info h4 { font-size: 14px; }
    .testimonial-text { font-size: 14px; }
    .floating-btn { width: 46px; height: 46px; font-size: 18px; }
    .floating-tooltip { display: none; }
    .booking-popup-header h3 { font-size: 18px; }
}

@media print {
    .header, .floating-buttons, .back-to-top, .emergency-banner, .scroll-progress, .hero-scroll, .booking-popup { display: none !important; }
    .hero { min-height: auto; padding: 40px 0; }
    body { background: white; color: black; }
}
