﻿/* Root Variables & Reset */
:root {
    --primary: #00BD7D;
    --primary-dark: #009c66;
    --primary-light: #e6f8f2;
    --text-main: #111827;
    --text-muted: #4b5563;
    --bg-main: #FFFFFF;
    --bg-light: #f3f4f6;
    --bg-gray: #e5e7eb;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-perspective: 20px 20px 60px rgba(0,0,0,0.08), -20px -20px 60px rgba(255,255,255,0.9);
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-ar);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}
.areas-note { color: var(--text-muted); font-size: 1.1rem; font-weight: 600; }
.en-num { font-family: var(--font-en); direction: ltr; display: inline-block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.4; color: var(--text-main); }
.sub-title {
    display: inline-block; color: var(--primary); font-weight: 700;
    margin-bottom: 15px; padding: 6px 16px; background: var(--primary-light);
    border-radius: 30px; font-size: 1rem;
}
.section-title { font-size: 2.4rem; margin-bottom: 20px; }
.section-desc { color: var(--text-muted); max-width: 650px; margin: 0 auto 50px; font-size: 1.15rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 12px 28px; border-radius: 8px;
    font-weight: 700; cursor: pointer; border: none;
    transition: var(--transition); font-family: var(--font-ar);
    font-size: 1rem; text-decoration: none;
}
.btn-lg { padding: 16px 36px; font-size: 1.15rem; }
.btn-sm { padding: 8px 20px; font-size: 0.95rem; }
.btn-primary { background-color: var(--primary); color: white; box-shadow: 0 6px 15px rgba(0, 189, 125, 0.3); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 189, 125, 0.4); }
.btn-outline-primary { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: white; }
.btn-whatsapp { background-color: #25D366; color: white; box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background-color: #1ebe5d; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
.btn-whatsapp-outline { 
    background: transparent; border: 2px solid #25D366; color: #25D366; 
    border-radius: 50%; width: 45px; height: 45px; padding: 0; font-size: 1.3rem; 
}
.btn-whatsapp-outline:hover { background: #25D366; color: white; }
.btn-light { background: white; color: var(--text-main); box-shadow: var(--shadow-md); }
.btn-light:hover { background: var(--bg-light); transform: translateY(-3px); }

/* Perspective Design Utilities */
.perspective-btn { position: relative; transform-style: preserve-3d; }
.perspective-btn::before {
    content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 6px;
    background: rgba(0,0,0,0.15); border-radius: 0 0 8px 8px;
    transform: rotateX(-90deg); transform-origin: top; transition: var(--transition);
}
.perspective-btn:active { transform: translateY(4px); }
.perspective-btn:active::before { height: 2px; }

.perspective-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px; box-shadow: var(--shadow-perspective);
    position: relative; overflow: hidden;
}

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px);
    z-index: 1000; box-shadow: var(--shadow-sm); transition: var(--transition);
    padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.site-header.scrolled { padding: 12px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.6rem; font-weight: 800; color: var(--text-main); }
.logo i { color: var(--primary); font-size: 2rem; }
.nav-list { display: flex; gap: 25px; }
.nav-link { font-weight: 700; color: var(--text-muted); position: relative; padding: 5px 0; font-size: 1.05rem; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 3px;
    background: var(--primary); transition: var(--transition); border-radius: 3px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 15px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: var(--text-main); cursor: pointer; }

/* Dropdown Menu */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; right: 0; width: 240px;
    background: white; border-radius: 8px; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); border: 1px solid var(--bg-gray);
    padding: 10px 0; z-index: 100; text-align: right;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { margin: 0; }
.dropdown a {
    display: block; padding: 12px 20px; color: var(--text-muted);
    font-weight: 600; transition: var(--transition); font-size: 0.95rem;
}
.dropdown a:hover { color: var(--primary); background: var(--primary-light); padding-right: 25px; }
.has-dropdown > a i { font-size: 0.8rem; margin-right: 5px; transition: var(--transition); }
.has-dropdown:hover > a i { transform: rotate(180deg); }

/* Internal Pages Breadcrumbs & Hero */
.inner-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white; text-align: center; position: relative; overflow: hidden;
}
.inner-hero::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>') repeat;
    opacity: 0.5; z-index: 1; pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 2; }
.breadcrumb {
    display: flex; justify-content: center; gap: 10px; margin-bottom: 20px;
    list-style: none; padding: 0; font-size: 1.1rem; flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 10px; }
.breadcrumb li a { color: rgba(255,255,255,0.8); }
.breadcrumb li a:hover { color: white; }
.breadcrumb li i { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.inner-hero-title { font-size: 3rem; margin-bottom: 15px; color: white; }
.inner-hero-desc { font-size: 1.2rem; opacity: 0.9; max-width: 800px; margin: 0 auto; }

/* Internal Content Structure */
.content-section { padding: 80px 0; }
.content-block { margin-bottom: 50px; background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--bg-gray); }
.content-block h2 { font-size: 2.2rem; margin-bottom: 25px; color: var(--primary-dark); }
.content-block h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--text-main); }
.content-block p { font-size: 1.15rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 20px; }
.content-list { margin-bottom: 20px; padding-right: 20px; }
.content-list li { font-size: 1.15rem; margin-bottom: 15px; position: relative; list-style: none; color: var(--text-muted); line-height: 1.8; }
.content-list li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--primary); position: absolute; right: -25px; top: 5px; font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 10% 20%, var(--primary-light) 0%, transparent 60%),
                radial-gradient(circle at 90% 80%, #f3f4f6 0%, transparent 60%);
    position: relative; overflow: hidden;
}
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-content { flex: 1.2; max-width: 650px; position: relative; z-index: 2; }
.hero-title { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.2; font-weight: 800; }
.hero-title span { color: var(--primary); display: block; }
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; font-weight: 600; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-visual { flex: 1; position: relative; z-index: 1; min-height: 450px; display: flex; justify-content: center; align-items: center; }
.isometric-composition { position: relative; width: 100%; height: 100%; }

/* 3D Cube Graphic */
.main-graphic {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 220px; height: 220px; perspective: 1200px;
}
.cube-wrapper {
    width: 100%; height: 100%; position: relative; transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(45deg);
    animation: floatCube 8s ease-in-out infinite;
}
@keyframes floatCube {
    0%, 100% { transform: rotateX(-20deg) rotateY(45deg) translateY(0); }
    50% { transform: rotateX(-20deg) rotateY(45deg) translateY(-25px); }
}
.cube { width: 100%; height: 100%; position: absolute; transform-style: preserve-3d; }
.face {
    position: absolute; width: 220px; height: 220px; border: 3px solid rgba(0, 189, 125, 0.4);
    background: rgba(255, 255, 255, 0.95); box-shadow: inset 0 0 50px rgba(0, 189, 125, 0.1);
    display: flex; justify-content: center; align-items: center; font-size: 5rem; color: var(--primary);
}
.front  { transform: translateZ(110px); }
.back   { transform: rotateY(180deg) translateZ(110px); }
.right  { transform: rotateY(90deg) translateZ(110px); background: #fdfdfd;}
.left   { transform: rotateY(-90deg) translateZ(110px); }
.top    { transform: rotateX(90deg) translateZ(110px); background: #fff;}
.bottom { transform: rotateX(-90deg) translateZ(110px); }

/* Floating Cards */
.float-card {
    position: absolute; background: white; padding: 14px 24px; border-radius: 12px;
    box-shadow: var(--shadow-perspective); display: flex; align-items: center; gap: 12px;
    font-weight: 700; font-size: 1rem; z-index: 3; color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.03);
}
.float-card .icon-box {
    width: 40px; height: 40px; border-radius: 8px; background: var(--primary-light);
    color: var(--primary); display: flex; justify-content: center; align-items: center; font-size: 1.2rem;
}
.card-1 { top: 5%; right: 10%; animation: floatCard1 4s ease-in-out infinite alternate; }
.card-2 { top: 65%; right: -10%; animation: floatCard2 5s ease-in-out infinite alternate; }
.card-3 { bottom: 5%; left: 10%; animation: floatCard1 4.5s ease-in-out infinite alternate-reverse; }
.card-4 { top: 20%; left: 0%; animation: floatCard2 4s ease-in-out infinite alternate-reverse; }

@keyframes floatCard1 { from { transform: translateY(0) translateZ(30px); } to { transform: translateY(-15px) translateZ(30px); } }
@keyframes floatCard2 { from { transform: translateY(0) translateZ(50px); } to { transform: translateY(15px) translateZ(50px); } }

/* Trust Bar */
.trust-bar { background: var(--text-main); color: white; padding: 25px 0; border-top: 4px solid var(--primary); }
.trust-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.2rem; }
.trust-item i { color: var(--primary); font-size: 1.6rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 35px; }
.perspective-card { perspective: 1200px; height: 100%; }
.card-inner {
    background: white; padding: 45px 35px; border-radius: 20px;
    box-shadow: var(--shadow-sm); transition: all 0.4s ease;
    border: 1px solid var(--bg-gray); height: 100%;
    transform-style: preserve-3d; display: flex; flex-direction: column;
}
.perspective-card:hover .card-inner {
    transform: translateY(-15px) rotateX(8deg) rotateY(-8deg);
    box-shadow: 20px 25px 40px rgba(0,0,0,0.08); border-color: var(--primary-light);
}
.service-icon {
    width: 70px; height: 70px; border-radius: 16px; background: var(--primary-light);
    color: var(--primary); display: flex; justify-content: center; align-items: center;
    font-size: 2.2rem; margin-bottom: 25px; transition: var(--transition);
    transform: translateZ(40px);
}
.perspective-card:hover .service-icon { background: var(--primary); color: white; transform: translateZ(50px) scale(1.1); }
.service-title { margin-bottom: 15px; font-size: 1.5rem; transform: translateZ(30px); }
.service-desc { color: var(--text-muted); margin-bottom: 25px; transform: translateZ(20px); flex-grow: 1; }
.card-inner .btn { transform: translateZ(35px); align-self: flex-start; }

/* Why Us */
.why-us-container { display: flex; align-items: center; gap: 60px; }
.why-us-image { flex: 1; position: relative; }
.perspective-image-wrapper { position: relative; perspective: 1000px; padding: 20px; }
.perspective-image-wrapper img {
    width: 100%; border-radius: 24px;
    transform: rotateX(10deg) rotateY(-10deg);
    box-shadow: var(--shadow-perspective);
    transition: all 0.5s ease;
    border: 12px solid white;
}
.perspective-image-wrapper:hover img { transform: rotateX(0) rotateY(0); }
.badge-float {
    position: absolute; bottom: 0px; right: 0px; background: var(--text-main);
    color: white; padding: 25px; border-radius: 20px; box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; align-items: center;
    transform: translateZ(80px); transition: var(--transition);
}
.perspective-image-wrapper:hover .badge-float { transform: translateZ(100px) translateY(-10px); }
.badge-float .number { font-size: 2.5rem; font-weight: 800; font-family: var(--font-en); color: var(--primary); line-height: 1; margin-bottom: 5px; }
.badge-float .text { font-size: 1rem; font-weight: 700; }

.why-us-content { flex: 1; }
.features-list { display: flex; flex-direction: column; gap: 20px; margin-top: 35px; }
.features-list li { display: flex; align-items: flex-start; gap: 15px; font-size: 1.15rem; }
.feature-icon {
    width: 35px; height: 35px; background: var(--primary-light); color: var(--primary);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    flex-shrink: 0; font-size: 1rem; margin-top: 3px;
}
.feature-text strong { color: var(--text-main); display: inline-block; margin-left: 5px; }

/* Issues Grid */
.issues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.issue-item {
    background: white; border: 1px solid var(--bg-gray); padding: 30px 25px;
    border-radius: 16px; display: flex; align-items: center; gap: 18px;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.issue-item:hover {
    border-color: var(--primary); transform: translateX(-8px) translateY(-3px);
    box-shadow: 10px 15px 25px rgba(0,189,125,0.1);
}
.issue-icon { font-size: 2.2rem; color: var(--text-muted); transition: var(--transition); }
.issue-item:hover .issue-icon { color: var(--primary); }
.issue-item h4 { font-size: 1.15rem; margin: 0; color: var(--text-main); }

/* CTA Section */
.cta-section { padding: 60px 0; }
.cta-inner { padding: 70px 60px; display: flex; align-items: center; justify-content: space-between; }
.cta-inner::before {
    content: ''; position: absolute; top: -150px; right: -50px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 15px; color: white; }
.cta-content p { font-size: 1.2rem; opacity: 0.9; margin: 0; color: white; }
.cta-actions { display: flex; gap: 20px; position: relative; z-index: 2; }

/* Areas & Locations Grid */
.areas-tags { display: none; } /* Kept for reference but hidden if needed, or remove */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.location-card {
    background: white;
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--bg-gray);
    display: block;
    text-decoration: none;
    transform: perspective(1000px) rotateX(0) rotateY(0);
}
.location-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.location-card i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
    transition: var(--transition);
}
.location-card:hover i {
    color: white;
}

/* Map Section */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
    height: 400px;
    border: 4px solid white;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ */
.faq-accordion { max-width: 850px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--bg-gray); border-radius: 16px; margin-bottom: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%; text-align: right; padding: 25px; background: none; border: none;
    font-size: 1.2rem; font-weight: 800; font-family: var(--font-ar); color: var(--text-main);
    display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { color: var(--primary); background: var(--primary-light); }
.faq-question i { transition: var(--transition); color: var(--primary); font-size: 1.2rem; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); background: var(--bg-light); border-top: 1px solid transparent; }
.faq-answer p { padding: 25px 0; color: var(--text-muted); margin: 0; font-size: 1.1rem; line-height: 1.8; }
.faq-item.active .faq-question { color: var(--primary); border-bottom: 1px solid var(--bg-gray); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 400px; border-color: var(--bg-gray); }

/* Footer */
.site-footer { background: #0f172a; color: #cbd5e1; padding-top: 100px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { color: white; margin-bottom: 25px; display: inline-flex; }
.footer-about p { line-height: 1.9; max-width: 400px; font-size: 1.1rem; }
.footer-links h3, .footer-contact h3 { color: white; font-size: 1.4rem; margin-bottom: 30px; position: relative; }
.footer-links h3::after, .footer-contact h3::after {
    content: ''; position: absolute; bottom: -12px; right: 0; width: 50px; height: 3px; background: var(--primary); border-radius: 3px;
}
.footer-links ul li { margin-bottom: 15px; }
.footer-links ul li a { font-size: 1.1rem; }
.footer-links ul li a:hover { color: var(--primary); padding-right: 8px; }
.footer-contact ul li { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; }
.footer-contact ul li i { color: var(--primary); font-size: 1.4rem; width: 25px; text-align: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 25px 0; text-align: center; background: #0b1120; }

/* Floating Buttons */
.floating-actions { position: fixed; bottom: 30px; left: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999; }
.float-btn {
    width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 2rem; color: white; box-shadow: var(--shadow-lg); transition: var(--transition);
}
.float-wa { background: #25D366; }
.float-wa:hover { background: #1ebe5d; transform: scale(1.1) translateY(-5px); }
.float-call { background: var(--primary); display: none; }
.float-call:hover { background: var(--primary-dark); transform: scale(1.1) translateY(-5px); }

/* Ripple Click Effect */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
    position: absolute; border-radius: 50%; background: rgba(255,255,255,0.4);
    transform: scale(0); animation: rippleAnim 0.6s linear; pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* Button Hover Micro-Interactions */
.btn:active { transform: scale(0.97) !important; }

/* Sticky Mobile CTA Bar */
.sticky-cta-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(15,23,42,0.97); backdrop-filter: blur(10px);
    padding: 12px 15px; z-index: 1000;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
}
.sticky-cta-inner { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.sticky-cta-inner .btn { flex: 1; padding: 14px 10px; font-size: 1rem; border-radius: 10px; justify-content: center; }

/* Testimonials */
.testimonials-section { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.testimonial-card {
    background: white; padding: 35px 30px; border-radius: 20px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--bg-gray);
    transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.testimonial-card::before {
    content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 2.5rem; color: var(--primary-light); position: absolute; top: 20px; left: 20px;
}
.testimonial-text { font-size: 1.1rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light);
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800;
}
.testimonial-name { font-weight: 700; color: var(--text-main); }
.testimonial-location { font-size: 0.9rem; color: var(--text-muted); }
.stars { color: #f59e0b; margin-bottom: 15px; font-size: 1rem; }

/* Scroll Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

@media (max-width: 991px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-visual { min-height: 350px; margin-top: 30px; }
    
    .why-us-container { flex-direction: column; }
    .why-us-content { margin-top: 30px; }
    
    .cta-inner { flex-direction: column; text-align: center; gap: 40px; padding: 50px 30px; }
    
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-about p { max-width: 100%; }
}

@media (max-width: 768px) {
    .site-header { padding: 15px 0; }
    .nav-list {
        position: fixed; top: 75px; right: -100%; width: 100%; height: calc(100vh - 75px);
        background: white; flex-direction: column; align-items: flex-start; justify-content: flex-start;
        gap: 20px; padding: 40px 20px; transition: var(--transition); box-shadow: inset 0 10px 15px -3px rgba(0,0,0,0.05);
        overflow-y: auto;
    }
    .nav-list.active { right: 0; }
    .dropdown { position: static; width: 100%; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; display: none; background: var(--bg-light); margin-top: 10px; }
    .has-dropdown.active .dropdown { display: block; }
    .has-dropdown > a { display: flex; justify-content: space-between; width: 100%; }
    .nav-link { font-size: 1.3rem; }
    .mobile-toggle { display: block; }
    .header-actions .btn-primary { display: none; }
    
    .hero-section { padding: 140px 0 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1.1rem; }
    
    .trust-container { justify-content: center; }
    .trust-item { width: 45%; justify-content: center; text-align: center; flex-direction: column; gap: 5px; }
    
    .float-call { display: flex; } /* Show Call float on mobile */
    .floating-actions { left: 20px; bottom: 80px; } /* Push up above sticky bar */
    .float-btn { width: 55px; height: 55px; font-size: 1.6rem; }
    .sticky-cta-bar { display: block; } /* Show sticky CTA on mobile */
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .trust-item { width: 100%; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 1.8rem; }
    .card-inner { padding: 30px 20px; }
}
