/* Common/shared styles moved to `css/common.css` */

/* Map Section */
.map-section {
    margin-top: 80px;
    margin-bottom: 80px;
    width: 100%;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 80px;
    padding: 80px 0;
    background: #2c2c2c;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-card {
    text-align: center;
    color: #fff;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #ba5717;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-card p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #2c2c2c;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #ba5717;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    border-radius: 4px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    color: #ccc;
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ba5717;
}

.footer-bottom {
    background: linear-gradient(135deg, #ba5717 0%, #f2a84e 100%);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact {
    display: flex;
    gap: 30px;
    color: #fff;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* common.css handles contact bar + nav mobile */
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* common.css handles contact bar mobile */
}
