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

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3); }
        50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5); }
    }

    @keyframes shimmer {
        0% { background-position: -1000px 0; }
        100% { background-position: 1000px 0; }
    }

    @keyframes glow {
        0%, 100% { box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3); }
        50% { box-shadow: 0 5px 30px rgba(102, 126, 234, 0.6), 0 0 40px rgba(102, 126, 234, 0.4); }
    }

    /* Contact Hero Section */
    .contact-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 5rem 2rem 3rem;
        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% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 50%);
        animation: pulse 4s ease-in-out infinite;
    }

    .hero-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 15s infinite ease-in-out;
    }

    .contact-hero-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        animation: fadeInUp 0.8s ease;
    }

    .contact-hero h1 {
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 1rem;
        letter-spacing: -1px;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }

    .contact-hero p {
        font-size: 1.3rem;
        opacity: 0.95;
        line-height: 1.8;
    }

    /* Contact Main Section */
    .contact-main {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

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

    /* Contact Info Cards - Highlighted */
    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .contact-card {
        background: white;
        padding: 2.5rem;
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid rgba(102, 126, 234, 0.1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        text-align: center;
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
        transition: left 0.5s;
    }

    .contact-card:hover::before {
        left: 100%;
    }

    .contact-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
        border-color: #667eea;
    }

    .contact-card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        transition: all 0.4s ease;
        animation: glow 3s ease-in-out infinite;
    }

    .contact-card:hover .contact-card-icon {
        transform: scale(1.1) rotate(5deg);
        animation: pulse 1s ease-in-out infinite;
    }

    .contact-card h3 {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 0.8rem;
        font-weight: 700;
    }

    .contact-card a {
        color: #667eea;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
    }

    .contact-card a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        transition: width 0.3s ease;
    }

    .contact-card:hover a::after {
        width: 100%;
    }

    .contact-card a:hover {
        color: #764ba2;
        transform: scale(1.05);
    }

    /* Contact Info */
    .contact-info {
        animation: slideInRight 0.8s ease;
    }

    .info-card {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 2rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(102, 126, 234, 0.1);
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    }

    .info-card h3 {
        font-size: 1.5rem;
        color: #2d3748;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .info-item:hover {
        background: #f8f9fa;
        transform: translateX(5px);
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        transition: all 0.3s ease;
    }

    .info-item:hover .info-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .info-content h4 {
        color: #2d3748;
        font-weight: 600;
        margin-bottom: 0.3rem;
        font-size: 1rem;
    }

    .info-content p {
        color: #718096;
        line-height: 1.6;
        margin: 0;
    }

    .info-content a {
        color: #667eea;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    /* Social Links */
    .social-links {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .social-links::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: float 6s ease-in-out infinite;
    }

    .social-links h3 {
        color: white;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
        position: relative;
        z-index: 1;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255,255,255,0.3);
    }

    .social-icon:hover {
        background: white;
        transform: translateY(-8px) rotate(5deg) scale(1.1);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    /* Map Section */
    .map-section {
        padding: 4rem 2rem;
        background: white;
    }

    .map-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .map-container h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #2d3748;
        margin-bottom: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 0.8s ease;
    }

    .map-wrapper {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        height: 450px;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        position: relative;
    }

    .map-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .map-wrapper:hover::before {
        opacity: 1;
    }

    .map-wrapper:hover {
        transform: scale(1.01);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    }

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Business Hours */
    .business-hours {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
        padding: 2rem;
        border-radius: 15px;
        margin-top: 2rem;
        transition: all 0.3s ease;
    }

    .business-hours:hover {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        transform: scale(1.02);
    }

    .business-hours h4 {
        color: #2d3748;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .hours-list {
        list-style: none;
    }

    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 0.7rem 0;
        border-bottom: 1px solid #e2e8f0;
        color: #718096;
        transition: all 0.3s ease;
    }

    .hours-list li:hover {
        color: #667eea;
        padding-left: 10px;
    }

    .hours-list li:last-child {
        border-bottom: none;
    }

    .hours-list .day {
        font-weight: 600;
        color: #2d3748;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .contact-container {
            grid-template-columns: 1fr;
        }

        .contact-hero h1 {
            font-size: 2.8rem;
        }

        .contact-methods {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .contact-hero h1 {
            font-size: 2.2rem;
        }

        .info-card {
            padding: 2rem;
        }

        .map-wrapper {
            height: 350px;
        }

        .contact-card {
            padding: 2rem;
        }
    }