    /* File name: contact.css--Animated Background Elements */
    .contact-page {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    
   
    .contact-bg-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }
    
    .contact-bg-circle {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(26, 110, 115, 0.03), rgba(255, 222, 89, 0.03));
        animation: float 20s infinite ease-in-out;
    }
    
    .contact-bg-circle-1 {
        width: 500px;
        height: 500px;
        top: -200px;
        right: -100px;
        animation-delay: 0s;
    }
    
    .contact-bg-circle-2 {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -100px;
        animation-delay: 5s;
    }
    
    .contact-bg-circle-3 {
        width: 300px;
        height: 300px;
        top: 40%;
        left: 20%;
        animation-delay: 10s;
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(20px, -20px) rotate(5deg); }
        50% { transform: translate(-20px, 20px) rotate(-5deg); }
        75% { transform: translate(20px, 20px) rotate(3deg); }
    }
    
    /* Page Header */
    .contact-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }
    
    .contact-header .section-subtitle {
        display: inline-block;
        background: rgba(26, 110, 115, 0.1);
        color: #1a6e73;
        padding: 8px 25px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
        backdrop-filter: blur(5px);
    }
    
    .contact-header h1 {
        font-size: 3.5rem;
        color: #1e293b;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .contact-header h1 span {
        color: #ffde59;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        position: relative;
        display: inline-block;
    }
    
    .contact-header h1 span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(255, 222, 89, 0.3);
        z-index: -1;
        border-radius: 10px;
    }
    
    .contact-header p {
        color: #64748b;
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }
    
    /* Contact Form Section */
    .contact-form-section {
        background: white;
        border-radius: 30px;
        padding: 50px;
        box-shadow: 0 20px 40px rgba(26, 110, 115, 0.1);
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
        border: 1px solid rgba(26, 110, 115, 0.1);
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .form-header h2 {
        font-size: 2.2rem;
        color: #1e293b;
        margin-bottom: 10px;
    }
    
    .form-header h2 span {
        color: #1a6e73;
    }
    
    .form-header p {
        color: #64748b;
    }
    
    .contact-form {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 18px 25px;
        border: 2px solid #e2e8f0;
        border-radius: 50px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8fafc;
    }
    
    .form-group textarea {
        border-radius: 30px;
        resize: vertical;
        min-height: 150px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #1a6e73;
        outline: none;
        box-shadow: 0 0 0 4px rgba(26, 110, 115, 0.1);
        background: white;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #94a3b8;
    }
    
    .submit-btn {
        background: linear-gradient(135deg, #1a6e73, #0e4a4f);
        color: white;
        border: none;
        padding: 18px 45px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(26, 110, 115, 0.2);
    }
    
    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(26, 110, 115, 0.3);
    }
    
    .submit-btn i {
        transition: transform 0.3s ease;
    }
    
    .submit-btn:hover i {
        transform: translateX(5px);
    }
    
    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }
    
    /* Loading Spinner */
    .loading-spinner {
        display: none;
        text-align: center;
        margin-top: 20px;
    }
    
    .loading-spinner img {
        width: 50px;
        height: 50px;
    }
    
    /* Success Lightbox */
    .success-lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
    }
    
    .success-lightbox.active {
        display: flex;
    }
    
    .lightbox-content {
        background: white;
        padding: 50px 40px;
        border-radius: 30px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        position: relative;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        animation: lightboxPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    @keyframes lightboxPop {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
    
    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: #f1f5f9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #64748b;
    }
    
    .lightbox-close:hover {
        background: #1a6e73;
        color: white;
        transform: rotate(90deg);
    }
    
    .lightbox-gif {
        margin-bottom: 30px;
    }
    
    .lightbox-gif img {
        max-width: 150px;
        height: auto;
    }
    
    .lightbox-message {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 15px;
        font-weight: 600;
        line-height: 1.6;
    }
    
    .lightbox-submessage {
        color: #64748b;
        margin-bottom: 30px;
        font-size: 1rem;
    }
    
    .lightbox-btn {
        background: #1a6e73;
        color: white;
        border: none;
        padding: 15px 45px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .lightbox-btn:hover {
        background: white;
        color: #1a6e73;
        border-color: #1a6e73;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(26, 110, 115, 0.2);
    }
    
    /* ===== FIXED CONTACT GRID WITH PROPER ALIGNMENT ===== */
    .contact-grid {
        display: grid;
        grid-template-columns: 1.2fr 1.8fr; /* Better ratio for alignment */
        gap: 40px;
        position: relative;
        z-index: 1;
        align-items: start; /* Align both columns at the top */
    }
    
    /* Left Column - Contact Info Card */
    .contact-info-card {
        background: white;
        border-radius: 30px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(26, 110, 115, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        height: auto; /* Changed from fit-content to auto */
        position: relative;
        top: 0;
        width: 100%; /* Ensure full width */
    }
    
    .contact-info-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-info-header h2 {
        font-size: 2rem;
        color: #1e293b;
        margin-bottom: 10px;
    }
    
    .contact-info-header h2 span {
        color: #1a6e73;
    }
    
    .contact-info-header p {
        color: #64748b;
        font-style: italic;
    }
    
    .contact-details-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .contact-detail-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        background: rgba(26, 110, 115, 0.03);
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 1px solid rgba(26, 110, 115, 0.05);
    }
    
    .contact-detail-item:hover {
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 15px 30px rgba(26, 110, 115, 0.1);
        border-color: rgba(26, 110, 115, 0.1);
    }
    
    .detail-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #1a6e73, #0e4a4f);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .detail-content h3 {
        font-size: 1.2rem;
        color: #1e293b;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .detail-content p,
    .detail-content a {
        color: #64748b;
        line-height: 1.6;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
    }
    
    .detail-content a:hover {
        color: #1a6e73;
    }
    
    /* Right Column Container */
    .right-column {
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: auto;
        width: 100%; /* Ensure full width */
    }
    
    /* Map Card */
    .map-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(26, 110, 115, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%; /* Ensure full width */
    }
    
    .map-header {
        background: linear-gradient(135deg, #1a6e73, #0e4a4f);
        color: white;
        padding: 25px 30px;
    }
    
    .map-header h3 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .map-header p {
        opacity: 0.9;
        font-size: 0.95rem;
    }
    
    .map-container {
        width: 100%;
        height: 450px;
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Hours Card */
    .hours-card {
        background: linear-gradient(135deg, #1a6e73, #0e4a4f);
        border-radius: 30px;
        padding: 30px;
        color: white;
        position: relative;
        overflow: hidden;
        margin-top: 0; /* Removed margin-top since we're using gap */
        width: 100%; /* Ensure full width */
    }
    
    .hours-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }
    
    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    .hours-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }
    
    .hours-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        position: relative;
        z-index: 1;
    }
    
    .hour-item {
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(5px);
    }
    
    .hour-item .day {
        font-weight: 600;
        margin-bottom: 5px;
        color: #ffde59;
    }
    
    .hour-item .time {
        font-size: 0.9rem;
        opacity: 0.9;
    }
    
    .support-badge {
        margin-top: 20px;
        text-align: center;
        padding: 10px;
        background: rgba(255, 222, 89, 0.2);
        border-radius: 50px;
        font-size: 0.95rem;
        position: relative;
        z-index: 1;
    }
    
    .support-badge i {
        color: #ffde59;
        margin-right: 8px;
    }
    
    .social-connect {
        margin-top: 30px;
        text-align: center;
    }
    
    .social-connect h3 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 20px;
    }
    
    .social-links-large {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .social-links-large a {
        width: 60px;
        height: 60px;
        background: rgba(26, 110, 115, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1a6e73;
        font-size: 1.8rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(26, 110, 115, 0.2);
    }
    
    .social-links-large a:hover {
        background: #1a6e73;
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(26, 110, 115, 0.3);
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .contact-grid {
            grid-template-columns: 1fr; /* Stack on tablet */
            gap: 30px;
        }
        
        .contact-header h1 {
            font-size: 3rem;
        }
        
        .map-container {
            height: 400px;
        }
        
        .contact-form-section {
            padding: 40px 30px;
        }
        
        /* Maintain order on mobile */
        .contact-info-card {
            order: 1;
        }
        
        .right-column {
            order: 2;
        }
    }
    
    @media (max-width: 768px) {
        .contact-page {
            padding: 100px 20px 60px;
        }
        
        .contact-header h1 {
            font-size: 2.5rem;
        }
        
        .contact-header p {
            font-size: 1rem;
            padding: 0 20px;
        }
        
        .contact-form-section {
            padding: 30px 20px;
        }
        
        .form-header h2 {
            font-size: 1.8rem;
        }
        
        .contact-info-card {
            padding: 30px 20px;
        }
        
        .contact-detail-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 25px 15px;
        }
        
        .detail-icon {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
        
        .hours-grid {
            grid-template-columns: 1fr;
        }
        
        .map-header {
            padding: 20px;
        }
        
        .map-container {
            height: 350px;
        }
        
        .lightbox-content {
            padding: 40px 20px;
        }
        
        .lightbox-message {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 480px) {
        .contact-header h1 {
            font-size: 2rem;
        }
        
        .contact-info-header h2 {
            font-size: 1.6rem;
        }
        
        .social-links-large {
            gap: 15px;
        }
        
        .social-links-large a {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }
        
        .form-group input,
        .form-group textarea {
            padding: 15px 20px;
        }
        
        .submit-btn {
            width: 100%;
            justify-content: center;
        }
    }