/* Location Page Specific Styles */

.location-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)),
                url('../images/52412410917_e407433865_h.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.location-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.location-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
}

.contact-btn.whatsapp {
    background: #25d366;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.contact-btn.whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Location Content Section */
.location-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
}

.main-content h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    bottom: -8px;
    left: 0;
}

.main-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.main-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.main-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
    margin-top: 2rem;
}

/* Features Section */
.features-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
}

.features-section h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
}

.contact-card h3::after {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.contact-details i {
    color: #667eea;
    width: 20px;
    text-align: center;
}

.btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
}

.other-locations {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.other-locations h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
}

.other-locations h3::after {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.other-locations ul {
    list-style: none;
    padding: 0;
}

.other-locations li {
    margin-bottom: 0.8rem;
}

.other-locations a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-radius: 5px;
}

.other-locations a:hover {
    color: #764ba2;
    background: #f8f9fa;
}

/* Locations Grid Section */
.locations-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.locations-grid-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.locations-grid-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.location-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.location-icon {
    margin-bottom: 1.5rem;
}

.location-icon i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.location-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.location-info p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #764ba2;
}

/* International Locations */
.international-locations {
    padding: 80px 0;
    background: white;
}

.international-locations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.international-locations h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-section .contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-section p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-section .contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-section .contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
}

.contact-section .contact-details i {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .location-hero {
        padding: 120px 0 80px;
    }
    
    .location-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .location-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sidebar {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .location-hero {
        padding: 100px 0 60px;
    }
    
    .location-hero-content h1 {
        font-size: 2rem;
    }
    
    .location-hero-content p {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features-section {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1rem 0.8rem;
    }
    
    .feature-card i {
        font-size: 2rem;
    }
    
    .contact-card,
    .other-locations {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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