/* ===== Footer Styles ===== */
.footer {
    background: var(--dark);
    color: white;
}

.footer-main {
    padding: 1rem 0;
}

.footer-main .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--secondary);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.footer-logo h3 {
    color: white;
    font-family: 'Rajdhani', sans-serif;
    margin: 0 0 0.5rem 0;
}

.footer-about {
    color: #bbb;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    background: #111;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods img {
    height: 30px;
}

.developer-credit {
    color: #777;
}

.developer-credit i {
    color: var(--secondary);
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-container {
        flex-grow: 1;
    }
}

@media (max-width: 576px) {
    .top-bar .container {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom > div {
        margin-bottom: 0.5rem;
    }
}

/* Map Styles */
.location-map {
    position: relative;
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.location-map iframe {
    display: block;
    border: none;
    width: 100%;
    height: 400px;
}

.map-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #eee;
}

.map-actions .btn-primary,
.map-actions .btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .map-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .location-map iframe {
        height: 300px;
    }
}