
.location-section {
    background-color: #f8f9fa;
    padding: 120px 0;
    font-family: "Clarity City", sans-serif;
    width: 100%;
    margin-top: 5%;
    position: relative;
}

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

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-title {
    font-family: "Clarity City", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px 0;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.location-divider {
    width: 80px;
    height: 4px;
    background-color: #E51E2A;
    margin: 0 auto;
    border-radius: 2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


.location-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}


.contact-info h3,
.opening-hours h3,
.social-section h3 {
    font-family: "Clarity City", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #E51E2A;
    margin: 0 0 20px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h4 {
    font-family: "Clarity City", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
}

.contact-item p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.phone-link {
    color: #E51E2A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #c41e2a;
}

.call-button {
    display: inline-block;
    background-color: #E51E2A;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.call-button:hover {
    background-color: #c41e2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 30, 42, 0.3);
}


.hours-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.hours-row:hover {
    border-left-color: #E51E2A;
    transform: translateX(5px);
}

.day {
    font-weight: 600;
    color: #333333;
    font-size: 16px;
}

.hours {
    color: #666666;
    font-size: 16px;
}

.hours.closed {
    color: #E51E2A;
    font-weight: 600;
}


.location-right {
    display: flex;
    padding-top: 60px;
    flex-direction: column;
    gap: 95px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}


.map-section {
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-section:hover {
    transform: translateY(-5px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}
.contact-details{
  background-color: #ffffff;
    padding: 30px;
    border-radius: 0;

}

.social-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 0;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-radius: 0;
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover {
    border-left-color: #1877f2;
    color: #1877f2;
}

.social-link.instagram:hover {
    border-left-color: #e4405f;
    color: #e4405f;
}

.social-link.tiktok:hover {
    border-left-color: #000000;
    color: #000000;
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}


@media (max-width: 1024px) {
    .location-container {
        padding: 0 30px;
    }
    
    .location-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-container {
        padding: 0 20px;
    }
    
    .location-title {
        font-size: 36px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-left {
        gap: 30px;
    }
    
    .contact-info h3,
    .opening-hours h3,
    .social-section h3 {
        font-size: 20px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .social-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .location-container {
        padding: 0 15px;
    }
    
    .location-title {
        font-size: 28px;
    }
    
    .contact-info h3,
    .opening-hours h3,
    .social-section h3 {
        font-size: 18px;
    }
    
    .contact-item h4 {
        font-size: 16px;
    }
    
    .contact-item p,
    .day,
    .hours {
        font-size: 14px;
    }
    
    .call-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hours-row {
        padding: 10px 12px;
    }
    
    .map-container {
        height: 200px;
    }
    
    .social-link {
        padding: 12px 16px;
        gap: 12px;
        width: 100%;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

