/* ==========================================================================
   MLK Télécom Premium CSS Design System
   Color Scheme: Ooredoo Red & Dark Slate Gray
   Dir: RTL
   ========================================================================== */

/* Modern Design Variables & Design Tokens */
:root {
    --primary-red: #e60000;
    --primary-red-hover: #ff1a1a;
    --primary-red-glow: rgba(230, 0, 0, 0.4);
    --primary-red-glow-strong: rgba(230, 0, 0, 0.75);
    --dark-bg: #0b0b0d;
    --dark-card: #141417;
    --dark-border: #222227;
    --light-bg: #f8f9fa;
    --light-card: #ffffff;
    --light-border: #e9ecef;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-white: #ffffff;
    --text-white-muted: #a0aec0;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #128c7e;
    
    --font-main: 'Tajawal', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-red-neon: 0 0 15px rgba(230, 0, 0, 0.35);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   1. Global CSS Reset & Base Layouts
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-dark);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

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

ul {
    list-style: none;
}

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

iframe {
    border: none;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
}

strong {
    font-weight: 700;
    color: var(--primary-red);
}

/* Helper Utilities */
.w-full { width: 100%; }
.text-highlight { color: var(--primary-red); }
.font-bold { font-weight: 700; }
.clickable-upload { cursor: pointer; text-decoration: underline; }

/* Section Header standardizer */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 10px auto 20px auto;
    border-radius: var(--radius-full);
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

/* ==========================================================================
   2. Components: Buttons & UI Controls
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-bounce);
    outline: none;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 15px 36px;
    font-size: 18px;
    border-radius: var(--radius-md);
}

/* Button Variants */
.btn-red {
    background-color: var(--primary-red);
    color: var(--text-white);
}

.btn-red:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

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

.btn-green {
    background-color: var(--whatsapp-green);
    color: var(--text-white);
}

.btn-green:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary-red);
}

.btn-white:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Neon & Pulse Glow Animations */
.pulse-glow {
    position: relative;
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
    animation: pulseGlowEffect 2s infinite;
}

@keyframes pulseGlowEffect {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 12px rgba(230, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
    }
}

.submit-btn-glow {
    box-shadow: var(--shadow-red-neon);
    animation: submitBtnBlink 2.5s infinite;
}

@keyframes submitBtnBlink {
    0%, 100% { box-shadow: 0 0 15px rgba(230, 0, 0, 0.4); }
    50% { box-shadow: 0 0 25px rgba(230, 0, 0, 0.8), 0 0 5px rgba(230, 0, 0, 0.5); }
}

/* ==========================================================================
   3. Top Info Bar & Main Header
   ========================================================================== */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--dark-border);
}

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

.top-bar-item i {
    color: var(--primary-red);
    margin-left: 5px;
}

.top-bar-item a:hover {
    color: var(--primary-red);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.logo-link {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.5px;
    display: flex;
    gap: 4px;
}

.logo-red {
    color: var(--primary-red);
}

.logo-white {
    color: var(--text-dark);
}

/* Nav Menu styles */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn-scroll {
    color: var(--primary-red) !important;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

/* Hamburger Active Animation */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   4. Hero Section with Ooredoo Brand Palette
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 120px 0 160px 0;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.35;
    transform: scale(1.05);
    animation: zoomBgEffect 20s infinite alternate;
}

@keyframes zoomBgEffect {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Standard Premium red-dark gradient overlay matching Ooredoo brand */
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.88) 0%, rgba(11, 11, 13, 0.98) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.badge-ooredoo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.25;
}

.hero-title .text-highlight {
    text-shadow: 0 0 15px rgba(230, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-white-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

/* Trust Badges layout inside Hero */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.trust-badge-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.trust-badge-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(230, 0, 0, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(230, 0, 0, 0.1);
}

.badge-icon {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(230, 0, 0, 0.3);
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
}

/* Wave shape divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--light-bg);
}

/* ==========================================================================
   5. About Section ("واش نقدمولكم؟")
   ========================================================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text-lead {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-text-body {
    color: var(--text-muted);
    font-size: 15px;
}

/* Steps List styling */
.steps-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.steps-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    background-color: var(--primary-red);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(230, 0, 0, 0.2);
}

.step-desc h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.step-desc p {
    color: var(--text-muted);
    font-size: 14px;
}

.about-cta {
    margin-top: 15px;
}

/* About Shop Image Card styling */
.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--light-card);
    transition: var(--transition-bounce);
}

.about-image-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
}

.about-shop-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-card-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(11, 11, 13, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   6. Gallery Section (Beautiful printed case mockups grid)
   ========================================================================== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-card);
}

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

.case-card {
    background-color: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-border);
    transition: var(--transition-bounce);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 0, 0, 0.15);
}

.case-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #f1f3f5;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.case-card:hover .case-img {
    transform: scale(1.08);
}

/* Overlay Action button inside Case Cards */
.case-overlay-action {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 13, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.case-card:hover .case-overlay-action {
    opacity: 1;
}

.case-card:hover .case-overlay-action .btn {
    transform: scale(1) translateY(0);
}

.case-overlay-action .btn {
    transform: translateY(20px);
    transition: var(--transition-bounce);
}

.case-details {
    padding: 20px;
}

.case-category {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.case-card-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.case-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Info Note under Gallery */
.gallery-note {
    background-color: var(--light-bg);
    border-right: 4px solid var(--primary-red);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.gallery-note i {
    color: var(--primary-red);
    font-size: 18px;
}

/* ==========================================================================
   7. Customer Video Showcase Section (Neon Glowing Dark Area)
   ========================================================================== */
.videos-section {
    padding: 85px 0;
    background-color: var(--dark-bg);
    color: var(--text-white);
    position: relative;
}

.videos-section .section-title {
    color: var(--text-white);
}

.videos-section .section-desc {
    color: var(--text-white-muted);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background-color: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--dark-border);
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    /* Vibrant red neon border glow matching Ooredoo branding */
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.25), 0 0 15px rgba(230, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* Standard portrait video card style (9:16 aspect ratio feels optimal for smartphone case videos) */
    aspect-ratio: 9 / 16;
    max-height: 480px;
    background-color: #000;
}

.cloudinary-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-label-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(230, 0, 0, 0.9);
    color: var(--text-white);
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-red-neon);
    z-index: 10;
}

.video-cta-container {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   8. Order Section & Interactive 3D Case Preview (Jaw-Dropper UI)
   ========================================================================== */
.order-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.order-container-width {
    max-width: 1100px;
}

.order-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* Interactive Preview design */
.preview-card {
    background-color: var(--light-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
    text-align: center;
    position: sticky;
    top: 100px;
}

.preview-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.preview-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Phone 3D Case Representation */
.phone-mockup-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    background-color: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 
                inset 0 0 3px rgba(255, 255, 255, 0.25);
    border: 3px solid #333;
    position: relative;
    transition: var(--transition-bounce);
}

.phone-mockup:hover {
    transform: rotateY(-10deg) rotateX(10deg);
}

/* Camera Cutout (bump) */
.camera-bump {
    position: absolute;
    top: 25px;
    left: 25px; /* RTL reversed to look like phone left side camera */
    width: 65px;
    height: 70px;
    background-color: #161616;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 
                inset 0 0 2px rgba(255, 255, 255, 0.2);
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    z-index: 10;
}

.lens {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #333 10%, #111 80%);
    border-radius: 50%;
    border: 1px solid #444;
}

.lens::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin-top: 3px;
    margin-right: 3px;
}

.flash {
    width: 10px;
    height: 10px;
    background-color: #efefef;
    border-radius: 50%;
    justify-self: center;
    align-self: center;
}

/* Printed Background slot */
.printed-case-bg {
    width: 100%;
    height: 100%;
    background-color: #f1f3f5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.preview-placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    color: var(--text-muted);
}

.preview-placeholder-content i {
    font-size: 40px;
    color: #ced4da;
    margin-bottom: 12px;
}

.preview-placeholder-content p {
    font-size: 13px;
    line-height: 1.5;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red);
    background-color: rgba(230, 0, 0, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

/* Form card styling */
.form-card {
    background-color: var(--light-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--primary-red);
    margin-left: 5px;
}

.required {
    color: var(--primary-red);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    background-color: var(--light-bg);
    border: 1px solid #dee2e6;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center; /* RTL left side */
    background-size: 12px 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-red);
    background-color: var(--light-card);
    box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.1);
}

/* Custom drag and drop file upload block styling */
.upload-drag-area {
    border: 2px dashed #ced4da;
    background-color: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
}

.upload-drag-area:hover, .upload-drag-area.drag-over {
    border-color: var(--primary-red);
    background-color: rgba(230, 0, 0, 0.02);
}

.upload-icon-inner {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 12px;
    transition: var(--transition-bounce);
}

.upload-drag-area:hover .upload-icon-inner {
    transform: scale(1.15) translateY(-2px);
}

.upload-drag-area h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.upload-limits {
    font-size: 12px;
    color: var(--text-muted);
}

/* File selected notification detail box */
.selected-file-details {
    margin-top: 15px;
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.file-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-remove-file {
    background: transparent;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.btn-remove-file:hover {
    color: var(--primary-red-hover);
}

/* Special Note Alert in Form */
.alert-info-whatsapp {
    background-color: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
}

.alert-info-whatsapp i {
    color: var(--whatsapp-green);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-info-whatsapp strong {
    color: var(--whatsapp-green-hover);
}

/* ==========================================================================
   9. Location & Contact Sections
   ========================================================================== */
.location-section {
    padding: 80px 0;
    background-color: var(--light-card);
}

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

.location-card {
    background-color: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-border);
}

.location-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card h3 i {
    color: var(--primary-red);
}

.location-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.location-info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.location-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    color: var(--primary-red);
    font-size: 18px;
    flex-shrink: 0;
}

.info-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Map Mockup block with overlay link */
.location-map-mockup {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--light-bg);
    aspect-ratio: 4/3;
    height: 380px;
}

.map-link-container {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-visual-placeholder {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(230, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%), url('images/shop_exterior.jpg');
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 13, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding: 30px;
    z-index: 10;
    transition: var(--transition-smooth);
}

.location-map-mockup:hover .map-overlay {
    background-color: rgba(11, 11, 13, 0.45);
}

.location-map-mockup:hover .map-visual-placeholder {
    transform: scale(1.05);
}

.map-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.map-pin-animation {
    font-size: 44px;
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(230, 0, 0, 0.5);
    animation: mapPinBounce 1.5s infinite alternate;
}

@keyframes mapPinBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

.map-overlay-content h4 {
    font-size: 18px;
    font-weight: 800;
}

.map-overlay-content p {
    font-size: 14px;
    color: var(--text-white-muted);
}

/* Contact Section cards */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: var(--light-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-border);
    transition: var(--transition-bounce);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 0, 0, 0.15);
}

.contact-icon {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 15px;
    transition: var(--transition-bounce);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.15);
}

.color-whatsapp {
    color: var(--whatsapp-green);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
}

/* ==========================================================================
   10. Footer Section
   ========================================================================== */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 70px 0 0 0;
    border-top: 2px solid var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-white);
}

.footer-brand p {
    color: var(--text-white-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0; /* RTL aligned right */
    width: 30px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: var(--radius-full);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    color: var(--text-white-muted);
    font-size: 14px;
}

.footer-links ul a:hover {
    color: var(--primary-red);
    transform: translateX(-5px); /* RTL moves left on hover */
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact p {
    color: var(--text-white-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--primary-red);
    font-size: 16px;
}

.footer-bottom {
    background-color: #050506;
    padding: 20px 0;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-white-muted);
}

.ooredoo-badge-footer {
    background: rgba(230, 0, 0, 0.15);
    border: 1px solid rgba(230, 0, 0, 0.3);
    color: var(--primary-red);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

/* ==========================================================================
   11. Floating & Sticky Mobile Actions
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Floating on left side since RTL is right side */
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition-bounce);
}

.floating-whatsapp-btn:hover {
    background-color: var(--whatsapp-green-hover);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-ping {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--whatsapp-green);
    animation: whatsappPingAnim 1.8s infinite;
    pointer-events: none;
}

@keyframes whatsappPingAnim {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Mobile Sticky Bottom CTA bar */
.mobile-sticky-action-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: rgba(11, 11, 13, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-red);
    padding: 12px 20px;
    z-index: 998;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    display: none; /* Managed responsively or on scroll */
}

.mobile-sticky-action-bar.visible {
    transform: translateY(0);
}

.mobile-sticky-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-sticky-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.mobile-sticky-info strong {
    font-size: 14px;
    color: var(--text-white);
}

.mobile-sticky-info span {
    font-size: 11px;
    color: var(--text-white-muted);
}

.btn-mobile-sticky {
    padding: 8px 18px;
    font-size: 14px;
}

/* ==========================================================================
   12. JS Scroll Animations (Intersection Observer Targets)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.15), 
                transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.scroll-reveal.active,
.scroll-reveal-left.active,
.scroll-reveal-right.active,
.scroll-reveal-up.active {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   13. Responsive Media Queries (Mobile First & Tablet adaptations)
   ========================================================================== */

/* Up to Desktop screens (Large) */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablet Screens */
@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        order: -1; /* Image first on tablet/mobile */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .preview-card {
        position: static; /* Remove sticky on small screen */
        max-width: 480px;
        margin: 0 auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-map-mockup {
        height: 300px;
    }
    
    .contact-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Smartphone Screens */
@media (max-width: 768px) {
    /* Mobile-first Header styles */
    .top-bar {
        display: none; /* Hide top bar on mobile to save vertical space */
    }
    
    .btn-header {
        display: none; /* Hide header order button on mobile, sticky bottom bar is used instead */
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--light-card);
        padding: 40px 20px;
        box-shadow: -10px 10px 20px rgba(0,0,0,0.05);
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    /* Hero mobile responsive */
    .hero-section {
        padding: 80px 0 100px 0;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        max-width: 320px;
        margin-right: auto;
        margin-left: auto;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trust-badge-card {
        padding: 12px 10px;
        display: flex;
        align-items: center;
        text-align: right;
        gap: 15px;
    }
    
    .badge-icon {
        margin-bottom: 0;
        font-size: 20px;
    }
    
    /* Grid structures standardizer for mobile layout (vertical stacked) */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .form-card {
        padding: 25px 15px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .location-card {
        padding: 25px 15px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Mobile sticky Bottom display */
    .mobile-sticky-action-bar {
        display: block;
    }
    
    /* Shift floating WhatsApp upwards so it doesn't cover sticky bottom bar */
    .floating-whatsapp-btn {
        bottom: 85px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
