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

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--tekled-red);
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

:root {
    --tekled-red: #DD1C34;
    --tekled-dark: #1a1a1a;
    --tekled-black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: #fff;
}

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

section[id] {
    scroll-margin-top: 70px;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    height: 220px;
    width: 220px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
        width: 60px;
    }
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

@media (max-width: 768px) {
    .nav-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--tekled-red);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    background-color: var(--gray-100);
    color: var(--tekled-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: #fff;
    background-color: var(--tekled-red);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 28, 52, 0.3);
}

.nav-link.active::before {
    width: 0;
}

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

.lang-switcher {
    display: flex;
    align-items: center;
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    background: transparent;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn:hover {
    color: var(--gray-900);
}

.lang-btn.active {
    background-color: var(--tekled-red);
    color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background-color: var(--gray-100);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    font-size: 1.5rem;
    color: var(--gray-700);
}

/* Mobile Menu */
.mobile-menu {
    display: block;
    background-color: #fff;
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background-image: url('https://images.pexels.com/photos/442579/pexels-photo-442579.jpeg?auto=compress&cs=tinysrgb&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        margin-top: 80px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), transparent);
}

.hero-content {
    position: relative;
    max-width: 1280px;
    width: 100%;
    padding: 0 1rem;
    text-align: center;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        padding: 0 1.5rem;
    }
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

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

@media (min-width: 768px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 44px;
    }
}

.btn-primary {
    background-color: var(--tekled-red);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #b8152a;
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: #fff;
    color: var(--gray-900);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: var(--gray-100);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats {
    padding: 2rem 0;
    background-color: var(--gray-50);
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--tekled-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
}

/* Section Titles */
.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    margin-top: 0;
    text-align: center;
    scroll-margin-top: 70px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Why Choose Us */
.why-choose {
    padding: 2rem 0;
    background-color: #fff;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-choose {
        padding: 2rem 0;
    }
}

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

@media (max-width: 768px) {
    .features-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--gray-50);
    padding: 1.25rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1rem;
    }
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--gray-600);
}

/* Products Section */
.products {
    padding: 2rem 0;
    background-color: #fff;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .products {
        padding: 2rem 0;
    }
}

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

@media (max-width: 768px) {
    .products-grid {
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.product-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-card {
    background-color: var(--gray-50);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .product-image {
        padding: 0.25rem;
    }
}

.product-card:hover {
    border-color: var(--tekled-red);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background-color: var(--gray-100);
}

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

.product-title-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
}

.product-pdf-link {
    position: absolute;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background-color: var(--gray-100);
    color: var(--tekled-red) !important;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    z-index: 1;
    min-height: 32px;
    min-width: 60px;
}

@media (max-width: 768px) {
    .product-pdf-link {
        padding: 0.5rem 0.75rem;
        min-height: 44px;
        font-size: 0.8125rem;
    }
}

.product-pdf-link:link,
.product-pdf-link:visited,
.product-pdf-link:active,
.product-pdf-link:focus {
    color: var(--tekled-red) !important;
    background-color: var(--gray-100);
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    outline: none;
}

.product-pdf-link:hover {
    background-color: var(--tekled-red);
    color: #fff !important;
    border-color: var(--tekled-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(221, 28, 52, 0.2);
    text-decoration: none !important;
    text-decoration-line: none !important;
}

.pdf-icon {
    font-size: 1rem;
    line-height: 1;
}

.pdf-text {
    font-weight: 600;
}

.product-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: color 0.3s;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .product-title {
        font-size: 0.9375rem;
    }
}

.product-item:hover .product-title {
    color: var(--tekled-red);
}

/* Projects Section */
.projects {
    padding: 2rem 0;
    background-color: var(--gray-50);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .projects {
        padding: 2rem 0;
    }
}

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

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.project-card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.project-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 10rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .project-image {
        height: 8rem;
    }
}

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

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

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--tekled-red);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-content {
    padding: 1rem;
}

.project-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.project-desc {
    color: var(--gray-600);
}

/* Services Section */
.services {
    padding: 2rem 0;
    background-color: #fff;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .services {
        padding: 2rem 0;
    }
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.service-card {
    background-color: var(--gray-50);
    padding: 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1rem;
    }
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .service-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--gray-600);
}

/* Catalog Section */
.catalog {
    padding: 5rem 0;
    background-color: var(--gray-50);
    margin-bottom: 2rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.catalog-card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.catalog-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.catalog-image {
    height: 12rem;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.catalog-content {
    padding: 1.5rem;
}

.catalog-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.catalog-pages {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.catalog-btn {
    width: 100%;
    background-color: var(--tekled-red);
    color: #fff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.catalog-btn:hover {
    background-color: #b8152a;
    box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.15);
}

.catalog-cta {
    background-color: var(--tekled-red);
    color: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.catalog-cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.catalog-cta-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.catalog-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: var(--tekled-red);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.catalog-cta-btn:hover {
    background-color: var(--gray-100);
    box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 2rem 0;
    background-color: #fff;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about {
        padding: 2rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .about-image img {
        border-radius: 0.5rem;
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    }
}

.about-text {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    background-color: var(--gray-50);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Contact Section */
.contact {
    padding: 2rem 0;
    background-color: var(--gray-50);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact {
        padding: 2rem 0;
    }
}

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

.contact-info {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 3rem;
}

.contact-form {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

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

@media (max-width: 768px) {
    .contact-info-horizontal {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    min-width: 200px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-label {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--gray-600);
}


.company-name {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.license-no {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
}

.form-input:focus {
    outline: none;
    border-color: var(--tekled-red);
    box-shadow: 0 0 0 2px rgba(221, 28, 52, 0.1);
}

.form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-input:valid:not(:focus):not(:placeholder-shown) {
    border-color: #10b981;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--tekled-red);
    outline-offset: 2px;
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 2px dashed var(--gray-300);
    border-radius: 0.5rem;
    background-color: var(--gray-50);
    cursor: pointer;
    transition: all 0.3s;
    gap: 1rem;
}

.file-upload-label:hover {
    border-color: var(--tekled-red);
    background-color: #fff;
}

.file-upload-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.file-upload-text {
    flex: 1;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.file-upload-btn {
    padding: 0.5rem 1rem;
    background-color: var(--tekled-red);
    color: #fff;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.file-upload-label:hover .file-upload-btn {
    background-color: #b8152a;
}

.file-upload-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: var(--gray-50);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
}

#fileList {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 0.375rem;
    border: 1px solid var(--gray-200);
    gap: 0.5rem;
}

.file-name {
    font-size: 0.875rem;
    color: var(--gray-700);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-remove {
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    flex-shrink: 0;
}

.file-remove:hover {
    background-color: var(--gray-200);
    color: var(--tekled-red);
}

.file-total {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tekled-red);
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.25rem;
}

.file-remove-all {
    background-color: var(--tekled-red);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.file-remove-all:hover {
    background-color: #b8152a;
}

.form-file-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-submit {
    width: 100%;
    background-color: var(--tekled-red);
    color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .form-submit {
        padding: 1rem 1.5rem;
        min-height: 48px;
        font-size: 1rem;
    }
}

.form-submit:hover {
    background-color: #b8152a;
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

/* Thank You Message */
.thank-you-message {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    border: 2px solid var(--tekled-red);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.thank-you-message.show {
    opacity: 1;
    transform: translateY(0);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--tekled-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    animation: checkmark 0.6s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(221, 28, 52, 0.3);
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tekled-red);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.thank-you-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: #fff;
    color: var(--gray-900);
    padding: 3rem 0 1.5rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        align-items: start;
    }
}

.footer-logo-col,
.footer-contact-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo {
    height: 200px;
    width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 1.125rem;
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-weight: 500;
}

.footer-license {
    font-size: 1rem;
    color: var(--gray-700);
    margin-top: 0;
}

.footer-title {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    margin-top: 0;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--tekled-red);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.footer-icon {
    color: var(--tekled-red);
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    background-color: var(--gray-100);
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--tekled-red);
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    padding: 0.5rem 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #25D366;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    width: 56px;
    height: 56px;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

/* RTL Support for Arabic */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-buttons {
    justify-content: flex-end;
}

html[dir="rtl"] .whatsapp-btn {
    right: auto;
    left: 1.5rem;
}

/* Keep grid order same in RTL - only text direction changes */
html[dir="rtl"] .products-grid,
html[dir="rtl"] .projects-grid,
html[dir="rtl"] .services-grid,
html[dir="rtl"] .features-grid,
html[dir="rtl"] .stats-grid {
    direction: ltr;
}

