/* CSS Variables */
:root {
    --primary-red: #8B0000;
    --secondary-red: #a00000;
    --light-red: #ff4444;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    --gradient-light: linear-gradient(135deg, #ff6b6b, var(--light-red));
    --navbar-height: 80px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    direction: rtl;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: #ccc;
}

.highlight {
    color: var(--primary-red);
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
}

.lang-btn {
    background: var(--primary-red) !important;
    color: white !important;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--secondary-red) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
    min-width: 160px;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white !important;
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: var(--gradient-light);
    border-color: var(--secondary-red);
}

.btn-secondary {
    background: white;
    color: var(--primary-red) !important;
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

/* CTA Section Button Fixes */
.cta-section .btn-primary {
    background: white;
    color: var(--primary-red) !important;
    border: 2px solid white;
}

.cta-section .btn-primary:hover {
    background: var(--primary-red);
    color: white !important;
    border-color: white;
    transform: translateY(-3px) scale(1.02);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-red) !important;
    border-color: white;
    transform: translateY(-3px) scale(1.02);
}

/* Hero Section Button Fixes */
.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    color: white !important;
    border: 2px solid var(--primary-red);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.hero-buttons .btn-primary:hover {
    background: var(--gradient-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-red) !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Modal Button Fixes */
.modal-actions .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    margin-top: 1rem;
}

/* Form Button Fixes */
.contact-form .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Quick Contact Button Fixes */
.quick-contact-buttons .btn {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.quick-contact-buttons .btn i {
    font-size: 1.2rem;
}

/* Announcement Button Fixes */
.announcement-btn {
    background: white !important;
    color: var(--primary-red) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
    display: inline-block;
}

.announcement-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    background: var(--light-gray) !important;
}

/* Filter Button Fixes */
.filter-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-red) !important;
    border: 2px solid transparent;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn.active,
.filter-btn:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

/* View Product Button */
.view-product-btn {
    background: white !important;
    color: var(--primary-red) !important;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    border: 2px solid transparent;
    display: inline-block;
}

.view-product-btn:hover {
    background: var(--primary-red) !important;
    color: white !important;
    border-color: white;
    transform: translateY(0) scale(1.05);
}

.product-card:hover .view-product-btn {
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(139, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 30px rgba(139, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    text-decoration: none;
}

.nav-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slogan {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    margin: 0 0.2rem;
    display: block;
    font-size: 1rem;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-light);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a, #1a2332);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero:hover .hero-bg-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(139, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Announcement Section */
.announcement-section {
    background: linear-gradient(45deg, #ff6b35, #f39c12);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.announcement-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    text-align: center;
    flex-wrap: wrap;
}

.announcement-banner i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.announcement-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.announcement-btn {
    background: white !important;
    color: var(--primary-red) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
}

.announcement-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    background: var(--light-gray) !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Product Filter */
.product-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.filter-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-red) !important;
    border: 2px solid transparent;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn.active,
.filter-btn:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

/* Mission and Vision Cards */
.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #a00000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p, .vision-card p {
    color: #ccc;
    line-height: 1.7;
}

/* Key Points Section */
.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.key-point-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.key-point-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.key-point-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), #a00000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.key-point-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.key-point-card ul {
    list-style: none;
    padding: 0;
}

.key-point-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: var(--medium-gray);
}

.key-point-card li:last-child {
    border-bottom: none;
}

.core-message {
    text-align: center;
}

.core-message h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.core-message p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.tagline {
    font-style: italic;
    color: var(--primary-red);
    font-weight: 600;
}

/* Partners Carousel */
.partners-carousel {
    overflow: hidden;
    margin-top: 2rem;
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.partner-card {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.partner-card h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red), #a00000);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Intro Section */
.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0;
}

.footer-slogan {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-footer i {
    color: var(--primary-red);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(139, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        display: block;
        border-radius: 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover, .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
        box-shadow: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .key-points-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .announcement-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .language-toggle {
        top: 80px;
        right: 10px;
    }

    .lang-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .customers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partners-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .customer-profile {
        padding: 2rem;
    }
    
    .partner-badge {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .key-point-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .product-filter {
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        flex-direction: column;
        gap: 0.3rem;
    }

    .slogan {
        font-size: 0.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .partners-row {
        grid-template-columns: 1fr;
    }
    
    .customer-profile {
        padding: 1.5rem;
    }
    
    .partner-badge {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading animation for buttons */
.btn:active {
    transform: translateY(0);
    transition: none;
}

/* Smooth scrolling improvements */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: var(--black);
    }
    
    .key-point-card {
        border: 2px solid var(--black);
    }
}

/* Product Album Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.product-card:hover::before {
    opacity: 0.1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.2);
}

.product-image-container {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-product-btn {
    background: white !important;
    color: var(--primary-red) !important;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    border: 2px solid transparent;
    display: inline-block;
}

.view-product-btn:hover {
    background: var(--primary-red) !important;
    color: white !important;
    border-color: white;
    transform: translateY(0) scale(1.05);
}

.product-card:hover .view-product-btn {
    transform: translateY(0);
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-name {
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition);
}

.product-card:hover .product-name {
    color: var(--secondary-red);
}

.product-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

.product-description {
    margin-top: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: scale(0.7);
    transition: var(--transition);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.product-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(139, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-red);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Product Modal Styles */
.modal-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-image {
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-product-name {
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-product-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.modal-product-description {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    position: relative;
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--dark-gray);
    line-height: 1.6;
    border-bottom: 1px solid var(--light-gray);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-features li:last-child {
    border-bottom: none;
}

.modal-actions {
    margin-top: auto;
    padding-top: 2rem;
}

.modal-actions .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
}

/* Enhanced Animation Classes */
.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Hover Effects */
.btn:hover, .filter-btn:hover, .announcement-btn:hover {
    animation: pulse 0.6s ease-in-out;
}

.product-card:hover {
    animation: bounce 0.6s ease-in-out;
}

.partner-card:hover {
    animation: pulse 0.8s ease-in-out;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-product-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-image img {
        height: 250px;
    }
    
    .modal-info {
        padding: 1rem;
    }
    
    .modal-product-name {
        font-size: 1.5rem;
    }
}

/* Page Header Styles for About Page */
.page-header {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,100 0,100 0,0 1000,40"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    padding: 2rem 0;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-red);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover .team-image {
    transform: scale(1.05);
}

/* Vision Mission Content */
.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-section, .vision-section {
    display: flex;
    justify-content: center;
}

/* Target Customers */
.target-customers-section {
    padding: 6rem 0;
    background: white;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.customer-profile {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.customer-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.customer-profile:hover::before {
    opacity: 0.05;
}

.customer-profile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.customer-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.customer-profile h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.customer-profile h4 {
    color: var(--secondary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.customer-profile p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
}

.partners-badges {
    margin-top: 3rem;
}

.partners-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.partner-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.partner-badge:hover::before {
    left: 100%;
}

.partner-badge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.partner-badge h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.partner-badge span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Page Card Styles */
.contact-info-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.contact-card:hover::before {
    opacity: 0.05;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.contact-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.contact-card p, .contact-card .phone-number {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
}

.phone-numbers p {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-container h2 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: white;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

/* Map Container */
.map-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.map-container h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.map-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.map-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Distribution Section */
.distribution-section {
    padding: 6rem 0;
    background: white;
}

.distribution-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.distribution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-red);
    transition: var(--transition);
}

.distribution-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.distribution-item i {
    font-size: 2rem;
    color: var(--primary-red);
    min-width: 50px;
}

.distribution-item h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.distribution-item p {
    color: var(--medium-gray);
    margin: 0;
}

/* Business Hours */
.business-hours {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.business-hours h3 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark-gray);
}

.hours-item .time {
    color: var(--primary-red);
    font-weight: 600;
}

/* Quick Contact Banner */
.quick-contact-banner {
    padding: 4rem 0;
    text-align: center;
}

.quick-contact-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.quick-contact-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-buttons .btn {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Enhanced Product Grid for Products Page */
.products-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.product-card:hover::before {
    opacity: 0.08;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.2);
}

.product-image-container {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--light-gray);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-product-btn {
    background: white !important;
    color: var(--primary-red) !important;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    border: 2px solid transparent;
    display: inline-block;
}

.view-product-btn:hover {
    background: var(--primary-red) !important;
    color: white !important;
    border-color: white;
    transform: translateY(0) scale(1.05);
}

.product-card:hover .view-product-btn {
    transform: translateY(0);
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-name {
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.product-card:hover .product-name {
    color: var(--secondary-red);
}

.product-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

.product-description {
    margin-top: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Categories Description */
.categories-description {
    margin-top: 5rem;
    padding: 4rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.categories-description h3 {
    text-align: center;
    color: var(--primary-red);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.category-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.category-item:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-item i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.category-item h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Quality Section */
.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.quality-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.quality-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.quality-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.quality-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Responsive Design for Contact and Products */
@media (max-width: 768px) {
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .distribution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .distribution-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .business-hours {
        padding: 2rem;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Story Cards Grid */
.story-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.story-card:hover::before {
    opacity: 0.05;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.story-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.story-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.story-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.story-image-card {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 300px;
}

.story-image .team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.story-image:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.story-image:hover .team-image {
    transform: scale(1.05);
}

.image-overlay h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.image-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Vision Mission Cards */
.vision-mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.value-card:hover::before {
    opacity: 0.03;
}

.value-card:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.value-card h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Partners Cards Grid */
.partners-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.partner-card .partner-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.partner-card h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.partner-card span {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design for About Cards */
@media (max-width: 1024px) {
    .story-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-image-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .story-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .story-image-card {
        grid-column: span 1;
    }
    
    .vision-mission-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partners-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .partner-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-card-icon, .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .partner-card .partner-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Animation Classes */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-fadeInScale {
    animation: fadeInScale 0.8s ease-out;
}

.animate-slideInTop {
    animation: slideInFromTop 0.8s ease-out;
}

.animate-slideInBottom {
    animation: slideInFromBottom 0.8s ease-out;
}

.animate-rotateIn {
    animation: rotateIn 1s ease-out;
}

.animate-heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Enhanced hover effects */
.key-point-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2);
    animation: glow 1s ease-in-out;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    animation: float 1s ease-in-out;
}

.hero-bg-image {
    transition: transform 20s ease-in-out;
}

.hero:hover .hero-bg-image {
    transform: scale(1.1);
}

.key-point-icon {
    animation: float 4s ease-in-out infinite;
}

.key-point-icon:hover {
    animation: heartbeat 0.8s ease-in-out;
}

.partner-logo {
    transition: all 0.3s ease;
}

.partner-logo:hover {
    animation: rotateIn 0.6s ease-out;
}

/* Section transitions */
.section {
    transition: all 0.5s ease;
}

.section:hover {
    transform: translateY(-2px);
}

/* Button enhancements */
.btn:hover {
    animation: pulse 0.6s ease-in-out;
    transform: translateY(-3px) scale(1.02);
}

.btn.animate-pulse:hover {
    animation: heartbeat 0.8s ease-in-out;
}

.btn.animate-bounce:hover {
    animation: shake 0.5s ease-in-out;
}

/* Text animations */
.hero-title {
    animation: slideInFromTop 1.2s ease-out 0.3s both;
}

.hero-subtitle {
    animation: fadeInScale 1s ease-out 0.6s both;
}

.hero-description {
    animation: slideInFromBottom 1s ease-out 0.9s both;
}

/* Scroll-triggered animations */
.section-title {
    transition: all 0.5s ease;
}

.section-title:hover {
    color: var(--secondary-red);
    transform: scale(1.05);
    text-shadow: 2px 2px 4px rgba(139, 0, 0, 0.3);
}

/* Loading states */
.loading-shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* Staggered animations for grids */
.key-points-grid .key-point-card:nth-child(1) {
    animation-delay: 0.2s;
}

.key-points-grid .key-point-card:nth-child(2) {
    animation-delay: 0.4s;
}

.key-points-grid .key-point-card:nth-child(3) {
    animation-delay: 0.6s;
}

.partners-cards-grid .partner-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.partners-cards-grid .partner-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Responsive animation adjustments */
@media (max-width: 768px) {
    .animate-float,
    .animate-glow,
    .key-point-icon,
    .hero:hover .hero-bg-image {
        animation: none;
    }
    
    .key-point-card:hover,
    .partner-card:hover {
        transform: translateY(-5px);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Team Section Styles */
.team-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease-in-out;
    z-index: 0;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.team-member > * {
    position: relative;
    z-index: 1;
}

.team-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
    transition: var(--transition);
}

.team-icon i {
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.team-member:hover .team-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.5);
}

.team-member h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.team-contacts {
    margin-top: 1.5rem;
}

.contact-person {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-person:last-child {
    margin-bottom: 0;
}

.contact-person:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.contact-person h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-person p {
    color: #ccc;
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.contact-person i {
    color: var(--primary-red);
    width: 16px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(139, 0, 0, 0.3));
}

/* Responsive adjustments for team section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        padding: 2rem;
    }
    
    .team-icon {
        width: 60px;
        height: 60px;
    }
    
    .team-icon i {
        font-size: 1.5rem;
    }
    
    .team-member h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .team-member {
        padding: 1.5rem;
    }
    
    .contact-person {
        padding: 0.8rem;
    }
    
    .contact-person h4 {
        font-size: 1rem;
    }
    
    .contact-person p {
        font-size: 0.9rem;
    }
}

/* Hero Logo Overlay Styles */
.hero-logo-overlay {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
}

.logo-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(139, 0, 0, 0.2);
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-text {
    font-family: 'Cairo', 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #8B0000;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo-icon i {
    font-size: 1.5rem;
    color: #8B0000;
    animation: heartbeat 2s ease-in-out infinite;
}

.logo-icon .fa-utensils {
    animation-delay: 0.5s;
}

.logo-slogan {
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 2px solid #8B0000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced hero content positioning */
.hero-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

/* Responsive adjustments for logo */
@media (max-width: 1024px) {
    .hero-logo-overlay {
        top: 12%;
    }
    
    .logo-container {
        padding: 1.5rem 2rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .logo-slogan {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-logo-overlay {
        top: 10%;
        width: 90%;
    }
    
    .logo-container {
        padding: 1rem 1.5rem;
    }
    
    .company-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-icon {
        flex-direction: row;
        justify-content: center;
    }
    
    .logo-slogan {
        font-size: 1rem;
    }
    
    .hero-content {
        bottom: 5%;
        width: 95%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-icon i {
        font-size: 1.2rem;
    }
    
    .logo-slogan {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
} 