/* Enhanced Variables */
:root {
    --primary-color: #1a62d4; 
    --primary-light: #438bf5;
    --secondary-color: #0f172a; 
    --accent-color: #f59e0b; 
    --topbar-bg: #1e3a8a;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(26, 98, 212, 0.15);
    --shadow-lg: 0 20px 40px -5px rgba(15, 23, 42, 0.1);
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* Base & Typography */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }
body { background-color: var(--white); color: var(--text-dark); line-height: 1.8; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }

/* Utilities */
.text-center { text-align: center; } .text-end { text-align: left; } .text-start { text-align: right; }
.text-white { color: var(--white); } .text-primary { color: var(--primary-color); }
.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.5rem; } .mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1.5rem; }
.ms-2 { margin-right: 0.5rem; } /* RTL */
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    cursor: pointer; border: 2px solid transparent; transition: var(--transition-smooth);
    position: relative; overflow: hidden; z-index: 1;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(26, 98, 212, 0.3);
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    z-index: -1; transition: opacity 0.4s ease; opacity: 0;
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 12px 25px rgba(26, 98, 212, 0.4); color: var(--white);
}
.btn-primary:hover::before { opacity: 1; }
.btn-outline-primary { border-color: var(--primary-color); color: var(--primary-color); background-color: transparent; }
.btn-outline-primary:hover { background-color: var(--primary-color); color: var(--white); transform: translateY(-2px); }

/* Animations Keyframes */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

.animate-up { opacity: 0; transform: translateY(40px); transition: var(--transition-smooth); }
.animate-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }

/* Tags & Titles */
.section-tag {
    display: inline-block; background-color: rgba(26, 98, 212, 0.08); color: var(--primary-color);
    padding: 6px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 800;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.section-title { font-size: 2.4rem; margin-bottom: 20px; line-height: 1.3; font-weight: 800; color: var(--secondary-color); }
.section-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.8; }

/* Topbar & Header */
.topbar { background-color: var(--topbar-bg); color: var(--white); padding: 8px 0; font-size: 0.9rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-social a { color: var(--white); margin-right: 15px; font-size: 1rem; opacity: 0.8; }
.topbar-social a:hover { opacity: 1; transform: scale(1.2); }

.main-header { padding: 20px 0; background-color: var(--white); border-bottom: 1px solid #f1f5f9; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.header-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2.2rem; color: var(--primary-color); }
.logo-text { font-size: 1.6rem; font-weight: 800; color: var(--secondary-color); letter-spacing: 1px; }

.header-info-blocks { display: flex; gap: 40px; }
.info-block { display: flex; align-items: center; gap: 15px; transition: var(--transition-fast); }
.info-block:hover { transform: translateY(-2px); }
.info-icon {
    width: 45px; height: 45px; background: rgba(26, 98, 212, 0.08); color: var(--primary-color);
    border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem;
}
.info-text { display: flex; flex-direction: column; }
.info-title { font-size: 0.85rem; color: var(--text-dark); font-weight: 800; }
.info-desc { font-size: 0.9rem; color: var(--text-muted); font-weight: 600;}

/* Navbar */
.navbar { background-color: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; }
.nav-links li a {
    display: block; padding: 20px 15px; font-weight: 700; color: var(--text-dark); font-size: 0.95rem; position: relative;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }
.nav-links li a::after {
    content: ''; position: absolute; bottom: 0; left: 15px; right: 15px; height: 3px;
    background-color: var(--primary-color); transform: scaleX(0); transition: var(--transition-smooth);
}
.nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; }
.btn-maintenance { color: var(--primary-color); font-weight: 800; font-size: 0.95rem; }

/* Hero Section */
.hero-section {
    position: relative; height: 80vh; min-height: 600px;
    background: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=2069&auto=format&fit=crop') center/cover no-repeat;
    display: flex; align-items: center; overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(26, 98, 212, 0.7) 100%);
}
.hero-shape { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; direction: ltr; z-index: 2; }
.hero-shape svg { width: 100%; height: auto; fill: var(--white); }
.hero-content { position: relative; z-index: 3; color: var(--white); text-align: right; max-width: 800px; padding-bottom: 50px; }
.hero-title { font-size: 4rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.4rem; font-weight: 600; opacity: 0.9; margin-bottom: 35px; border-right: 4px solid var(--accent-color); padding-right: 15px; }

/* About Section — Premium Redesign */
.about-section { background: var(--white); position: relative; overflow: hidden; }
.about-section::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 45%; height: 100%;
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
    clip-path: polygon(0 0, 90% 0, 75% 100%, 0 100%);
    z-index: 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}
/* Images side */
.about-images { position: relative; padding-bottom: 40px; padding-left: 20px; }
.img-main {
    width: 88%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px rgba(26,98,212,0.12);
    transition: var(--transition-smooth);
    display: block;
    margin-right: auto;
}
.img-main:hover { transform: scale(1.02); }
.img-sub {
    position: absolute; bottom: 0; right: -10px;
    width: 48%;
    border-radius: var(--border-radius-md);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}
.badge-year {
    position: absolute; top: 20px; left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white); padding: 18px 22px;
    border-radius: var(--border-radius-md);
    text-align: center; z-index: 2;
    box-shadow: 0 10px 25px rgba(26,98,212,0.35);
}
.badge-year .year { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-year .since { font-size: 0.8rem; font-weight: 600; opacity: 0.85; }

/* Text side */
.about-text { padding-right: 10px; }
.about-checklist { list-style: none; margin: 25px 0 30px; }
.about-checklist li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem; font-weight: 600; color: var(--text-dark);
}
.about-checklist li:last-child { border-bottom: none; }
.about-checklist li .check-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 0.75rem;
    margin-top: 2px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}
.feature-item {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, #f8faff, #f0f5ff);
    padding: 18px 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid #e2eaf8;
    transition: var(--transition-smooth);
}
.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--white);
}
.feature-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.feature-item:hover .feature-icon { transform: rotate(10deg) scale(1.1); }
.feature-text { font-weight: 800; font-size: 0.95rem; line-height: 1.4; color: var(--text-dark); }

/* =============================
   Testimonials — Premium Card Grid
   ============================= */
.testimonials-section {
    background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute; top: -100px; left: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,98,212,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8eef8;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(26, 98, 212, 0.08);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26,98,212,0.2);
}
.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: transparent;
    color: var(--white);
}
.testimonial-card.featured::before { color: rgba(255,255,255,0.1); }
.testimonial-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 20px; display: flex; gap: 4px; }
.testimonial-card.featured .testimonial-stars { color: #fef08a; }
.testimonial-text {
    font-size: 1rem; line-height: 1.8; color: var(--text-muted);
    margin-bottom: 25px; font-style: italic;
}
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.9); font-style: normal; font-weight: 500; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem; font-weight: 800;
    flex-shrink: 0;
}
.testimonial-card.featured .author-avatar {
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.5);
}
.author-info .author-name {
    font-weight: 800; font-size: 1rem; color: var(--text-dark);
    margin-bottom: 4px;
}
.testimonial-card.featured .author-info .author-name { color: var(--white); }
.author-info .author-role { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.testimonial-card.featured .author-info .author-role { color: rgba(255,255,255,0.75); }

/* =============================
   Stats Section — Premium Redesign
   ============================= */
.stats-section {
    background-color: var(--bg-light);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
/* Decorative top border */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
}
/* Subtle background circle */
.stats-section::after {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 98, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.stats-header .section-title { color: var(--secondary-color); }
.stats-header .section-desc { max-width: 650px; margin: 0 auto; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: var(--white);
    border: 1px solid #e8eef8;
    border-radius: var(--border-radius-lg);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.stat-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-md); border-color: transparent; }
.stat-card:hover::before { transform: scaleX(1); }

.stat-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(26, 98, 212, 0.1), rgba(67, 139, 245, 0.15));
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}
.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    transform: rotateY(360deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
    direction: ltr;
    display: inline-block;
}
.stat-text { font-weight: 700; font-size: 1rem; color: var(--text-muted); margin-top: 8px; line-height: 1.4; }

/* Services Section */
.services-section { background-color: var(--bg-light); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background-color: var(--white); border-radius: var(--border-radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition-smooth); border: 1px solid #e2e8f0;
}
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(26, 98, 212, 0.3); }
.service-img-wrapper { height: 240px; overflow: hidden; position: relative; }
.service-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.service-card:hover .service-img-wrapper img { transform: scale(1.1); }
.service-content { padding: 30px; }
.service-content h3 { font-size: 1.25rem; margin-bottom: 15px; font-weight: 800; transition: color 0.3s; }
.service-card:hover .service-content h3 { color: var(--primary-color); }
.read-more { color: var(--text-muted); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }
.service-card:hover .read-more { color: var(--primary-color); }
.read-more i { transition: transform 0.3s; }
.read-more:hover i { transform: translateX(-5px); }

/* =============================
   Order Section — Premium Redesign
   ============================= */
.order-section {
    background: linear-gradient(150deg, var(--secondary-color) 50%, #172040 100%);
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}
/* Decorative blobs */
.order-section::before {
    content: '';
    position: absolute; top: -150px; right: -150px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 98, 212, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.order-section::after {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 139, 245, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Form Card — Clean White */
.order-form-container {
    background: var(--white);
    padding: 50px 45px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}
.order-form-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
}
.order-form-container .form-title {
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.7rem;
    text-align: center;
}
.order-form-container .form-subtitle {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Form Controls — Light Style */
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8eef8;
    border-radius: 12px;
    background-color: #f8fafc;
    color: var(--text-dark);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-bottom: 18px;
}
.form-control::placeholder { color: #94a3b8; }
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 98, 212, 0.08);
}

.form-row { display: flex; gap: 18px; }
.form-row .form-control { flex: 1; }

/* Benefits Side */
.order-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}
.order-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    width: fit-content;
}
.order-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}
.order-desc {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}
.order-features-list { list-style: none; }
.order-features-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #cbd5e1;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition-fast);
}
.order-features-list li:last-child { border-bottom: none; }
.order-features-list li:hover { color: var(--white); transform: translateX(-5px); }
.order-features-list li .feat-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(26, 98, 212, 0.3), rgba(67, 139, 245, 0.2));
    border: 1px solid rgba(67, 139, 245, 0.3);
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.1rem;
    color: var(--primary-light);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.order-features-list li:hover .feat-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-color: transparent;
}

/* News Section */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Footer */
.main-footer { background-color: var(--secondary-color); color: var(--white); padding-top: 80px; position: relative;}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo .logo-icon { color: var(--primary-color); font-size: 2.5rem; }
.footer-logo .logo-text { color: var(--white); font-size: 1.8rem; font-weight: 800;}
.footer-desc { color: #94a3b8; margin-bottom: 25px; line-height: 1.8; }
.footer-location { color: var(--white); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.footer-location i { color: var(--primary-color); font-size: 1.2rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; background-color: rgba(255,255,255,0.05); display: flex; justify-content: center; align-items: center;
    border-radius: 50%; color: var(--white); transition: var(--transition-fast); border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background-color: var(--primary-color); transform: translateY(-3px); border-color: transparent;}
.footer-links h3 { color: var(--white); margin-bottom: 25px; font-size: 1.3rem; font-weight: 800; }
.footer-links ul li { margin-bottom: 15px; }
.footer-links ul li a { color: #94a3b8; display: flex; align-items: center; gap: 10px; transition: var(--transition-fast); }
.footer-links ul li a i { font-size: 0.8rem; color: var(--primary-color); }
.footer-links ul li a:hover { color: var(--white); transform: translateX(-5px); }
.footer-map h3 { color: var(--white); margin-bottom: 25px; font-size: 1.3rem; font-weight: 800; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; text-align: center; color: #64748b; font-size: 0.95rem; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed; bottom: 30px; left: 30px; width: 60px; height: 60px; background-color: #25D366; color: white;
    border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; transition: transform 0.3s;
}
.floating-whatsapp:hover { transform: scale(1.1); color: white; }

/* Responsive */
@media (max-width: 992px) {
    .header-info-blocks { display: none; }
    .about-grid, .order-grid { grid-template-columns: 1fr; gap: 40px; }
    .img-sub { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .services-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .topbar-inner, .navbar-inner { flex-direction: column; gap: 10px; }
    .nav-links { display: none; }
    .services-grid, .news-grid, .stats-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-content { text-align: center; }
    .hero-subtitle { border-right: none; padding-right: 0; }
}

/* ==========================================
   Premium Service Card Floating Icons
   ========================================== */
.service-card {
    position: relative;
    margin-top: 30px;
}
.service-content {
    position: relative;
    padding-top: 45px !important;
}
.service-icon-floating {
    position: absolute;
    top: -30px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(26, 98, 212, 0.25);
    border: 4px solid var(--white);
    transition: var(--transition-smooth);
    z-index: 10;
}
.service-card:hover .service-icon-floating {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 12px 25px rgba(26, 98, 212, 0.35);
}

/* ==========================================
   English (LTR) Automatic Flipping & Overrides
   ========================================== */
html[dir="ltr"],
html[dir="ltr"] body,
html[dir="ltr"] input,
html[dir="ltr"] textarea,
html[dir="ltr"] select,
html[dir="ltr"] button {
    font-family: 'Outfit', sans-serif;
}

html[dir="ltr"] .text-start {
    text-align: left !important;
}

html[dir="ltr"] .text-end {
    text-align: right !important;
}

html[dir="ltr"] .hero-content {
    text-align: left !important;
}

html[dir="ltr"] .hero-subtitle {
    border-right: none;
    border-left: 4px solid var(--accent-color);
    padding-right: 0;
    padding-left: 15px;
}

html[dir="ltr"] .about-images {
    padding-left: 0;
    padding-right: 20px;
}

html[dir="ltr"] .img-main {
    margin-right: 0;
    margin-left: auto;
}

html[dir="ltr"] .img-sub {
    right: auto;
    left: -10px;
}

html[dir="ltr"] .badge-year {
    left: auto;
    right: 20px;
}

html[dir="ltr"] .about-text {
    padding-right: 0;
    padding-left: 10px;
}

html[dir="ltr"] .order-text {
    padding-right: 0;
    padding-left: 20px;
}

html[dir="ltr"] .order-features-list li:hover {
    transform: translateX(5px);
}

html[dir="ltr"] .footer-links ul li a:hover {
    transform: translateX(5px);
}

html[dir="ltr"] .service-icon-floating {
    right: auto;
    left: 35px;
}

html[dir="ltr"] .floating-whatsapp {
    left: auto;
    right: 30px;
}

html[dir="ltr"] .about-checklist li {
    flex-direction: row;
}

html[dir="ltr"] .about-checklist li .check-icon {
    margin-right: 0;
}

/* ==========================================
   Mobile Responsiveness (Max Width: 991px)
   ========================================== */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 991px) {
    /* Header & Topbar */
    .topbar-inner { flex-direction: column; gap: 10px; text-align: center; }
    .header-info-blocks { display: none; }
    .header-logo { justify-content: center; width: 100%; }
    
    /* Navbar Mobile Menu */
    .mobile-menu-btn { display: block; }
    .navbar-inner { flex-wrap: wrap; padding: 15px 0; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        margin-top: 15px;
        border-top: 1px solid #f1f5f9;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; border-bottom: 1px solid #f1f5f9; }
    .nav-links li a { padding: 15px 20px; }
    .nav-actions { margin-top: 15px; width: 100%; justify-content: space-between; padding: 0 20px; }
    
    /* Hero Section */
    .hero-section { height: auto; padding: 120px 0 80px; }
    .hero-title { font-size: 2.5rem; text-align: center; }
    .hero-subtitle { font-size: 1.1rem; text-align: center; border: none !important; padding: 0 !important; margin-bottom: 25px; }
    .hero-content { text-align: center !important; margin: 0 auto; }
    .hero-content .btn { margin: 0 auto; display: flex; width: fit-content; }
    
    /* Grids */
    .about-grid, .services-grid, .order-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    /* About */
    .about-images { margin-bottom: 30px; padding: 0 !important; }
    .img-main { width: 100%; margin: 0 !important; }
    .img-sub { width: 60%; right: -10px !important; left: auto !important; }
    .badge-year { top: -20px; left: 10px !important; right: auto !important; padding: 12px; }
    
    /* Order */
    .order-form-container { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 15px; }
    .order-text { padding: 0 !important; text-align: center; }
    .order-features-list li { justify-content: center; }
    
    /* Footer */
    .footer-col { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-location { justify-content: center; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .img-sub { width: 70%; }
    .service-card { padding: 25px 20px; }
    .nav-actions { flex-direction: column; gap: 15px; }
    .btn-maintenance { width: 100%; text-align: center; padding: 12px; background: rgba(26,98,212,0.1); border-radius: 8px; }
}
