<style >
/* Success Modal Styles */
.success-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.success-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745, #20c997);
}

.success-animation {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.success-checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #28a745;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #28a745;
    animation: checkmark-fill 0.4s ease-in-out 0.4s forwards, checkmark-scale 0.3s ease-in-out 0.9s both;
    position: relative;
}

    .success-checkmark .check-icon {
        width: 100px;
        height: 100px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 3px solid #28a745;
    }

        .success-checkmark .check-icon::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }

        .success-checkmark .check-icon::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: checkmark-rotate 4.25s ease-in;
        }

        .success-checkmark .check-icon::before,
        .success-checkmark .check-icon::after {
            content: '';
            height: 100px;
            position: absolute;
            background: #ffffff;
            transform: rotate(-45deg);
        }

    .success-checkmark .icon-line {
        height: 3px;
        background-color: #28a745;
        display: block;
        border-radius: 2px;
        position: absolute;
        z-index: 10;
    }

        .success-checkmark .icon-line.line-tip {
            top: 46px;
            left: 14px;
            width: 25px;
            transform: rotate(45deg);
            animation: checkmark-icon-tip 0.75s 1.2s forwards;
        }

        .success-checkmark .icon-line.line-long {
            top: 38px;
            right: 8px;
            width: 47px;
            transform: rotate(-45deg);
            animation: checkmark-icon-long 0.75s 1.35s forwards;
        }

.success-title {
    color: #28a745;
    font-weight: 700;
    font-size: 1.75rem;
}

.success-message {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.success-details {
    padding: 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.btn-success-modal {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

    .btn-success-modal:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
        color: white;
    }

/* Error Modal Styles */
.error-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

    .error-modal-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #ffc107, #fd7e14);
    }

.error-title {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.75rem;
}

.error-message {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-error-modal {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

    .btn-error-modal:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
        color: white;
    }

/* Animations */
@@keyframes checkmark-fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #28a745;
    }
}

@@keyframes checkmark-scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@@keyframes checkmark-icon-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@@keyframes checkmark-icon-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/* Button Loading State */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

</style >
<style >
/* General Body */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, #003333 0%, #004d4d 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

    .contact-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 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
        animation: float 20s linear infinite;
    }

    .contact-header h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    .contact-header .highlight {
        background: linear-gradient(135deg, #ffc107, #ff8800);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .contact-header .lead {
        font-size: 1.3rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

/* Main Section */
.main-contact {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .contact-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #ffc107, #ff8800);
    }

    .contact-form-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

.form-section-title {
    color: #003333;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

    .form-control:focus, .form-select:focus {
        border-color: #ffc107;
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
        transform: translateY(-1px);
    }

    .form-control::placeholder {
        color: #999;
        font-style: italic;
    }

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #ffc107, #ff8800);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
        background: linear-gradient(135deg, #ff8800, #ffc107);
    }

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

.contact-info-title {
    color: #003333;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .contact-info-item:hover {
        background: #f8f9fa;
        transform: translateX(5px);
    }

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff8800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

    .contact-icon i {
        color: white;
        font-size: 1.2rem;
    }

.contact-details h6 {
    font-weight: 700;
    color: #003333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    color: #666;
    text-decoration: none;
}

    .social-btn:hover {
        border-color: #ffc107;
        background: linear-gradient(135deg, #ffc107, #ff8800);
        color: white;
        transform: translateY(-2px);
    }

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 350px;
    transition: all 0.3s ease;
}

    .map-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .map-container iframe {
        border: none;
        width: 100%;
        height: 100%;
    }

/* Success Alert */
.alert-success {
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 4px solid #28a745;
    font-weight: 500;
}

/* Validation Styling */
.text-danger {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

/* Animations */
@@keyframes float {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive Design */
@@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0 50px;
    }

        .contact-header h1 {
            font-size: 2.5rem;
        }

    .main-contact {
        padding: 60px 0;
    }

    .contact-info-item {
        margin-bottom: 1.5rem;
    }

    .map-container {
        height: 280px;
        margin-top: 1.5rem;
    }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffc107, #ff8800);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #ff8800, #ffc107);
    }

</style >
