/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 3px solid #000000;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo h1 i {
    color: #d4af37;
    font-size: 2.3rem;
}

.company-type {
    font-weight: 600;
    font-size: 1.8rem;
    color: #333333;
    margin-left: 5px;
}

.tagline {
    font-size: 1.1rem;
    color: #555555;
    margin-top: 8px;
    font-weight: 500;
    font-style: italic;
}

.header-info {
    background-color: #f5f5f5;
    padding: 12px 20px;
    border-radius: 6px;
    border-left: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
}

.header-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #000000;
    font-size: 1.1rem;
}

.header-info i {
    color: #d4af37;
    font-size: 1.3rem;
}

/* Main Content Styles */
main {
    margin-bottom: 60px;
}

.location-hero {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
}

.location-hero h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #000000;
}

.construction-notice {
    background-color: #fffcf0;
    border: 3px dashed #d4af37;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1);
}

.construction-notice i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.construction-notice h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000000;
}

.construction-notice p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
}

/* Address Section */
.address-section {
    margin-bottom: 60px;
}

.address-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 25px;
}

.address-card {
    flex: 1;
    min-width: 300px;
    background-color: #fafafa;
    padding: 35px;
    border-radius: 12px;
    border-top: 6px solid #000000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.address-card h3 {
    font-size: 1.7rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000000;
    padding-bottom: 15px;
    border-bottom: 2px solid #eeeeee;
}

.address-details {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #eeeeee;
}

.address-line {
    margin-bottom: 10px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.contact-info h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.contact-detail {
    color: #222222;
    font-weight: 500;
}

.map-container {
    flex: 1;
    min-width: 300px;
}

#location-map {
    height: 420px;
    border-radius: 12px;
    border: 3px solid #000000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-note {
    margin-top: 12px;
    font-style: italic;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

/* Details Section */
.details-section {
    margin-bottom: 60px;
}

.details-section h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000000;
    padding-bottom: 15px;
    border-bottom: 2px solid #eeeeee;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.detail-item {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #000000;
    transition: all 0.3s ease;
    height: 100%;
}

.detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.detail-item i {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #000000;
}

.detail-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000000;
}

/* Progress Section */
.progress-section {
    margin-bottom: 60px;
}

.progress-section h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000000;
    padding-bottom: 15px;
    border-bottom: 2px solid #eeeeee;
}

.progress-container {
    background-color: #fafafa;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    height: 28px;
    background-color: #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid #d0d0d0;
}

.progress-fill {
    height: 100%;
    background-color: #000000;
    width: 42%;
    border-radius: 14px;
    transition: width 1.5s ease-in-out;
}

.progress-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
}

.progress-updates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.update {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.update i {
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.update i.completed {
    color: #2e7d32;
}

.update i.in-progress {
    color: #d4af37;
}

.update i.upcoming {
    color: #666666;
}

.update p {
    flex: 1;
    font-size: 1.05rem;
}

/* Directions Section */
.directions-section {
    margin-bottom: 50px;
}

.directions-section h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000000;
    padding-bottom: 15px;
    border-bottom: 2px solid #eeeeee;
}

.directions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.transport-method {
    background-color: #fafafa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #000000;
}

.transport-method i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000;
}

.transport-method h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000000;
}

/* Footer Styles */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0 25px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    flex-wrap: wrap;
    line-height: 1.3;
}

.footer-company-type {
    font-weight: 600;
    font-size: 1.6rem;
    color: #d4af37;
}

.footer-tagline {
    color: #cccccc;
    font-size: 1.1rem;
    font-style: italic;
}

.footer-address {
    max-width: 320px;
}

.footer-address p {
    margin-bottom: 8px;
    color: #cccccc;
    line-height: 1.6;
}

.footer-address strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #aaaaaa;
    font-size: 1rem;
}

.site-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .logo h1 {
        font-size: 1.9rem;
    }
    
    .company-type {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        flex-wrap: wrap;
    }
    
    .company-type {
        font-size: 1.5rem;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .location-hero h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .address-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .company-type {
        font-size: 1.3rem;
    }
    
    .location-hero h2 {
        font-size: 1.7rem;
    }
    
    .address-card, .progress-container {
        padding: 25px;
    }
    
    .details-grid, .progress-updates, .directions-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo h3 {
        font-size: 1.4rem;
    }
}