* {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    overflow-x: hidden;
}

button, input, textarea {
    cursor: pointer;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #FF6F61;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1000;
}

.menu {
    display: flex;
}

.menu ul {
    display: flex;
    gap: 30px;
}

.menu a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu a:hover, .menu a.active {
    color: #FF6F61;
    transform: scale(1.05);
}

.contact-link {
    color: #FF6F61;
    border: 2px solid #FF6F61;
    border-radius: 20px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    background-color: #444;
    text-decoration: none;
}

.contact-link:hover {
    background-color: #FF6F61;
    color: #fff;
    border-color: #fff;
}

/* Burger Menu Styling */
.burger {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.burger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active .bar:nth-child(2) {
    opacity: 0;
}

.burger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #26A69A 0%, #FF6F61 100%);
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,176C384,171,480,181,576,192C672,203,768,213,864,213.3C960,213,1056,203,1152,192C1248,181,1344,171,1392,165.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    animation: wave 10s linear infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1440px 0; }
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0.5; }
    50% { transform: scale(1); opacity: 0; }
    100% { transform: scale(0.5); opacity: 0.5; }
}

.hero-content {
    color: #fff;
    max-width: 700px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form h2, .contact-info h2 {
    font-size: 28px;
    color: #26A69A;
    margin-bottom: 20px;
    position: relative;
}

.contact-form h2::after, .contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FF6F61;
    border-radius: 2px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #26A69A;
    box-shadow: 0 0 5px rgba(38, 166, 154, 0.3);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #FF6F61;
    color: #fff;
    padding: 12px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
}

.submit-btn:hover {
    background-color: #e65b50;
    transform: scale(1.05);
}

.success-message {
    display: none;
    margin-top: 20px;
    text-align: center;
    color: #26A69A;
    font-weight: bold;
    animation: fadeIn 1s ease-out;
}

.success-message span {
    background-color: #e0f7fa;
    padding: 10px 20px;
    border-radius: 5px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.contact-info .info-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 0;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.contact-info .info-item:hover::after {
    opacity: 1;
}

.contact-info .info-item svg {
    flex-shrink: 0;
}

.contact-info .info-item p {
    font-size: 16px;
    color: #555;
}

.map-placeholder {
    margin-top: 30px;
    text-align: center;
    position: relative;
    background-color: #e0f7fa;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-placeholder:hover {
    transform: scale(1.02);
}

.map-marker {
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z" fill="%23FF6F61"/></svg>') no-repeat center;
    background-size: contain;
    margin: 0 auto 10px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.map-placeholder p {
    color: #26A69A;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        gap: 30px;
    }

    .contact-form, .contact-info {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #1a1a1a;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: left 0.3s ease-in-out;
    }

    .menu.active {
        left: 0;
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .menu li {
        margin: 10px 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .menu li:nth-child(1) { transition-delay: 0.1s; }
    .menu li:nth-child(2) { transition-delay: 0.2s; }
    .menu li:nth-child(3) { transition-delay: 0.3s; }
    .menu li:nth-child(4) { transition-delay: 0.4s; }
    .menu li:nth-child(5) { transition-delay: 0.5s; }
    .menu li:nth-child(6) { transition-delay: 0.6s; }
    .menu li:nth-child(7) { transition-delay: 0.7s; }

    .menu a {
        font-size: 20px;
    }

    .burger {
        display: block;
    }

    .contact-link {
        margin-top: 20px;
    }

    .contact-hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .contact-form h2, .contact-info h2 {
        font-size: 24px;
    }

    .form-group input, .form-group textarea {
        font-size: 12px;
    }

    .submit-btn {
        font-size: 14px;
    }

    .contact-info .info-item p {
        font-size: 14px;
    }
}