﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #008B8B 0%, #006f6f 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23008B8B' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,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>") no-repeat bottom;
        background-size: cover;
        opacity: 1;
    }


.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .contact-info-card i {
        font-size: 3rem;
        color: #667eea;
        margin-bottom: 20px;
    }

    .contact-info-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .contact-info-card p {
        color: #6c757d;
        margin-bottom: 0;
        font-size: 1.1rem;
    }

    .contact-info-card a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
    }

        .contact-info-card a:hover {
            color: #764ba2;
        }

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.form-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

    .form-container h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .form-container p {
        color: #6c757d;
        margin-bottom: 40px;
        font-size: 1.1rem;
    }

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-control, .form-select {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    }

    .form-control::placeholder {
        color: #adb5bd;
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }

.required {
    color: #ff6b6b;
}

/* Map Section */
.map-section {
    padding: 0;
    height: 400px;
    background: #e9ecef;
}

.map-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

    .footer h5 {
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

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

        .footer ul li {
            margin-bottom: 10px;
        }

            .footer ul li a {
                color: rgba(255,255,255,0.7);
                text-decoration: none;
                transition: all 0.3s ease;
            }

                .footer ul li a:hover {
                    color: white;
                    padding-left: 5px;
                }

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        color: #667eea;
        transform: scale(1.2);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #c3e6cb;
}

    .success-message i {
        font-size: 1.5rem;
        margin-right: 10px;
    }

.popup-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 14px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 99999;
    font-size: 16px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

        .form-container h2 {
            font-size: 2rem;
        }

    .btn-submit {
        padding: 12px 30px;
    }
}
