/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #008f9d;
    --secondary-color: #142850;
    --accent-color: #27496d;
    --navy-color: #142850;
    --teal-color: #008f9d;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, #008f9d 0%, #27496d 100%);
    --gradient-secondary: linear-gradient(135deg, #142850 0%, #27496d 100%);
    --gradient-teal: linear-gradient(135deg, #008f9d 0%, #27496d 100%);
    --gradient-navy: linear-gradient(135deg, #142850 0%, #27496d 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body[dir="rtl"] {
    font-family: 'Cairo', sans-serif;
}

body[dir="ltr"] {
    font-family: 'Inter', sans-serif;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #008f9d 0%, #142850 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Syrian Flag Styles */
.syrian-flag {
    width: 30px;
    height: 20px;
    margin-left: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.flag-stripe {
    width: 100%;
    height: 33.33%;
    position: relative;
}

.flag-stripe.green {
    background-color: #007A3D;
}

.flag-stripe.white {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flag-stripe.black {
    background-color: #000000;
}

.flag-stars {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 2px;
}

.star {
    position: relative;
    display: inline-block;
    color: #CE1126;
    width: 5px;
    height: 5px;
}

.star:before {
    content: "★";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 5px;
    color: #CE1126;
    line-height: 1;
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin: 0;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.call-btn i {
    font-size: 0.9rem;
}

.lang-toggle {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    background-image: 
        linear-gradient(rgba(0, 143, 157, 0.8), rgba(20, 40, 80, 0.8)),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 40px;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Arabic text alignment - default */
.hero-title {
    text-align: right;
    direction: rtl;
}

/* English text alignment when language is switched */
[data-lang="en"] .hero-title {
    text-align: left;
    direction: ltr;
}

/* Also apply to subtitle for consistency */
.hero-subtitle {
    text-align: right;
    direction: rtl;
}

[data-lang="en"] .hero-subtitle {
    text-align: left;
    direction: ltr;
}

.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-illustration {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.tech-illustration i:nth-child(odd) {
    font-size: 2rem;
    color: var(--teal-color);
    background: white;
    padding: 0.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.tech-illustration i:nth-child(even) {
    font-size: 2rem;
    color: var(--navy-color);
    background: white;
    padding: 0.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.tech-illustration i:hover {
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-card:nth-child(odd) .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(even) .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--teal-color);
    font-size: 1.25rem;
}

.feature span {
    color: var(--text-dark);
    font-weight: 500;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-card:nth-child(1) .value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-card:nth-child(2) .value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-card:nth-child(3) .value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

/* Mission Section */
.mission {
    padding: 100px 0;
    background: var(--bg-white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-illustration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.mission-illustration i:nth-child(odd) {
    font-size: 3rem;
    color: var(--teal-color);
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.mission-illustration i:nth-child(even) {
    font-size: 3rem;
    color: var(--navy-color);
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.mission-illustration i:hover {
    transform: scale(1.1);
}

/* Communications Section */
.communications {
    padding: 100px 0;
    background: var(--bg-light);
}

.communications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comm-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    text-align: center;
}

.comm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.comm-card:nth-child(odd) {
    border-left: 4px solid var(--teal-color);
}

.comm-card:nth-child(even) {
    border-left: 4px solid var(--navy-color);
}

.comm-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.comm-logo-img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.comm-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.comm-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--bg-white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

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

.partner-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

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

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-section .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-color);
}

.contact-section .contact-item i {
    font-size: 1.5rem;
    color: var(--teal-color);
    background: linear-gradient(135deg, var(--teal-color), var(--navy-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section .contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--navy-color);
    font-weight: 600;
}

.contact-section .contact-item p {
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-section .contact-item {
        min-width: 100%;
        max-width: 350px;
    }
}

/* Contact Form Container */
.contact-form-container {
    flex: 1;
    max-width: 600px;
    margin-left: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--navy-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-color);
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Responsive Contact Form */
@media (max-width: 968px) {
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form-container {
        margin-left: 0;
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--teal-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--navy-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.registry-info {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        gap: 0.75rem;
    }
    
    .registry-info {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}


/* Tablet and Desktop Styles - Min-width approach */
@media (min-width: 768px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        justify-content: flex-end;
        padding-top: 0;
        transition: none;
        box-shadow: none;
        gap: 2rem;
    }

    .hamburger {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 100vh;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .tech-illustration {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .mission-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .communications-grid {
        grid-template-columns: 1fr;
    }

    .comm-card {
        grid-template-columns: 200px 1fr;
        text-align: left;
        gap: 2rem;
    }

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

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 3rem;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .tech-illustration {
        grid-template-columns: repeat(8, 1fr);
    }

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

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .about-text h2,
    .mission-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .call-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        gap: 0.25rem;
    }

    .call-text {
        display: none;
    }

    .call-btn {
        border-radius: 50%;
        width: 35px;
        height: 35px;
        justify-content: center;
        padding: 0;
    }

    .tech-illustration i {
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .comm-card {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .comm-logo-img {
        max-width: 120px;
        max-height: 60px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-card {
        padding: 1rem;
        min-height: 80px;
    }

    .partner-logo {
        max-width: 100px;
        max-height: 40px;
    }

    .stat {
        padding: 1.5rem;
    }

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

/* RTL Specific Styles */
[dir="rtl"] .nav-menu {
    right: -100%;
    left: auto;
}

[dir="rtl"] .nav-menu.active {
    right: 0;
}

[dir="rtl"] .nav-link::after {
    right: 0;
    left: auto;
}

[dir="rtl"] .feature {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-section .contact-item {
    flex-direction: row-reverse;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-size: 0.9rem;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* RTL Support for WhatsApp Button */
[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 20px;
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-btn {
        padding: 10px 16px;
        gap: 0.5rem;
    }
    
    .whatsapp-text {
        font-size: 0.8rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 15px;
    }
    
    .whatsapp-btn {
        padding: 8px 12px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #20B2AA 0%, #1e3a8a 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.cookie-actions .btn-primary {
    background: white;
    color: #1e3a8a;
}

.cookie-actions .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.cookie-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cookie-actions .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #20B2AA 0%, #1e3a8a 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-category h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
}

.cookie-category p {
    margin: 0;
    color: #64748b;
    line-height: 1.5;
}

/* Cookie Switch Styles */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #20B2AA;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #94a3b8;
    cursor: not-allowed;
}

/* Cookie Download Section */
.cookie-download-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
    border-radius: 8px;
    border: 1px solid #20B2AA;
}

.cookie-download-section h3 {
    margin: 0 0 1rem 0;
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-download-section p {
    margin: 0 0 1rem 0;
    color: #64748b;
    line-height: 1.5;
}

.download-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.download-options .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.download-options .btn-primary {
    background: #20B2AA;
    color: white;
}

.download-options .btn-primary:hover {
    background: #1a9b94;
    transform: translateY(-1px);
}

.download-options .btn-secondary {
    background: #1e3a8a;
    color: white;
}

.download-options .btn-secondary:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

.download-options .btn-outline {
    background: transparent;
    color: #1e3a8a;
    border: 1px solid #1e3a8a;
}

.download-options .btn-outline:hover {
    background: #1e3a8a;
    color: white;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: #f8fafc;
    border-radius: 0 0 12px 12px;
}

.cookie-modal-footer .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.cookie-modal-footer .btn-primary {
    background: #20B2AA;
    color: white;
}

.cookie-modal-footer .btn-primary:hover {
    background: #1a9b94;
    transform: translateY(-1px);
}

.cookie-modal-footer .btn-outline {
    background: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
}

.cookie-modal-footer .btn-outline:hover {
    background: #f1f5f9;
    color: #475569;
}

/* Responsive Design for Cookie Components */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-actions .btn {
        flex: 1;
        min-width: auto;
    }
    
    .cookie-modal-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .cookie-modal-header {
        padding: 1rem;
    }
    
    .cookie-modal-body {
        padding: 1rem;
    }
    
    .cookie-modal-footer {
        padding: 1rem;
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
    
    .download-options {
        flex-direction: column;
    }
    
    .download-options .btn {
        width: 100%;
    }
}

/* RTL Support for Cookie Components */
[dir="rtl"] .cookie-content {
    text-align: right;
}

[dir="rtl"] .cookie-category-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .cookie-modal-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .cookie-modal-footer {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    [dir="rtl"] .cookie-modal-footer {
        flex-direction: column;
    }
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--navy-color) 0%, var(--teal-color) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    font-family: inherit;
}

.footer * {
    font-family: inherit;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* Company Info Section */
.footer-section.company-info {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    font-family: inherit;
    letter-spacing: -0.5px;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-info .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
    background: transparent !important;
}

.footer-contact-info .footer-contact-item span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
    font-family: inherit;
    background: transparent !important;
    text-shadow: none !important;
}

.footer-contact-info .footer-contact-item a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
    font-family: inherit;
    background: transparent !important;
    text-shadow: none !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info .footer-contact-item a:hover {
    color: var(--teal-color) !important;
    text-decoration: underline;
}

.footer-contact-info .footer-contact-item i {
    width: 18px;
    color: var(--teal-color) !important;
    font-size: 1rem;
    text-align: center;
    flex-shrink: 0;
    background: transparent !important;
}

/* Footer Sections */
.footer-section {
    color: white;
}

.footer-section h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    border-bottom: 2px solid var(--teal-color);
    padding-bottom: 0.75rem;
    display: inline-block;
    font-family: inherit;
    letter-spacing: -0.3px;
}

.footer-section h5 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    font-family: inherit;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    line-height: 1.4;
}

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

.footer-links a:before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[dir="rtl"] .footer-links a:before {
    content: '←';
    left: auto;
    right: -15px;
}

.footer-links a:hover:before {
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: fit-content;
    width: 100%;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #f09433;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-link i {
    width: 22px;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.social-link span {
    font-weight: 500;
}

/* Newsletter Signup */
.newsletter-signup {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup h5 {
    margin: 0 0 1.2rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    font-family: inherit;
}

.newsletter-form {
    margin: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.newsletter-input-group input {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: inherit;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--teal-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(32, 178, 170, 0.2);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.newsletter-input-group button {
    padding: 0.9rem 1.5rem;
    background: var(--teal-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: inherit;
}

.newsletter-input-group button:hover {
    background: #1a9b94;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    margin-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-bottom-left {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.footer-bottom-left p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-family: inherit;
    line-height: 1.5;
}

.registry-info {
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 400 !important;
    font-family: inherit !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.registry-icon {
    color: var(--teal-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.company-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.company-link:hover {
    color: var(--teal-color);
    text-decoration: underline;
}

.address-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: var(--teal-color);
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.footer-bottom-links a:hover {
    color: var(--teal-color);
}

.footer-certifications {
    display: flex;
    gap: 0.5rem;
}

.certification-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Policy Modals */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.policy-modal.show {
    display: flex;
}

.policy-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

.policy-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #20B2AA 0%, #1e3a8a 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.policy-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.policy-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.policy-modal-body {
    padding: 2rem;
}

.policy-content h3 {
    color: #1e3a8a;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.policy-content h4 {
    color: #20B2AA;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1rem;
}

.policy-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #4b5563;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section.company-info {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact-info .footer-contact-item {
        justify-content: center;
    }
    
    .footer-links a:before {
        display: none;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .newsletter-input-group {
        flex-direction: row;
    }
    
    .newsletter-input-group input {
        flex: 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .policy-modal-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .policy-modal-header {
        padding: 1rem;
    }
    
    .policy-modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* RTL Support for Footer */
[dir="rtl"] .footer-links a:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .footer-bottom-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-bottom-right {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    [dir="rtl"] .footer-bottom-content {
        flex-direction: column;
    }
    
    [dir="rtl"] .footer-bottom-right {
        flex-direction: column;
    }
}
