/* ==================== CSS VARIABLES ==================== */
:root {
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-300: #fca5a5;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    
    --primary: #c62828;
    --primary-light: #e53935;
    --primary-dark: #8e0000;
    --primary-glow: rgba(198, 40, 40, 0.3);
    
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-light: #7a7a9a;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-red: 0 10px 40px rgba(198, 40, 40, 0.15);
    --shadow-red-lg: 0 20px 60px rgba(198, 40, 40, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-ar);
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[lang="en"] body,
[lang="en"] * {
    font-family: var(--font-en);
}

[lang="en"] .hero-content h1,
[lang="en"] .section-title h2,
[lang="en"] h3, [lang="en"] h4 {
    font-family: var(--font-en);
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 5%;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 5%;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Navigation */
nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

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

nav a.active {
    background: var(--red-100);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.lang-toggle:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.lang-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 30%, #fff 60%, #fef2f2 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(198, 40, 40, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 40, 40, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.08) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.06) 0%, transparent 70%);
    bottom: 20%;
    left: -3%;
    animation-delay: -2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    top: 30%;
    left: 15%;
    animation-delay: -4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.1) 0%, transparent 70%);
    bottom: 15%;
    right: 20%;
    animation-delay: -3s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.07) 0%, transparent 70%);
    top: 60%;
    right: 35%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--red-200);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red-lg);
}

.btn-primary svg {
    transition: var(--transition);
}

[dir="rtl"] .btn-primary svg {
    transform: rotate(180deg);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

[dir="rtl"] .btn-primary:hover svg {
    transform: rotate(180deg) translateX(4px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--red-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--red-50);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce-scroll 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--red-300);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ==================== SECTION STYLES ==================== */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: var(--red-50);
    border-radius: var(--radius-full);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin: 0 auto;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
}

[dir="ltr"] .about-highlight {
    border-right: none;
    border-left: 4px solid var(--primary);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-100);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background: var(--white);
}

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

.service-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--red-50) 0%, transparent 70%);
    transition: var(--transition-slow);
}

[dir="ltr"] .service-card::before {
    right: auto;
    left: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red-100);
}

.service-card:hover::before {
    width: 200px;
    height: 200px;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--red-50), var(--red-100));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: scale(1.1);
}

.service-icon {
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    filter: brightness(10);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
}

.service-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 20px;
    transition: var(--transition);
}

.service-card:hover .service-line {
    width: 80px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.product-card {
    padding: 35px 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red-100);
}

.product-icon-area {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--red-50), var(--off-white));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: var(--transition);
}

.product-card:hover .product-icon-area {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: scale(1.1) rotate(3deg);
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--red-50);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 1px solid var(--red-100);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.stats-section .section-label {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.stats-section .section-title h2 {
    color: var(--white);
}

.stats-section .title-line {
    background: linear-gradient(90deg, rgba(255,255,255,0.5), var(--white));
}

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

.stat-card {
    text-align: center;
    padding: 35px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    display: inline;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    margin-top: 8px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: var(--gray-50);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-100);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--red-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--primary);
    color: var(--white);
}

.whatsapp-icon {
    background: #e8f5e9 !important;
    color: #25d366 !important;
}

.whatsapp-card:hover .whatsapp-icon {
    background: #25d366 !important;
    color: var(--white) !important;
}

.email-icon {
    background: #e3f2fd !important;
    color: #1976d2 !important;
}

.email-card:hover .email-icon {
    background: #1976d2 !important;
    color: var(--white) !important;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Location Card */
.location-icon {
    background: #fff3e0 !important;
    color: #e65100 !important;
}

.location-card:hover .location-icon {
    background: #e65100 !important;
    color: var(--white) !important;
}

/* ==================== LOCATION SECTION ==================== */
.location-section {
    background: var(--white);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.map-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-info {
    background: var(--gray-50);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.map-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.map-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--red-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-info-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.map-info-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.map-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.map-btn svg {
    transform: none !important;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--gray-900);
    line-height: 0;
    margin-top: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

footer .container {
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    color: var(--white);
}

.footer-logo img {
    height: 45px;
    border-radius: var(--radius-sm);
}

.footer-logo h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.footer-links-section h4,
.footer-contact-section h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-section h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

[dir="ltr"] .footer-links-section h4::after,
[dir="ltr"] .footer-contact-section h4::after {
    right: auto;
    left: 0;
}

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

.footer-links-section a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    display: inline-block;
}

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

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
}

.footer-contact-item svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==================== RESPONSIVE - TABLETS (≤768px) ==================== */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    header {
        padding: 10px 4%;
    }

    header.scrolled {
        padding: 8px 4%;
    }

    .logo img {
        height: 42px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 25px 5%;
        gap: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        text-align: center;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    nav a {
        font-size: 1.05rem;
        padding: 10px 0;
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 16px;
    }

    .shape-1 { width: 180px; height: 180px; }
    .shape-2 { width: 120px; height: 120px; }
    .shape-3 { width: 80px; height: 80px; }

    /* Sections */
    section {
        padding: 60px 5%;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content h3 {
        font-size: 1.3rem;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 24px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Contact */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Location/Map */
    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 300px;
    }

    .map-overlay-info {
        padding: 25px 20px;
    }

    /* Buttons */
    .btn {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    [dir="ltr"] .footer-links-section h4::after,
    [dir="ltr"] .footer-contact-section h4::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-links-section a:hover {
        transform: none;
    }
}

/* ==================== RESPONSIVE - LARGE PHONES (≤600px) ==================== */
@media (max-width: 600px) {
    header {
        padding: 8px 4%;
    }

    .logo img {
        height: 38px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

/* ==================== RESPONSIVE - STANDARD PHONES (≤480px) ==================== */
@media (max-width: 480px) {
    html {
        scroll-padding-top: 60px;
    }

    header {
        padding: 8px 3%;
    }

    .logo img {
        height: 35px;
    }

    .logo-text {
        display: none;
    }

    nav ul {
        padding: 20px 4%;
        gap: 6px;
    }

    nav a {
        font-size: 1rem;
    }

    .hero {
        min-height: 80vh;
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.35;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 260px;
    }

    section {
        padding: 50px 4%;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-label {
        font-size: 0.78rem;
    }

    .about-content h3 {
        font-size: 1.15rem;
    }

    .about-content p {
        font-size: 0.92rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card {
        padding: 28px 20px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.88rem;
    }

    .contact-card {
        padding: 16px 18px;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
    }

    .contact-card-value {
        font-size: 0.88rem;
    }

    footer .container {
        padding-top: 35px;
        padding-bottom: 20px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .footer-logo h3 {
        font-size: 1.05rem;
    }

    .footer-bottom p {
        font-size: 0.78rem;
    }
}

/* ==================== RESPONSIVE - SMALL PHONES (≤375px) ==================== */
@media (max-width: 375px) {
    header {
        padding: 6px 3%;
    }

    .logo img {
        height: 32px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.82rem;
    }

    .hero-description {
        font-size: 0.8rem;
    }

    section {
        padding: 40px 3%;
    }

    .section-title h2 {
        font-size: 1.35rem;
    }

    .about-content h3 {
        font-size: 1.05rem;
    }

    .about-content p {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 22px 16px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.82rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .contact-card {
        padding: 14px 14px;
        gap: 10px;
    }

    .contact-card-icon {
        width: 42px;
        height: 42px;
    }

    .contact-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-card-label {
        font-size: 0.72rem;
    }

    .contact-card-value {
        font-size: 0.82rem;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.85rem;
        max-width: 230px;
    }

    .footer-logo img {
        height: 38px;
    }

    .footer-logo h3 {
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }
}
