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

html {
    scroll-behavior: smooth;
}

/* اللودر */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #f0eded;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 99999;
}
.sparks-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

/* اللوجو */
.logo-loder {
    width: 220px;
    opacity: 0;
    transform: scale(0.4) rotate(-30deg);
    filter: blur(10px);
    animation: assemble 3s ease-out forwards,
               pulse 1.8s ease-in-out infinite 1.4s;
}

/* تبعثر → تجميع */
@keyframes assemble {
    0% {
        opacity: 0;
        transform: scale(0.4) rotate(-30deg) translateY(40px);
        filter: blur(10px);
    }
    70% {
        opacity: 1;
        transform: scale(1.1) rotate(0deg) translateY(0);
        filter: blur(0);
    }
    100% {
        transform: scale(1);
        filter: blur(0);
        opacity: 1;        
    }
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.img-logo{
width: 50px;
}

.logo-text {
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 600;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #0f172a;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: #64748b;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link-mobile:hover {
    color: #0f172a;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f172a;
    position: relative;
    transition: background 0.3s;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #0f172a;
    transition: transform 0.3s;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-icon {
    background: transparent;
}

.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(45deg, #811313, #ff8080);
    background-size: 300% 300%; /* allows movement */
    color: white;

}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff8080, #811313);
    background-position: right center; /* optional hover shift */



}


.btn-outline {
    background: transparent;
    color: #1e293b;
    border: 1px solid #cbd5e1;
}

.btn-outline:hover {
    background: #f1f5f9;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.icon-arrow,
.icon-play {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(42 15 15 / 95%) 0%, rgb(42 15 15 / 70%) 50%, rgb(42 15 15 / 20%) 100%)
}




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

.hero-content {
    max-width: 48rem;
}

/* Mobile Video */
.video-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .video-desktop {
        display: none;
    }
    .video-mobile {
        display: block;
    }
}
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(246, 59, 59, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 59, 59, 0.3);
    border-radius: 9999px;
    color: #fdd2d2;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, #A6262E 0%, #c22d37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fedbdb;
    border-radius: 9999px;
    color: #A6262E;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.text-paragraph {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.timeline-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.timeline-line {
    height: 4px;
    width: 5rem;
    background: linear-gradient(to right, #A6262E 0%, #f5a3a3 100%);
    border-radius: 9999px;
}

.timeline-text {
    color: #64748b;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    position: relative;
}

.timeline-marker {
    width: 1rem;
    height: 1rem;
    background: #A6262E;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
    z-index: 10;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 0.47rem;
    top: 1rem;
    bottom: -1.5rem;
    width: 2px;
    background: #cbd5e1;
}

.timeline-item-last::after {
    display: none;
}

.timeline-content {
    padding-bottom: 2rem;
}

.timeline-year {
    color: #A6262E;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #64748b;
}

/* Mission Box */
.mission-box {
    position: relative;
    background: linear-gradient(135deg, #2a0f0f 0%, #312323 100%);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 4rem;
    overflow: hidden;
}

.mission-bg-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgb(246 59 59 / 10%);
    border-radius: 50%;
    filter: blur(80px);
}

.mission-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.mission-title {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 1rem;
}

.mission-text {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    margin-top: 4rem;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-title {
    font-size: 1.875rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.values-subtitle {
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
}

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

.value-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: #fedbdb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon svg {
    color: #A6262E;
}

.value-title {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.value-description {
    color: #64748b;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.product-description {
    color: #64748b;
    margin-bottom: 1rem;
}

.product-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #A6262E;
    border-radius: 50%;
    flex-shrink: 0;
}

.custom-solution-box {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.custom-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.custom-description {
    color: #8b6464;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #2a0f0f;
    position: relative;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.process-circle {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(100px);
}

.process-circle-1 {
    top: 0;
    left: 25%;
    background: #f63b3b;
}

.process-circle-2 {
    bottom: 0;
    right: 25%;
    background: #d40606;
}

.section-header-light {
    color: white;
}

.section-badge-light {
    background: rgba(246, 59, 59, 0.2);
    border: 1px solid rgba(246, 59, 59, 0.3);
    color: #ff5964;
}

.section-title-light {
    color: white;
}

.section-subtitle-light {
    color: #cbd5e1;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.process-step {
    background: rgba(59, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #553333;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.process-step:hover {
    border-color: rgba(246, 59, 59, 0.5);
}

.process-step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.process-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-icon-1 {
    background: linear-gradient(135deg, #f63b3b 0%, #A6262E 100%);
}

.process-icon-2 {
    background: linear-gradient(135deg, #d40606 0%, #b20808 100%);
}

.process-number {
    width: 2rem;
    height: 2rem;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    flex-shrink: 0;
}

.process-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.process-description {
    color: #94a3b8;
}

/* Certifications */
.certifications-box {
    background: linear-gradient(135deg, rgba(235, 37, 37, 0.1) 0%, rgba(212, 6, 6, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 59, 59, 0.2);
    border-radius: 1rem;
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.certifications-header {
    text-align: center;
    margin-bottom: 2rem;
}

.certifications-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.certifications-subtitle {
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0 auto;
}

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

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

.certification-name {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 0.5rem;
}

.certification-label {
    color: #94a3b8;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    position: relative;
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #dbeafe;
    line-height: 1;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.author-name {
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-role {
    color: #64748b;
    font-size: 0.85rem;
}

.author-company {
    color: #64748b;
    font-size: 0.85rem;
}

/* Client Logos */
.client-logos {
    margin-top: 5rem;
    text-align: center;
}

.client-logos-title {
    color: #64748b;
    margin-bottom: 2rem;
}

.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.4;
}

.client-logo {
    font-size: 1.5rem;
    color: #94a3b8;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* News Section */
.news {
    padding: 6rem 0;
    background: #f8fafc;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.news-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: #A6262E;
    color: white;
    border-radius: 9999px;
    font-size: 0.85rem;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.news-date svg {
    width: 16px;
    height: 16px;
}

.news-title {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.news-card:hover .news-title {
    color: #A6262E;
}

.news-excerpt {
    color: #64748b;
    margin-bottom: 1rem;
}

.news-link {
    background: none;
    border: none;
    color: #A6262E;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.news-link:hover {
    opacity: 0.7;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-form-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A6262E;
}

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

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    border: 1px solid #f0e2e2;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: #fedbdb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    color: #A6262E;
}

.contact-info-content h4 {
    color: #2a0f0f;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-content p {
    color: #8b6464;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.map-placeholder {
    height: 24rem;
    background: #f9f1f1;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #b89494;
}

.map-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.map-placeholder p {
    margin: 0.25rem 0;
}

.map-address {
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: #2a0f0f;
    color: #e1cbcb;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
}

.footer-description {
    color: #b89494;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #1e293b;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e1cbcb;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: #A6262E;
}

.footer-heading {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #b89494;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #A6262E;
}

.newsletter-text {
    color: #b89494;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.newsletter-input {
    padding: 0.75rem 1rem;
    background: #3b1e1e;
    border: 1px solid #553333;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #A6262E;
}

.newsletter-input::placeholder {
    color: #8b6464;
}

.newsletter-btn {
    margin-top: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #3b1e1e;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #A6262E;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(150%);
    transition: transform 0.3s;
    z-index: 10000;
    max-width: 300px;
}

.toast.show {
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

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

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

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

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

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

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

    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .certifications-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

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

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

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

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.video-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.video-content iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
.lang-dropdown {
  position: relative;
  display: inline-block;
}

#langBtn {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: 30px;
  right: 0;
  background: white;
  border-radius: 6px;
  padding: 5px 0;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  display: none;
  z-index: 999999;
}

.lang-menu .lang-option {
  padding: 6px 15px;
  cursor: pointer;
}

.lang-menu .lang-option:hover {
  background: #f3f3f3;
}
.logo-underline {
    display: flex;
    position: relative;
    top: 20px;
}

/* لو الصفحة عربية */
[dir="rtl"] .logo-underline {
    left: 110px;
}

/* لو الصفحة إنجليزي */
[dir="ltr"] .logo-underline {
    left: -50px;
}