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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
    color: #333333;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Ensure header is always light on all pages */
body .header {
    background: rgba(255, 255, 255, 0.98) !important;
}

body .header .nav-logo h1,
body .header .nav-logo h1 a {
    color: #00d4aa !important;
}

body .header .nav-link {
    color: #333333 !important;
}

body .header .nav-link:hover {
    color: #00d4aa !important;
    background: rgba(0, 212, 170, 0.1) !important;
}

body .header .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 212, 170, 0.2) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

body .header .dropdown-menu a {
    color: #333333 !important;
}

body .header .dropdown-menu a:hover {
    background: rgba(0, 212, 170, 0.1) !important;
    color: #00d4aa !important;
}

body .header .mobile-menu-btn span {
    background: #333333 !important;
}

body .header .mobile-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

body .header .mobile-nav-list a {
    color: #333333 !important;
}

body .header .mobile-nav-list a:hover {
    background: rgba(0, 212, 170, 0.1) !important;
    color: #00d4aa !important;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo h1 a {
    color: #00d4aa;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-left: auto;
    padding-right: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.2);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 2rem;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 170, 0.1);
    transition: all 0.2s ease;
}

.mobile-nav-list a:hover {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.hero-background {
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,170,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #333333;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #00d4aa;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero-highlight {
    color: #00d4aa;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    color: white;
    border-color: #00d4aa;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00a085 0%, #007a63 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

/* Company Overview Section */
.company-overview {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
}

.company-overview::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,212,170,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00d4aa;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333333;
}

.section-description {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.overview-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.overview-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.overview-item:hover .overview-icon {
    background: rgba(0, 212, 170, 0.2);
    transform: scale(1.1);
}

.overview-icon .icon {
    width: 40px;
    height: 40px;
    color: #00d4aa;
}

.overview-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.overview-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.overview-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.3), transparent);
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

/* Solutions Section */
.solutions {
    background: #ffffff;
    padding: 6rem 0;
}

.solutions .section-title {
    color: #333333;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    scroll-margin-top: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.solution-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
    opacity: 1;
}

.solution-content {
    padding: 1.5rem;
}

.solution-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.solution-icon {
    width: 24px;
    height: 24px;
    color: #00d4aa;
    margin-right: 0.5rem;
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
}

.solution-description {
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.solution-link {
    background: none;
    border: none;
    color: #00d4aa;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.solution-link:hover {
    color: #00a085;
}

/* Industries Section */
.industries {
    background: #ffffff;
    padding: 6rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.industry-card:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
    border-color: #00d4aa;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon .icon {
    width: 35px;
    height: 35px;
    color: #00d4aa;
    stroke-width: 1.5;
}

.industry-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.industry-description {
    color: #666666;
    font-size: 0.9rem;
}

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

.contact .section-title {
    text-align: center;
    color: #333333;
    margin-bottom: 4rem;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
    max-width: 600px;
    width: 100%;
    scroll-margin-top: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 170, 0.05);
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: #00d4aa;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 1.125rem;
    color: #333333;
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #333333;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 1rem;
}

.footer-section h3 a {
    color: #00d4aa;
    text-decoration: none;
}

.footer-section h3 a:hover {
    color: #00a085;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.footer-section p {
    color: #666666;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #00d4aa;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */
.nav-link:focus,
.btn:focus,
.solution-link:focus {
    outline: 2px solid #00d4aa;
    outline-offset: 2px;
}

/* Glowing Effects */
.hero-title {
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.1);
}

.overview-item:hover {
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00d4aa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00a085;
}


/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    position: relative;
}

.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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,212,170,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.breadcrumb {
    color: #666666;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: #00d4aa;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Company Introduction Styles */
.company-intro {
    padding: 6rem 0;
    background: #ffffff;
}

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

.intro-content h2 {
    color: #333333;
    margin-bottom: 2rem;
}

.intro-text {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.intro-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Company Values Styles */
.company-values {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: rgba(0, 212, 170, 0.2);
    transform: scale(1.1);
}

.value-icon .icon {
    width: 40px;
    height: 40px;
    color: #00d4aa;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.value-description {
    color: #666666;
    line-height: 1.6;
}

/* Company History Styles */
.company-history {
    padding: 6rem 0;
    background: #ffffff;
}

.timeline {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #00d4aa, rgba(0, 212, 170, 0.3));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 3rem;
}

.timeline-year {
    background: #00d4aa;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: #333333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666666;
    line-height: 1.6;
}

/* Solution Overview Styles */
.solution-overview {
    padding: 6rem 0;
    background: #ffffff;
}

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

.overview-image {
    text-align: center;
}

.overview-image img {
    max-width: 50%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-text {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #666666;
    font-size: 0.9rem;
}

/* Key Features Styles */
.key-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 212, 170, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon .icon {
    width: 30px;
    height: 30px;
    color: #00d4aa;
}

.feature-title {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666666;
    line-height: 1.6;
}

/* Applications Styles */
.applications {
    padding: 6rem 0;
    background: #ffffff;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.application-card {
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.application-image {
    height: 200px;
    overflow: hidden;
}

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

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

.application-content {
    padding: 2rem;
}

.application-title {
    color: #333333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.application-description {
    color: #666666;
    line-height: 1.6;
}

/* Technical Specifications Styles */
.tech-specs {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.spec-category {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-title {
    color: #00d4aa;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    color: #666666;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}

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

/* CTA Section Styles */
.cta-section {
    padding: 6rem 0;
    background: #ffffff;
    text-align: center;
}

.cta-title {
    color: #333333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: #666666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-secondary {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.btn-secondary:hover {
    background: #00d4aa;
    color: #ffffff;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.contact-details .section-title {
    color: #333333;
    margin-bottom: 3rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 212, 170, 0.4);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 24px;
    height: 24px;
    color: #00d4aa;
}

.contact-content h3 {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: #666666;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container .section-title {
    color: #333333;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    color: #333333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4aa;
    background: rgba(255, 255, 255, 0.95);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #666666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.privacy-link {
    color: #00d4aa;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Map Section Styles */
.map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-content {
    text-align: center;
    color: #666666;
}

.map-icon {
    width: 60px;
    height: 60px;
    color: #00d4aa;
    margin-bottom: 1rem;
}

.map-content h3 {
    color: #333333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.directions h3 {
    color: #333333;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.direction-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.direction-item h4 {
    color: #00d4aa;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.direction-item p {
    color: #666666;
    line-height: 1.6;
}

/* Responsive Design for Detail Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .intro-grid,
    .overview-grid,
    .contact-grid,
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .features-grid,
    .applications-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
        padding-left: 1rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .feature-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 5rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .value-card,
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Certificates & Patents Page Styles */
.certificates-section,
.patents-section {
    padding: 4rem 0;
    background: #ffffff;
}

.patents-section {
    background: #f8f9fa;
}

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

.certificate-item,
.patent-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.certificate-item:hover,
.patent-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.15);
}

.certificate-image,
.patent-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.certificate-image img,
.patent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-overlay,
.patent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-item:hover .certificate-overlay,
.patent-item:hover .patent-overlay {
    opacity: 1;
}

.view-btn {
    background: #00d4aa;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background: #00b894;
}

.certificate-info,
.patent-info {
    padding: 1.5rem;
}

.certificate-info h3,
.patent-info h3 {
    color: #00d4aa;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.certificate-info p,
.patent-info p {
    color: #666666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.patent-number {
    color: #00d4aa !important;
    font-size: 0.9rem;
    font-weight: 500;
}

.patent-desc {
    font-size: 0.9rem;
}

.cert-date,
.patent-date {
    color: #999999;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Upload Instructions */
.upload-instructions {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

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

.instruction-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.instruction-item h3 {
    color: #00d4aa;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.instruction-item p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.instruction-item code {
    background: #f8f9fa;
    color: #00d4aa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #00d4aa;
}

#modalCaption {
    color: #fff;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

/* History Page Styles */
.history-section {
    padding: 4rem 0;
    background: #ffffff;
}

.history-section .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.history-section .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #00d4aa, rgba(0, 212, 170, 0.3));
    transform: translateX(-50%);
    border-radius: 2px;
}

.history-section .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.history-section .timeline-item:nth-child(odd) {
    flex-direction: row;
}

.history-section .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.history-section .timeline-year {
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    border: 3px solid #ffffff;
}

.history-section .timeline-year::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #00d4aa;
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.2);
}

.history-section .timeline-item:nth-child(odd) .timeline-year::before {
    right: -40px;
}

.history-section .timeline-item:nth-child(even) .timeline-year::before {
    left: -40px;
}

.history-section .timeline-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 0 3rem;
    flex: 1;
    border: 1px solid rgba(0, 212, 170, 0.2);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.history-section .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.history-section .timeline-content .timeline-text {
    flex: 1;
}

.history-section .timeline-content h3 {
    color: #00d4aa;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.history-section .timeline-content h3::before {
    content: '🎯';
    font-size: 1.2rem;
}

.history-section .timeline-content p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.history-section .timeline-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.history-section .timeline-content:hover .timeline-image {
    border-color: rgba(0, 212, 170, 0.4);
    transform: scale(1.02);
}

.milestones-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.milestone-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.milestone-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
}

.milestone-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 212, 170, 0.2);
}

.milestone-label {
    color: #666666;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for History */
@media (max-width: 768px) {
    .timeline::before,
    .history-section .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .history-section .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
        margin-bottom: 3rem;
    }
    
    .timeline-year,
    .history-section .timeline-year {
        position: absolute;
        left: 0;
        min-width: 80px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .timeline-year::before,
    .history-section .timeline-year::before {
        display: none;
    }
    
    .timeline-content,
    .history-section .timeline-content {
        margin: 1rem 0;
        width: 100%;
        padding: 2rem;
    }
    
    .timeline-content h3,
    .history-section .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content p,
    .history-section .timeline-content p {
        font-size: 1rem;
    }
    
    .timeline-image,
    .history-section .timeline-image {
        max-width: 100%;
        height: 180px;
    }
    
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .milestone-item {
        padding: 2rem 1.5rem;
    }
    
    .milestone-number {
        font-size: 2.5rem;
    }
    
    .milestone-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .timeline-item,
    .history-section .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-year,
    .history-section .timeline-year {
        min-width: 70px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .timeline-content,
    .history-section .timeline-content {
        padding: 1.5rem;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .milestone-item {
        padding: 1.5rem;
    }
    
    .milestone-number {
        font-size: 2rem;
    }
}

/* Overview Hero Style */
.overview.hero-style {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/images/main/overview-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.overview.hero-style .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.overview.hero-style .hero-text {
    color: white;
}

.overview.hero-style .hero-text .section-subtitle {
    font-size: 1rem;
    color: #00d4aa;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.overview.hero-style .hero-text .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.overview.hero-style .hero-text .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.overview.hero-style .hero-visual .overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
}

.overview.hero-style .overview-item {
    padding: 1.5rem;
    font-size: 0.9rem;
}

.overview.hero-style .overview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.overview.hero-style .overview-icon .icon {
    width: 30px;
    height: 30px;
}

.overview.hero-style .overview-title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.overview.hero-style .overview-description {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive for Hero Style Overview */
@media (max-width: 768px) {
    .overview.hero-style .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .overview.hero-style .hero-visual .overview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .overview.hero-style {
        min-height: auto;
        padding: 4rem 0;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: #ffffff;
    color: #000000;
    padding: 4rem 0 2rem;
    text-align: center;
    margin-top: 80px;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.contact-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.contact-intro {
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.company-info {
    background: #ffffff;
    padding: 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #00d4aa;
    stroke-width: 2;
}

.info-item:hover .info-icon {
    background: rgba(0, 212, 170, 0.2);
    transform: scale(1.1);
}

.info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.8rem;
}

.info-content {
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.contact-message {
    background: #00d4aa;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
        min-height: 40vh;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-intro {
        padding: 4rem 0;
    }
    
    .intro-description {
        font-size: 1.1rem;
    }
    
    .company-info {
        padding: 4rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .info-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
    
    .info-content {
        font-size: 1rem;
    }
    
    .contact-message {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 5rem 0 2rem;
    }
    
    .contact-intro {
        padding: 3rem 0;
    }
    
    .company-info {
        padding: 3rem 0;
    }
    
    .contact-message {
        padding: 2.5rem 0;
    }
}

