/* Contact Page Styling */
body {
    background-image: url('../img/background-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

.navbar-list-item.active {
    color: #e63946;
    position: relative;
}

.navbar-list-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e63946;
}

.contact-container {
    max-width: 1400px;
    margin: 40px auto 100px;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.contact-header h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    color: #535353;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-header-line {
    width: 80px;
    height: 4px;
    background-color: #e63946;
    margin: 0 auto;
    position: relative;
}

.contact-header-line:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #e63946;
    border-radius: 50%;
    top: -5px;
    left: -15px;
}

.contact-header-line:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #e63946;
    border-radius: 50%;
    top: -5px;
    right: -15px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-map-container {
    width: 100%;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: calc(50% - 15px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8a100;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(248, 161, 0, 0.3);
}

.contact-details h3 {
    color: #535353;
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.contact-social {
    width: 100%;
    margin-top: 10px;
}

.contact-social h3 {
    color: #535353;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.twitter {
    background-color: #1da1f2;
}

.whatsapp {
    background-color: #25d366;
}

.contact-locations {
    margin-top: 80px;
}

.contact-locations h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    color: #535353;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.location-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.location-card {
    width: 350px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.location-details {
    padding: 20px;
}

.location-details h3 {
    color: #f8a100;
    font-size: 22px;
    margin-bottom: 15px;
}

.location-details p {
    color: #666;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details i {
    color: #f8a100;
    font-size: 16px;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .contact-header h1 {
        font-size: 42px;
    }
    
    .contact-locations h2 {
        font-size: 32px;
    }
}

/* Adding new media query for laptop screens */
@media screen and (max-width: 1366px) and (min-width: 993px) {
    .contact-container {
        max-width: 1200px;
    }
    
    .contact-header h1 {
        font-size: 40px;
    }
    
    .contact-header-line {
        width: 70px;
    }
    
    .contact-map {
        height: 400px;
    }
    
    .contact-info {
        padding: 25px;
    }
    
    .contact-card {
        gap: 15px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .contact-details h3 {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 15px;
    }
    
    .contact-social h3 {
        font-size: 18px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-locations h2 {
        font-size: 30px;
    }
    
    .location-card {
        width: 320px;
    }
    
    .location-image {
        height: 180px;
    }
    
    .location-details h3 {
        font-size: 20px;
    }
    
    .location-details p {
        font-size: 15px;
    }
}

@media screen and (max-width: 992px) {
    .contact-header h1 {
        font-size: 38px;
    }
    
    .contact-map {
        height: 400px;
    }
    
    .contact-locations h2 {
        font-size: 28px;
    }
    
    .location-card {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        margin: 30px auto 80px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    .contact-content {
        margin-bottom: 60px;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .contact-card {
        width: 100%;
    }
    
    .location-card {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .contact-header h1 {
        font-size: 28px;
    }
    
    .contact-header-line {
        width: 60px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-details h3 {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .location-image {
        height: 180px;
    }
}
