/* Footer Styles */

.footer {
    background-color: white;
    border-top: 1px solid #DEE2E7;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 270px;
}

.footer-logo p {
    color: #505050;
    font-size: 0.875rem;
    margin: 15px 0;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icon {
    margin-right: 12px;
    color: #BDC4CD;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #0D6EFD;
}

.social-icon img {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex: 1;
    justify-content: space-around;
    margin-left: 40px;
}

.footer-column {
    min-width: 120px;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1C1C1C;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #8B96A5;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #0D6EFD;
}

/* App Buttons */
.app-buttons {
    display: flex;
    flex-direction: column;
}

.app-button {
    margin-bottom: 8px;
}

.app-button img {
    height: 40px;
    width: auto;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #DEE2E7;
    margin-top: 32px;
    padding: 16px 0 8px 0;
    font-size: 0.875rem;
    color: #606060;
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
}

.dropdown-icon {
    width: 10px;
    height: 10px;
    margin-left: 8px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-logo {
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-links {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-column {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-column {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .language-selector {
        margin-top: 15px;
    }
}

/* --- Responsive Header --- */
.header-container, .header-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.header-center { flex: 1 1 0; display: flex; justify-content: center; }
.header-right { display: flex; gap: 18px; }
.mobile-menu-btn { display: none; background: none; border: none; }
@media (max-width: 992px) {
    .header-container, .header-bottom-container { flex-direction: column; align-items: stretch; }
    .header-center { width: 100%; margin: 10px 0; }
    .header-right { justify-content: flex-end; }
    .main-nav { flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .header-center { order: 2; }
    .header-right { order: 3; }
    .mobile-menu-btn { display: block; }
    .main-nav { display: none; }
}

/* --- Responsive Sidebar --- */
.hero-sidebar {
    width: 250px;
}
@media (max-width: 992px) {
    .hero-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #DEE2E7; }
}
@media (max-width: 768px) {
    .hero-sidebar { display: none; }
}

/* --- Responsive Hero/Main --- */
.hero-container {
    display: flex;
    gap: 20px;
}
@media (max-width: 992px) {
    .hero-container { flex-direction: column; }
}
@media (max-width: 768px) {
    .hero-container { flex-direction: column; gap: 10px; }
    .main-hero-side { flex-direction: column; gap: 10px; }
}

/* --- Responsive Grids --- */
.deals-grid, .categories-grid, .recommended-grid, .services-grid, .region-grid {
    display: grid;
    gap: 20px;
}
.deals-grid { grid-template-columns: repeat(5, 1fr); }
.categories-grid { grid-template-columns: repeat(6, 1fr); }
.recommended-grid { grid-template-columns: repeat(5, 1fr); }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.region-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) {
    .deals-grid, .recommended-grid, .region-grid { grid-template-columns: repeat(4, 1fr); }
    .categories-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 992px) {
    .deals-grid, .recommended-grid, .region-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .deals-grid, .recommended-grid, .categories-grid, .region-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .deals-grid, .recommended-grid, .categories-grid, .region-grid, .services-grid { grid-template-columns: 1fr; }
}

/* --- Newsletter --- */
.newsletter-section .container {
    max-width: 100%;
    padding: 0 10px;
}
@media (max-width: 576px) {
    .newsletter-form { flex-direction: column; gap: 8px; }
    .newsletter-form input, .newsletter-form button { width: 100%; }
}