:root {
    --primary-blue: #1a365d;
    --secondary-blue: #2a4365;
    --light-gray: #f5f7fa;
    --accent-orange: #ed8936;
    --dark-gray: #4a5568;
    --white: #ffffff;
    --gradient-blue: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
    --gradient-orange: linear-gradient(135deg, #ed8936 0%, #f6ad55 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px; /* لتجنب التداخل مع navbar الثابت */
}

h1, h2, h3, h4, h5 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation styles relocated to layout.css (unified header). Legacy rules removed to avoid conflicts. */

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* الهيدر */
.hero-section {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1590650516494-0df96562bd4d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: var(--white);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.3);
    animation: fadeIn 1.5s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(237, 137, 54, 0.4);
}

/* قسم المقدمة */
.intro-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.intro-section:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-orange);
    opacity: 0.1;
}

.intro-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-blue);
    opacity: 0.1;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* قسم الخدمات */
.services-section {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=10') no-repeat center center/cover fixed;
    position: relative;
}

.services-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.services-container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    margin: 20px auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.service-icon {
    margin-left: 10px;
    font-size: 1.8rem;
    color: var(--accent-orange);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    align-self: flex-start;
}

.service-link i {
    margin-right: 5px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-blue);
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* قسم الصناعات */
.industries-section {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.industries-section .section-title {
    color: var(--white);
}

.industries-section .section-title:after {
    background: var(--accent-orange);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.industry-card {
    position: relative;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.9));
    padding: 25px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(transparent, var(--primary-blue));
}

.industry-overlay h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.industry-overlay p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.industry-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.industry-link i {
    margin-right: 5px;
    transition: var(--transition);
}

.industry-link:hover i {
    transform: translateX(-5px);
}

/* قسم المزايا التنافسية */
.competitive-advantages {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    position: relative;
}

.competitive-advantages:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.advantages-container {
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    background: var(--gradient-orange);
    transform: scale(1.1);
}

.advantage-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.advantage-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* قسم الإحصائيات */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-blue);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-orange);
    font-family: 'Tajawal', sans-serif;
}

.stat-text {
    font-size: 1.2rem;
}

/* الفوتر */
footer {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--accent-orange);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-left: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.footer-links a:hover i {
    transform: translateX(-5px);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-left: 10px;
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* صفحة من نحن - Additional Styles */
.about-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
}

.company-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.company-image {
    display: flex;
    align-items: center;
}

.company-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.mission-vision-section {
    gap: 30px;
}

.mission-card {
    height: 300px;
}

.mission-content {
    padding: 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
}

.timeline-year {
    background: var(--accent-orange);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    margin-left: 30px;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    flex: 1;
}

.team-section {
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-role {
    color: var(--accent-orange);
    font-weight: bold;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .industries-grid,
    .advantages-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .col-lg-8, .col-lg-4, .col-md-4, .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-year {
        margin-left: 0 !important;
        margin-bottom: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* تحسينات الأداء */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* نماذج التنبيهات */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.loading-spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 2px solid #f1f5f9;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 10px;
    color: #4a5568;
    font-weight: 500;
}

.contact-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-blue);
}

.contact-form-section {
    gap: 40px;
}

.contact-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.contact-form-title {
    text-align: right;
    margin-bottom: 40px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2rem;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half-width {
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    color: #2d3748;
    background-color: #ffffff;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--accent-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.1);
    color: #1a202c;
}

.form-control::placeholder {
    color: #a0aec0;
    opacity: 1;
    font-weight: 400;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-weight: 600;
    align-items: center;
    gap: 10px;
}

.alert.show {
    display: flex;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-error i {
    color: #dc3545;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

.loading-spinner.show {
    display: block;
}

/* Form Enhancements */
.form-group textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: 'Cairo', sans-serif;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.6;
}

.form-group textarea.form-control:focus {
    color: #1a202c;
}

.form-group select.form-control {
    cursor: pointer;
    color: #2d3748;
    font-weight: 500;
}

.form-group select.form-control:focus {
    color: #1a202c;
}

.form-group select.form-control option {
    color: #2d3748;
    background-color: #ffffff;
    padding: 10px;
    font-weight: 500;
}

/* Input Type Specific Styles */
input[type="text"].form-control,
input[type="email"].form-control,
input[type="tel"].form-control {
    color: #2d3748 !important;
    font-weight: 500;
    -webkit-text-fill-color: #2d3748;
}

input[type="text"].form-control:focus,
input[type="email"].form-control:focus,
input[type="tel"].form-control:focus {
    color: #1a202c !important;
    -webkit-text-fill-color: #1a202c;
}

/* Webkit Autofill Override */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #2d3748 !important;
    color: #2d3748 !important;
}

/* Text Selection Styles */
.form-control::selection {
    background-color: rgba(237, 137, 54, 0.3);
    color: #1a202c;
}

.form-control::-moz-selection {
    background-color: rgba(237, 137, 54, 0.3);
    color: #1a202c;
}

/* Ensure high contrast */
.form-control {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Checkbox Improvements */
.checkbox-container {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-container:hover {
    color: var(--primary-blue);
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #eee;
    border-radius: 4px;
    margin-left: 10px;
    position: relative;
    transition: var(--transition);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-orange);
}

.checkbox-container input:checked ~ .checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-submit {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 137, 54, 0.4);
}

.submit-icon {
    transition: var(--transition);
}

.form-submit:hover .submit-icon {
    transform: translateX(-5px);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-card h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-card h3 i {
    margin-left: 10px;
    color: var(--accent-orange);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn.primary {
    background: var(--gradient-blue);
    color: var(--white);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.response-method {
    color: var(--dark-gray);
}

.response-time {
    color: var(--accent-orange);
    font-weight: 600;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.download-link:hover {
    background: var(--light-gray);
    color: var(--accent-orange);
}

.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    background: var(--light-gray);
    padding: 80px 40px;
    text-align: center;
    color: var(--dark-gray);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    margin-bottom: 15px;
}

.map-placeholder p {
    margin-bottom: 10px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--primary-blue);
}

.contact-faq {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--white);
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--primary-blue);
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

/* Services Page Specific Styles */
.service-detail {
    margin-bottom: 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.service-detail.reverse .row {
    flex-direction: row-reverse;
}

.service-info h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-info h3 i {
    margin-left: 15px;
    color: var(--accent-orange);
}

.service-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature i {
    color: var(--accent-orange);
    margin-left: 10px;
    font-size: 1.2rem;
}

.specializations {
    margin-top: 30px;
}

.specializations h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.process-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    background: var(--gradient-orange);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-left: 20px;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.service-image-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.service-image-container img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.import-export-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.service-category h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-category h4 i {
    margin-left: 10px;
    color: var(--accent-orange);
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-right: 20px;
}

.service-category li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.process-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.process-icon {
    background: var(--gradient-orange);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.process-content h4 {
    color: white;
    margin-bottom: 10px;
}

.process-content p {
    color: rgba(255,255,255,0.9);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 13px 33px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    display: flex;
    justify-content: center;
}

.member-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    max-width: 280px;
    width: 100%;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--light-gray);
    transition: var(--transition);
}

.member-card:hover .member-photo {
    border-color: var(--accent-orange);
}

.member-name {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Tajawal', sans-serif;
}

.member-position {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.member-description {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
}

.company-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.company-image-container {
    display: flex;
    align-items: center;
}

.company-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

/* Mission, Vision & Values Section */
.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 300px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-content {
    padding: 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
}

.timeline-year {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    margin-left: 30px;
    min-width: 100px;
    text-align: center;
    font-size: 1.1rem;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    flex: 1;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Competitive Advantages Intro */
.competitive-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-orange);
}

/* CTA Styles */
.cta-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

/* Contact Page Enhancements */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a365d 0%, #2a4365 50%, #1a365d 100%);
    z-index: 0;
}

.contact-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(42, 67, 101, 0.9) 50%, rgba(26, 54, 93, 0.95) 100%);
    z-index: 2;
}

.contact-hero .container {
    position: relative;
    z-index: 3;
}

.contact-hero .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero .hero-subtitle {
    font-size: 24px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Horizontal Cards Layout */
.contact-cards-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 0;
}

.contact-card-horizontal {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transition: var(--transition);
}

.contact-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-card-horizontal:hover::before {
    width: 100%;
    opacity: 0.05;
}

.contact-card-horizontal.vip-card::before {
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
}

.contact-card-horizontal.support-card::before {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.contact-card-horizontal.response-card::before {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.contact-card-horizontal.download-card::before {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

.contact-card-horizontal.testimonial-card::before {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
}

.vip-card .card-icon {
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    animation: vipGlow 2s ease-in-out infinite alternate;
}

.support-card .card-icon {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.response-card .card-icon {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.download-card .card-icon {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

.testimonial-card .card-icon {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

@keyframes vipGlow {
    0% { box-shadow: 0 0 20px rgba(237, 137, 54, 0.3); }
    100% { box-shadow: 0 0 30px rgba(237, 137, 54, 0.6); }
}

.card-content {
    flex: 1;
    text-align: right;
}

.card-content h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
}

.card-content p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 14px;
    opacity: 1;
}

.card-action {
    flex-shrink: 0;
}

.action-btn-small {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border: 1px solid;
    white-space: nowrap;
}

.action-btn-small.vip {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.action-btn-small.whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.action-btn-small.info {
    background: #2196F3;
    color: var(--white);
    border-color: #2196F3;
}

.action-btn-small.download {
    background: #9C27B0;
    color: var(--white);
    border-color: #9C27B0;
}

.action-btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rating-mini {
    display: flex;
    gap: 2px;
}

.rating-mini i {
    color: #FFD700;
    font-size: 12px;
}

/* Enhanced Form Container */
.contact-form-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    padding: 40px;
    margin-top: 20px;
}

.contact-form-section .col-lg-12 {
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.cta-primary:hover {
    background: #dd7824;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 0.7;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent-orange));
    margin: 0 auto;
    position: relative;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Enhanced Contact Methods */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.centered {
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-top: 10px;
    opacity: 0.9;
    font-weight: 500;
}

.contact-item.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.3);
    border: 2px solid var(--primary-blue);
}

.contact-item.featured .contact-info h3 {
    color: var(--white);
}

.contact-item.featured .contact-info p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    margin: 20px 0;
}

.contact-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-line.full-width {
    flex-direction: column;
    gap: 5px;
}

.contact-line .label {
    font-weight: 600;
    opacity: 0.9;
    min-width: 100px;
    color: #2d3748;
}

.contact-line .value {
    font-weight: 500;
    text-align: left;
    color: #1a202c;
}

/* للبطاقة المميزة */
.contact-item.featured .contact-line .label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item.featured .contact-line .value {
    color: var(--white);
}

.contact-actions {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.action-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid;
}

.action-btn.primary {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.action-btn.secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.action-btn.whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.action-btn.email {
    background: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
}

.action-btn.map {
    background: #4285F4;
    color: var(--white);
    border-color: #4285F4;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 15px;
    font-weight: 500;
    color: #4a5568;
}

.contact-item.featured .availability {
    color: rgba(255, 255, 255, 0.95);
}

.availability i.online {
    color: #4CAF50;
    animation: pulse 2s infinite;
}

/* Business Hours Styles */
.business-hours {
    margin-top: 20px;
    padding: 15px;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.business-hours h4 {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 13px;
}

.hours-item .day {
    font-weight: 600;
    color: #2d3748;
}

.hours-item .time {
    font-weight: 500;
    color: #4a5568;
}

.contact-item.featured .business-hours {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-item.featured .business-hours h4 {
    color: var(--white);
}

.contact-item.featured .hours-item .day {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item.featured .hours-item .time {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Multi-step Form */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: var(--accent-orange);
    color: var(--white);
}

.step-label {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 600;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: var(--light-gray);
    margin: 0 20px;
    margin-top: -20px;
    position: relative;
    top: 20px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.step-header h3 {
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.step-header p {
    color: var(--dark-gray);
    margin: 0;
}

.field-hint {
    font-size: 12px;
    color: var(--dark-gray);
    margin-top: 5px;
    opacity: 0.7;
}

.character-count {
    font-size: 12px;
    color: var(--dark-gray);
    text-align: left;
    margin-top: 5px;
}

.file-upload-area {
    border: 2px dashed var(--primary-blue);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--accent-orange);
    background: rgba(237, 137, 54, 0.1);
}

.file-upload-area i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.btn-prev, .btn-next {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-prev {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.btn-next {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-prev:hover, .btn-next:hover {
    transform: translateY(-2px);
}

/* Form Summary Styles */
.form-summary {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.summary-section {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.summary-section:last-child {
    border-bottom: none;
}

.summary-section h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-grid {
    display: grid;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .label {
    font-weight: 600;
    color: var(--dark-gray);
}

.summary-item .value {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Enhanced Error States */
.form-control.error {
    border-color: #F44336;
    background-color: rgba(244, 67, 54, 0.1);
}

.form-control.error:focus {
    border-color: #F44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

/* Loading States */
.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Enhanced Alert Messages */
.alert {
    display: none;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-right: 4px solid;
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
    color: #2E7D32;
}

.alert-error {
    background-color: rgba(244, 67, 54, 0.1);
    border-color: #F44336;
    color: #C62828;
}

.alert-content {
    text-align: right;
}

.alert-content h4 {
    color: inherit;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cards-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card-horizontal {
        padding: 15px;
        gap: 12px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .card-content h3 {
        font-size: 14px;
    }
    
    .card-content p {
        font-size: 12px;
    }
    
    .action-btn-small {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-progress {
        overflow-x: auto;
        padding: 20px 10px;
    }
    
    .progress-line {
        width: 50px;
        margin: 0 10px;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-prev, .btn-next {
        width: 100%;
        justify-content: center;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 80vh;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-cards-horizontal {
        margin: 20px 0;
    }
    
    .contact-card-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .card-content {
        text-align: center;
    }
}

/* Service Form Section */
.service-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    color: white;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
    color: #10b981;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: white;
    color: var(--primary-blue);
    border-color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.progress-line {
    width: 100px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin: 0 20px;
}

.service-form {
    padding: 40px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    color: #dc2626;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.request-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.request-summary h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.summary-content {
    display: grid;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.summary-value {
    color: var(--dark-gray);
}

.form-agreements {
    margin-bottom: 30px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-gray);
}

.checkbox-group a {
    color: var(--primary-blue);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.expected-response {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.response-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.response-info i {
    font-size: 24px;
    color: var(--primary-blue);
}

.response-info h5 {
    color: var(--primary-blue);
    margin: 0 0 5px 0;
    font-size: 16px;
}

.response-info p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 14px;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-prev {
    background: #f1f5f9;
    color: var(--dark-gray);
}

.btn-prev:hover {
    background: #e2e8f0;
}

.btn-next,
.btn-submit {
    background: var(--primary-blue);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.btn-submit {
    background: #10b981;
}

.btn-submit:hover {
    background: #059669;
}

/* Hidden elements */
.btn-prev.hidden,
.btn-next.hidden,
.btn-submit.hidden {
    display: none !important;
}

/* Service Form Responsive Design */
@media (max-width: 768px) {
    .service-form-section {
        padding: 60px 0;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-progress {
        padding: 30px 15px;
    }
    
    .progress-line {
        width: 60px;
        margin: 0 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .service-form {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-progress {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .progress-line {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .service-form-container {
        margin: 0 10px;
        border-radius: 15px;
    }
}

/* Urgent Consultation Section */
.urgent-consultation-section {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.consultation-container {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 40px;
    color: white;
}

.consultation-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.consultation-content {
    flex: 1;
}

.consultation-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.consultation-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.consultation-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.consultation-action {
    flex-shrink: 0;
}

.urgent-call-btn {
    background: white;
    color: #dc2626;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    min-width: 200px;
}

.urgent-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: #f8fafc;
}

.call-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-weight: bold;
    font-size: 14px;
    color: #dc2626;
}

.call-number {
    font-size: 12px;
    color: #6b7280;
    direction: ltr;
    text-align: right;
}

/* Expert Help Section */
.expert-help-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    margin: 40px 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.help-container {
    padding: 40px;
}

.help-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
}

.help-icon {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.help-title h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.help-title p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.help-option {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.help-option.primary {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.1);
}

.help-option.secondary {
    border-color: #10b981;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.1);
}

.help-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.help-option.primary .option-icon {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
}

.help-option.secondary .option-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.option-text h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.option-text p {
    color: var(--dark-gray);
    font-size: 14px;
}

.option-btn {
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background: var(--primary-blue);
    color: white;
}

.primary-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.secondary-btn {
    background: #10b981;
    color: white;
}

.secondary-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.help-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--dark-gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .consultation-container {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .urgent-call-btn {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .help-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .help-container {
        padding: 30px 20px;
    }
    
    .help-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .help-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .consultation-features {
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .consultation-icon {
        font-size: 2.5rem;
    }
    
    .help-option {
        padding: 20px 15px;
    }
    
    .option-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Steel Page Styles */
.steel-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-steel {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-steel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-steel-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.steel-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 1.5rem;
    color: #2980b9;
    margin-top: 0.2rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-steel-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.products-section {
    padding: 5rem 0;
    background: white;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: auto;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.category-card > p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-list {
    text-align: right;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #2d3748;
}

.product-item i {
    color: #27ae60;
    font-size: 0.8rem;
}

.export-markets {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.export-markets .section-header h2,
.export-markets .section-header .section-subtitle,
.export-markets .section-header .section-description {
    color: white;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.market-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.market-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.market-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.5rem;
}

.market-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.market-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.market-stats {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
}

.why-choose-us {
    padding: 5rem 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.advantage-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #4a5568;
    line-height: 1.6;
}

.steel-contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
    transform: translateY(-2px);
}

/* Compact Contact Info for Arwa Steel */
.contact-info-compact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.contact-item-inline i {
    color: #2980b9;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-item-inline:hover {
    color: #2980b9;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Responsive for compact contact */
@media (max-width: 768px) {
    .contact-info-compact {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .contact-item-inline {
        justify-content: center;
        font-size: 0.8rem;
    }
}

/* Enhanced Button Styles */
.btn:focus {
    outline: 2px solid #2980b9;
    outline-offset: 2px;
}

/* Loading State for Form */
.steel-contact-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.steel-contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

/* Enhanced Mobile Experience */
@media (max-width: 480px) {
    .steel-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Screen Reader Only Labels */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced Backdrop Filter Support */
.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.market-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Responsive Design for Steel Page */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-steel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .category-card,
    .market-card,
    .advantage-card {
        padding: 1.5rem;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* إصلاح تداخل الـ hero sections مع navbar */
.hero-section,
.services-hero,
.steel-hero {
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

/* تأكيد أن جميع الأقسام لها z-index أقل من navbar */
section:not(.hero-section):not(.services-hero):not(.steel-hero) {
    position: relative;
    z-index: 1;
}