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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: nowrap !important;
}

.nav-item {
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 80px;
}

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

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

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

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.industry-sectors {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sector-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.sector-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sector-item p {
    color: #7f8c8d;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.client-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.client-benefits li {
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    color: #555;
    position: relative;
    padding-left: 2rem;
}

.client-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0.8rem;
    color: #3498db;
    font-weight: bold;
}

.why-choose {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.benefit-item {
    background: white;
    color: #2c3e50;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: left;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.benefit-item i {
    color: #3498db;
    font-size: 1.5rem;
    min-width: 28px;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #7f8c8d;
    font-weight: 500;
}

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

.about-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.product-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.product-card p {
    color: #7f8c8d;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.product-card .btn {
    margin: 0 1.5rem 1.5rem;
    display: inline-block;
}

/* Infrastructure Section */
.infrastructure {
    padding: 100px 0;
    background: white;
}

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

.infrastructure-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.infrastructure-text p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

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

.facility-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-item h4 {
    font-size: 2.5rem;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.facility-item p {
    color: #7f8c8d;
    font-weight: 500;
}

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

.infrastructure-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

/* Careers Section */
.careers {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.careers-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.careers-text p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.job-listings {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.job-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.job-item:hover {
    transform: translateY(-5px);
}

.job-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.job-item p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.careers-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-section a,
.footer-section a:visited {
    color: #f8f9fa !important;
    text-decoration: none !important;
    transition: color 0.3s;
}
.footer-section a:hover {
    color: #ffd700 !important;
    text-decoration: none !important;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-placeholder {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }

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

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

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .infrastructure-content,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facility-stats {
        grid-template-columns: 1fr;
    }
    
    .industry-sectors {
        gap: 1rem;
    }
    
    .why-choose {
        gap: 0.6rem;
    }
    
    .benefit-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero h2 {
        font-size: 1.5rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .team-content,
    .manufacturing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality-tests,
    .innovation-goals,
    .commitment-list {
        grid-template-columns: 1fr;
    }
    
    .category-header-large {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .category-info h2 {
        font-size: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-item {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .facility-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .machinery-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .machinery-icon {
        margin: 0 auto;
    }
    
    .spec-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-table-container {
        overflow-x: auto;
    }
    
    .tools-table {
        min-width: 600px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Company Profile Page Styles */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 600;
}

.page-hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #ffd700 !important;
    font-style: italic;
}

/* What We Offer Section */
.what-we-offer {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.offer-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.offer-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f1f1;
}

.category-header i {
    font-size: 2rem;
    color: #3498db;
    margin-right: 1rem;
}

.category-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f1f1;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.product-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.product-list li:last-child {
    border-bottom: none;
}

.additional-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.additional-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Matcon Section */
.why-matcon {
    padding: 80px 0;
    background: white;
}

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

.benefit-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.benefit-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.cta-text {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.cta-text p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.team-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.team-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background: white;
}

.quality-tests {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.test-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.test-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.test-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.test-item h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.quality-promise {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #3498db !important;
    text-align: center;
    font-style: italic;
}

/* Manufacturing Section */
.manufacturing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.equipment-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.equipment-category {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
}

.equipment-category h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.manufacturing-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

/* Innovation Section */
.innovation-section {
    padding: 80px 0;
    background: white;
}

.innovation-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.goal-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.goal-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.goal-item h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Customer Satisfaction Section */
.customer-satisfaction {
    padding: 80px 0;
    background: #f8f9fa;
}

.commitment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.commitment-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.commitment-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.commitment-item h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.partner-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

/* Active Navigation Link */
.nav-link.active {
    color: #3498db !important;
    font-weight: 700;
    position: relative;
    background: none;
    box-shadow: none;
}

.nav-link.active::after {
    content: '';
    display: block;
    margin: 0 auto;
    margin-top: 6px;
    width: 70%;
    height: 7px;
    background: #3498db;
    border-radius: 6px;
}

/* Products Page Styles */
.product-category {
    padding: 80px 0;
    background: white;
}

.product-category.alt-bg {
    background: #f8f9fa;
}

.category-header-large {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.category-info h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

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

.product-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    text-align: center;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: transform 0.3s ease;
}

.product-item:hover .product-icon {
    transform: scale(1.1);
}

.product-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.product-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Products Section */
.why-choose-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.why-choose-products .section-header h2 {
    color: white;
}

.why-choose-products .benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose-products .benefit-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Infrastructure Page Styles */
.facility-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.facility-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.facility-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.facility-stat-card h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.facility-stat-card p {
    color: #7f8c8d;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Key Machinery Section */
.key-machinery {
    padding: 80px 0;
    background: white;
}

.machinery-grid {
    display: grid;
    gap: 2rem;
}

.machinery-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.machinery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.machinery-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.machinery-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.machinery-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.machine-specs {
    margin-top: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #2c3e50;
}

.spec-value {
    color: #7f8c8d;
}

/* Advanced Tools Section */
.advanced-tools {
    padding: 80px 0;
    background: #f8f9fa;
}

.tools-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tools-table {
    width: 100%;
    border-collapse: collapse;
}

.tools-table th {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.tools-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.tools-table tr:hover {
    background: #f8f9fa;
}

.tools-table tr:last-child td {
    border-bottom: none;
}

/* Facility Highlights Section */
.facility-highlights {
    padding: 80px 0;
    background: white;
}

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

.highlight-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.highlight-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Infrastructure CTA Section */
.infrastructure-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Service Page Styles */
.service-philosophy {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.philosophy-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.philosophy-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Service Categories Section */
.service-categories {
    padding: 80px 0;
    background: white;
}

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

.category-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.category-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #7f8c8d;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Service Benefits Section */
.service-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    background: none !important;
    color: #3498db;
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 1rem 0 0;
    box-shadow: none;
}

.benefit-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Service Process Section */
.service-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.service-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.service-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Additional text styles for service page */
.cta-text {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #3498db !important;
    font-style: italic;
    margin-top: 1rem;
}

/* Responsive Design for Service Page */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-card {
        padding: 2rem;
    }
    
    .philosophy-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .service-cta .cta-content p {
        font-size: 1rem;
    }
    
    .service-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .philosophy-card,
    .category-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .service-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem !important;
    }
}

/* Contact Page Styles */
.contact-details {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
}

.feature-item i {
    color: #3498db;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-placeholder p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.map-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
}

.map-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.map-info p:last-child {
    margin-bottom: 0;
}

/* Business Hours Section */
.business-hours {
    padding: 80px 0;
    background: white;
}

.hours-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hours-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.hours-item .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-item .time {
    color: #3498db;
    font-weight: 500;
}

.emergency-contact {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.emergency-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.emergency-contact p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.emergency-phone {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.emergency-phone:hover {
    transform: scale(1.05);
    color: #e74c3c;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-content {
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .map-placeholder {
        padding: 2rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .emergency-contact {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    .form-content h2 {
        font-size: 1.8rem;
    }
    
    .hours-content h2 {
        font-size: 1.8rem;
    }
} 

/* Modern Contact Section Styles */
.contact-modern {
    padding: 60px 0;
    background: #f8f9fa;
}
.contact-modern-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
}
.contact-modern-left {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.contact-modern-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    padding: 2rem 1.5rem;
    min-width: 270px;
}
.contact-modern-icon {
    min-width: 60px;
    min-height: 60px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
}
.contact-modern-info {
    flex: 1;
}
.contact-modern-info strong {
    display: block;
    font-size: 1.08rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.contact-modern-info p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    word-break: break-word;
}
.contact-modern-info a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    word-break: break-all;
}
.contact-modern-info a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.contact-modern-right {
    flex: 1 1 400px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    padding: 2.5rem 2rem;
    min-width: 320px;
    max-width: 480px;
    margin-left: auto;
}
.contact-modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
    color: #2c3e50;
    transition: border-color 0.2s;
}
.contact-modern-form input:focus,
.contact-modern-form select:focus,
.contact-modern-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #fff;
}
.contact-modern-form textarea {
    min-height: 110px;
    resize: vertical;
}
.contact-modern-form button.btn {
    width: fit-content;
    align-self: flex-start;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}
.contact-modern-form button.btn:hover {
    background: #2980b9;
}

@media (max-width: 900px) {
    .contact-modern-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: stretch;
    }
    .contact-modern-right {
        margin-left: 0;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .contact-modern-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.2rem 1rem;
    }
    .contact-modern-icon {
        min-width: 44px;
        min-height: 44px;
        font-size: 1.3rem;
    }
    .contact-modern-right {
        padding: 1.2rem 0.7rem;
    }
} 

/* Contact Modern Form Polished Styles */
.contact-modern-form .form-row {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}
.contact-modern-form label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}
.contact-modern-form .required {
    color: #e74c3c;
    font-size: 1.1em;
}
.contact-modern-form .form-group-row {
    display: flex;
    gap: 1rem;
}
.contact-modern-form .form-group-row input,
.contact-modern-form .form-group-row select {
    flex: 1 1 0;
    min-width: 0;
}
.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
    color: #2c3e50;
    transition: border-color 0.2s;
}
.contact-modern-form input:focus,
.contact-modern-form select:focus,
.contact-modern-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #fff;
}
.contact-modern-form textarea {
    min-height: 110px;
    resize: vertical;
}
@media (max-width: 600px) {
    .contact-modern-form .form-group-row {
        flex-direction: column;
        gap: 0.7rem;
    }
} 

/* --- Dropdown Menu Modern Effect (REVISED for better hover) --- */
.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.15), 0 1.5px 6px rgba(44,62,80,0.08);
    min-width: 200px;
    animation: dropdownFadeIn 0.25s cubic-bezier(.4,2,.6,1) both;
    transition: box-shadow 0.2s;
    display: none;
}

@keyframes dropdownFadeIn {
    0% { opacity: 0; transform: translateY(-10px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 1em 2em;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    position: relative;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, #eaf6ff 0%, #f0f4fa 100%);
    color: #3498db;
    transform: translateX(4px) scale(1.04);
    box-shadow: 0 2px 8px #3498db22;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    margin-top: 0;
    min-width: 200px;
    z-index: 1000;
}

/* Remove any rule that hides dropdown-menu when not hovered/focused */
/* .nav-item.dropdown:not(:hover):not(:focus-within) .dropdown-menu { display: none !important; } */

/* --- Fixed width for dropdown menus and submenus --- */
.dropdown-menu,
.dropdown-menu.submenu {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
}

.dropdown-menu a {
    white-space: normal !important;
    word-break: break-word !important;
}

.gallery-card {
    width: 90%;
    margin: 0 auto;
}

.gallery-card img {
    width: 420px;
    height: 280px;
    object-fit: contain;
    background: #fff;
    display: block;
    margin: 0 auto;
    border-radius: 14px 14px 0 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

/* --- Lightbox Styles --- */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 41, 59, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px #0008;
    background: #fff;
}
.lightbox-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.18s;
}
.lightbox-close:hover {
    color: #3498db;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

.gallery-card {
    width: 100%;
    margin: 0;
}

.gallery-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 14px 14px 0 0;
    display: block;
}