/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0B192C;
    --primary-light: #1E3E62;
    --primary-rgb: 11, 25, 44;
    --secondary: #D4AF37;
    --secondary-light: #F1C40F;
    --secondary-rgb: 212, 175, 85;
    --accent: #FFD700;
    
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    
    --text-dark: #0B192C;
    --text-muted: #475569;
    --text-light: #F8FAFC;
    
    --border-color: #E2E8F0;
    --border-gold: rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-arabic: 'Cairo', sans-serif;
    --font-numbers: 'Outfit', sans-serif;
    
    /* Grid & Layout */
    --container-max: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 40px rgba(11, 25, 44, 0.08);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ==========================================================================
   CSS RESET & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-arabic);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    text-align: right;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.number-font {
    font-family: var(--font-numbers);
    direction: ltr;
    display: inline-block;
}

/* Common Section Badges and Headings */
.section-title-wrapper {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.max-width-600 {
    max-width: 600px;
}

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

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.85rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 1.25rem 2.75rem;
    font-size: 1.15rem;
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.btn-outline-navy {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-navy:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* ==========================================================================
   SECTION 1: HERO & HEADER
   ========================================================================== */

/* Top Bar Styling */
.top-bar {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.contact-link i {
    color: var(--secondary);
}

.contact-link:hover {
    color: var(--secondary);
}

.btn-top-cta {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.btn-top-cta:hover {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Main Navigation Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-color);
}

.main-header.scrolled {
    padding: 0.4rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.company-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.company-logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    background-color: var(--bg-white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.navbar ul {
    display: flex;
    gap: 2.25rem;
}

.nav-item {
    font-weight: 700;
    color: var(--primary-light);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--secondary);
}

.nav-item:hover::after {
    width: 100%;
}

/* Mobile Toggle Trigger */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

/* Mobile Overlay menu styling */
.mobile-menu {
    position: fixed;
    top: 110px; /* Right below topbar+header */
    left: 0;
    width: 100%;
    height: calc(100vh - 110px);
    background-color: rgba(11, 25, 44, 0.98);
    backdrop-filter: blur(15px);
    z-index: 99;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.mobile-menu.open {
    display: flex;
}

.mobile-navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
}

.mobile-nav-item:hover {
    color: var(--secondary);
}

.mobile-contact-btn {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

/* Hero Section Main layout */
.hero-section {
    position: relative;
    padding: 7rem 0 5rem 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(11, 25, 44, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 25, 44, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
}

.light-radial {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--secondary);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.english-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-light);
    text-align: right;
    line-height: 1;
}

.arabic-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.25;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 20%, var(--primary-light) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Hero Canvas & Isometric Graphic styles */
.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.interactive-canvas {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    transition: var(--transition-smooth);
    animation: floatAnimation 6s ease-in-out infinite;
}

.interactive-canvas:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(11, 25, 44, 0.12);
}

.hero-svg-canvas {
    width: 100%;
    height: auto;
}

/* Floating animation */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   SECTION 2: SERVICES GRID (6-Cards)
   ========================================================================== */
.services-section {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.service-card {
    position: relative;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: var(--bg-white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover .card-border-glow {
    transform: scaleX(1);
}

.service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary);
    color: var(--secondary);
    transform: rotateY(180deg);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

/* ==========================================================================
   SECTION 3: VALUE PROPOSITION BANNER
   ========================================================================== */
.val-prop-section {
    padding: 0 0 7rem 0;
    background-color: var(--bg-light);
}

.val-prop-banner {
    background-color: rgba(212, 175, 55, 0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 4.5rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.val-banner-lead {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.val-banner-core {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.val-banner-subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.8;
}

.val-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.val-dark-card {
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.val-dark-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.val-dark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.2);
    border-color: var(--secondary);
}

.val-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.text-gold {
    color: var(--secondary);
}

.val-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.val-card-desc {
    font-size: 1rem;
    color: rgba(248, 250, 252, 0.8);
    line-height: 1.7;
    text-align: justify;
}

/* ==========================================================================
   SECTION 4: WARRANTIES & CUSTOMER SERVICE (Split Layout)
   ========================================================================== */
.split-info-section {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
}

.split-column {
    display: flex;
    flex-direction: column;
}

.column-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.column-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.column-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
}

.title-underline {
    width: 60px;
    height: 3.5px;
    background-color: var(--secondary);
    border-radius: 10px;
    margin-top: 0.5rem;
}

/* Checklist layout rules */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checklist li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.list-content strong {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
    display: block;
    font-weight: 700;
}

.list-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Warranties checkmark styling */
.check-icon-wrapper {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 3px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Customer service headset + background tech graphic styling */
.tech-headset-container {
    position: relative;
    width: 150px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.tech-brain-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.tech-svg {
    width: 100%;
    height: 100%;
}

.headset-icon-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--secondary);
}

.service-number {
    font-family: var(--font-numbers);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    background-color: rgba(212, 175, 55, 0.08);
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   SECTION 5: FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 7rem 0;
    background-color: var(--bg-light);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--secondary-light);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.75rem;
    font-family: var(--font-arabic);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1.5rem;
}

.faq-icon-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-trigger {
    color: var(--secondary);
}

.faq-item.active .faq-icon-indicator {
    background-color: var(--secondary);
    color: var(--primary);
    transform: rotate(135deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.75rem;
}

.faq-item.active .faq-content {
    max-height: 250px;
    padding-bottom: 1.5rem;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-bottom: 1.5rem;
    text-align: justify;
}

/* CTA Block Style below Accordions */
.faq-cta-block {
    max-width: 800px;
    margin: 0 auto;
}

.cta-inner {
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-text h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(248, 250, 252, 0.85);
    font-size: 1.05rem;
}

.cta-button-area {
    flex-shrink: 0;
}

/* ==========================================================================
   SECTION 6: FOOTER & WHATSAPP WIDGET
   ========================================================================== */
.main-footer {
    background-color: var(--primary);
    color: var(--text-light);
    border-top: 3px solid var(--secondary);
    padding: 5rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.25fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-brief-text {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
    text-align: justify;
}

.footer-col-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 0.5rem;
}

.footer-title-line {
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
    margin-top: -1rem;
    border-radius: 2px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-list a {
    color: rgba(248, 250, 252, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-list a:hover {
    color: var(--secondary);
    transform: translateX(-5px);
}

.footer-links-list a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.address-details-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.address-icon {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-top: 3px;
}

.address-text {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.8);
    line-height: 1.7;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-lbl {
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.5);
}

.contact-val {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 700;
}

.contact-val:hover {
    color: var(--secondary);
}

/* Footer Bottom Bar and Social Links */
.footer-bottom-bar {
    background-color: #060e19;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hovering WhatsApp Chat Widget */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.widget-body {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.widget-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
    animation: widgetPulse 2s infinite;
}

.widget-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gold);
}

.widget-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary);
}

.whatsapp-floating-widget:hover .widget-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-floating-widget:hover .widget-body {
    transform: scale(1.1);
    background-color: #20ba5a;
}

@keyframes widgetPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* ==========================================================================
   MEDIA QUERIES (Responsive Layouts)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .english-title {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Topbar toggle */
    .top-bar-container {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .top-bar-action {
        display: none; /* Hide topbar cta on mobile, keep inside phone links */
    }
    
    /* Header Navbar display toggle */
    .navbar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .arabic-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .val-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.75rem;
        gap: 1.5rem;
    }
    
    .cta-button-area {
        width: 100%;
    }
    
    .cta-button-area .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .bottom-bar-container {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    
    .whatsapp-floating-widget {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .arabic-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-trigger {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-content {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
}

/* ==========================================================================
   BILINGUAL & LTR LAYOUT OVERRIDES
   ========================================================================== */
html[lang="en"] body {
    text-align: left;
}

html[lang="en"] .navbar ul,
html[lang="en"] .mobile-navbar ul {
    direction: ltr;
}

html[lang="en"] .checklist li {
    padding-right: 0;
    padding-left: 2.5rem;
}

html[lang="en"] .checklist li::before {
    right: auto;
    left: 0;
}

html[lang="en"] .warranties-list li .check-icon-wrapper {
    margin-right: 1rem;
    margin-left: 0;
}

html[lang="en"] .customer-service-list li .service-number {
    margin-left: 1.25rem;
    margin-right: 0;
}

html[lang="en"] .footer-links-list li a i {
    transform: rotate(180deg);
    margin-right: 0.5rem;
    margin-left: 0;
}

html[lang="en"] .btn-outline-navy i,
html[lang="en"] .btn-outline-navy svg {
    transform: rotate(180deg);
}

/* Language Toggler Style */
.lang-switcher-wrapper {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
}

html[lang="en"] .lang-switcher-wrapper {
    margin-right: 0;
    margin-left: 1rem;
}

.btn-lang-toggle {
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--secondary);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lang-toggle:hover {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}


/* ==========================================================================
   FREE CONSULTATION LEAD MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 25, 44, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--bg-white);
    width: 90%;
    max-width: 580px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-gold);
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 1.75rem 2.5rem;
    position: relative;
    border-bottom: 3px solid var(--secondary);
}

.modal-title {
    color: var(--secondary);
    font-size: 1.35rem;
    font-weight: 800;
}

.modal-subtitle {
    color: rgba(248, 250, 252, 0.85);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

html[lang="en"] .modal-close-btn {
    left: auto;
    right: 1.5rem;
}

.modal-close-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-color);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-error {
    color: #e74c3c;
    font-size: 0.8rem;
    font-weight: 700;
    display: none;
}

.form-error.active {
    display: block;
}

/* Success screen */
.modal-success-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem 2rem;
}

.modal-success-screen.active {
    display: flex;
}

.success-icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: successPulse 1.5s infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-headline {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.success-body-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 380px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-whatsapp-forward {
    background-color: #25D366;
    color: var(--bg-white);
    border: none;
    width: 100%;
}

.success-whatsapp-forward:hover {
    background-color: #20ba5a;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   PIXEL CONVERSION TRACKING MONITOR
   ========================================================================== */
.pixel-monitor {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(11, 25, 44, 0.95);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1rem;
    z-index: 998;
    max-width: 320px;
    color: var(--text-light);
    font-family: var(--font-numbers);
    box-shadow: var(--shadow-lg);
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.pixel-monitor:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.pixel-monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.pixel-monitor-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
}

.pixel-monitor-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2ecc71;
}

.pixel-logs-container {
    font-size: 0.75rem;
    max-height: 120px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pixel-log-entry {
    border-left: 2px solid var(--secondary);
    padding-left: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.9;
    animation: slideInLeft 0.2s ease forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 600px) {
    .pixel-monitor {
        display: none; /* Hide visual pixel debug monitor on mobile devices */
    }
}

