/* Contact Page Specific Styles - Enhanced */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Enhanced */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.nav-link.active {
    background: rgba(255,255,255,0.25);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

/* TOGGLE MENU FIX - ADD THIS */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1000;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Contact Hero Section - Enhanced */
.contact-hero {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.95) 0%, 
        rgba(118, 75, 162, 0.9) 50%, 
        rgba(102, 126, 234, 0.85) 100%),
        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out 0.2s both;
}

/* Contact Content - Enhanced */
.contact-content {
    padding: 6rem 0;
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

/* Contact Info Cards - Enhanced */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.1),
        0 2px 10px rgba(102, 126, 234, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.03), transparent);
    transition: right 0.6s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover::after {
    right: 100%;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.15),
        0 8px 25px rgba(102, 126, 234, 0.1);
}

.info-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.info-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #764ba2;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #2d3748;
    font-weight: 700;
    position: relative;
}

.info-card p {
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.info-card a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.info-card a:hover {
    color: #764ba2;
    text-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Contact Form - Enhanced */
.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: sticky;
    top: 2rem;
    backdrop-filter: blur(10px);
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2d3748;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #475569;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 250, 252, 0.8);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.1),
        0 4px 20px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(102, 126, 234, 0.4),
        0 5px 15px rgba(118, 75, 162, 0.3);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Map Section - Enhanced */
.map-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.map-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: #2d3748;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.15),
        0 10px 30px rgba(102, 126, 234, 0.1);
    height: 450px;
    transition: all 0.4s ease;
}

.map-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 80px rgba(0,0,0,0.2),
        0 15px 40px rgba(102, 126, 234, 0.15);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.map-placeholder:hover .map-image {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.95);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
}

.map-overlay i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.map-overlay p {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

/* FAQ Section - Enhanced */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2d3748;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.08),
        0 2px 10px rgba(102, 126, 234, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 6px solid #667eea;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.03), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.15),
        0 8px 25px rgba(102, 126, 234, 0.1);
    border-left-color: #764ba2;
}

.faq-item h3 {
    color: #2d3748;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Footer Styles - Enhanced */
footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-column h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-column:hover h3::after {
    width: 100px;
}

.footer-column p {
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 350px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(8px);
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '▸';
    margin-right: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: left 0.4s ease;
}

.footer-links a:hover {
    color: #667eea;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.footer-links a:hover::before {
    color: #667eea;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    left: 0;
}

.footer-links a.nav-link.active {
    color: #667eea;
    font-weight: 700;
}

/* Additional links section in footer */
.footer-column .footer-links:last-child {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.footer-column .footer-links:last-child a {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
    font-weight: 500;
}

.footer-column .footer-links:last-child a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.4s ease;
}

.footer-column .footer-links:last-child a:hover {
    color: #667eea;
}

.footer-column .footer-links:last-child a:hover::after {
    width: 100%;
}

/* Copyright section */
.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
}

/* Success Message - Enhanced */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.success-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    border: 1px solid rgba(102, 126, 234, 0.2);
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-content i {
    font-size: 5rem;
    color: #38a169;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
}

.success-content h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.success-content p {
    color: #64748b;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.contact-hero,
.contact-content,
.map-section,
.faq-section {
    animation: fadeInUp 0.8s ease-out;
}

header {
    animation: slideDown 0.6s ease-out;
}

footer {
    animation: fadeInUp 1s ease-out;
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e53e3e;
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #38a169;
    box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-form-container {
        position: static;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Contact Hero */
    .contact-hero h1 {
        font-size: 3rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }

    .contact-form-container {
        padding: 2.5rem;
    }

    .info-card {
        padding: 2.5rem 2rem;
    }

    .map-placeholder {
        height: 350px;
    }

    /* Footer Mobile Styles */
    footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column:hover h3::after {
        width: 80px;
    }

    .footer-column p {
        margin: 0 auto 2rem;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links li:hover {
        transform: translateX(0);
    }

    .footer-column .footer-links:last-child {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    /* Header Mobile Styles */
    .nav-brand h2 {
        font-size: 1.6rem;
    }

    /* Contact Hero */
    .contact-hero {
        padding: 4rem 0;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        padding: 4rem 0;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .faq-section h2 {
        font-size: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile Styles */
    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .footer-column h3 {
        font-size: 1.4rem;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-column .footer-links:last-child {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Enhanced focus states for accessibility */
.nav-link:focus,
.footer-links a:focus,
.btn-submit:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Glass morphism effect for modern look */
.footer-content {
    backdrop-filter: blur(20px);
}

/* Loading animation for links */
.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
    transition: left 0.6s ease;
}

.footer-links a:hover::after {
    left: 100%;
}

/* Map Section - Enhanced with Interactivity */
.map-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.map-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: #2d3748;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.15),
        0 10px 30px rgba(102, 126, 234, 0.1);
    height: 450px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.map-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 80px rgba(0,0,0,0.2),
        0 15px 40px rgba(102, 126, 234, 0.15);
}

.map-placeholder:active {
    transform: translateY(-4px);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.map-placeholder:hover .map-image {
    transform: scale(1.05);
}

/* Map Overlay - Enhanced */
.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.95);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.map-placeholder:hover .map-overlay {
    background: rgba(255,255,255,0.98);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.map-overlay i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.map-overlay p {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.map-address {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Click Indicator */
.map-click-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.map-placeholder:hover .map-click-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Map Links Container */
.map-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.map-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a49a8 100%);
}

.map-link-btn:active {
    transform: translateY(-1px);
}

/* Pulse animation for map overlay */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.map-overlay {
    animation: pulse 2s infinite;
}

/* Mobile responsiveness for map links */
@media (max-width: 768px) {
    .map-links {
        flex-direction: column;
        align-items: center;
    }
    
    .map-link-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .map-overlay {
        padding: 1.5rem;
    }
    
    .map-overlay p {
        font-size: 1.1rem;
    }
}

/* Loading state for map */
.map-loading {
    position: relative;
}

.map-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}