.contact-main-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 55, 95, 0.4);
    z-index: -1;
}

.contact-container {
    position: relative;
    z-index: 1;
    margin-top: 120px;
    padding: 40px 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Contact Card */
.contact-card {
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    
}

/* Two Column Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

/* Left Side - Contact Info */
.contact-info {
    background: #00375f30;
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-text {
    flex: 1;
}

.contact-text .label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
    display: block;
}

.contact-text .value {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-text .value a {
    color: white;
    text-decoration: none;
}

.contact-text .value a:hover {
    opacity: 0.8;
}

/* Right Side - Contact Form */
.contact-form-section {
    padding: 60px 50px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.4);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #00375f;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.form-control {
    width: 93%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f9f9f9;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #00375f;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 55, 95, 0.1);
}

.form-control.textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #00375f;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border:1px solid rgba(255, 255, 255, 0.4);
    font-family: inherit;
}

.submit-btn:hover {
    background: #fff;
    border:1px solid #fff;
    color:#00375f;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0;
    font-size: 1rem;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-header {
    background: #00375f;
    color: white;
    padding: 25px 40px;
    text-align: center;
}

.map-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.map-container {
    position: relative;
    height: 270px;
    background: #f5f5f5;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 40px 30px;
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-container {
        margin-top: 100px;
        padding: 20px 15px;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .contact-icon {
        margin: 0 0 15px 0;
    }
    
    .map-header {
        padding: 20px;
    }
    
    .map-container {
        height: 300px;
    }
    .form-control {
    width: 89%;}
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 18px;
    }
}

