.main-body {
    padding-bottom: 30px;
    background-image: url('../images/smenu-bg.png');
}

.main-body .body-banner {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.body-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #D9D9D9;
    z-index: 1;
    opacity: 70%;
}

.main-body .body-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main-body .body-banner p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 64px;
    margin: 0;
    font-family: 'Inria Serif';
    z-index: 2;
}

.main-content {
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

.main-content-title {
    max-width: 520px;
    margin: 10px 0 32px;
}

.title-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.title-label .line {
    width: 36px;
    height: 1px;
    background-color: #000;
}

.title-label .label-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inria Sans';
    color: #000;
}

.main-content-title h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
    font-family: 'Inria Sans';
}

/* contact form */
.contact-form-section {
    margin: 20px 0;
    padding: 20px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.contact-form-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

/* Left Side - Contact Form */
.contact-form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-left .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #014F86 0%, #0277BD 100%);
    color: white;
    border-radius: 50px;
    font-family: 'Habibi', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(1, 79, 134, 0.25);
    width: fit-content;
}

.contact-form-left .section-badge i {
    font-size: 14px;
}

.contact-form-left h3 {
    font-size: 48px;
    font-family: 'Habibi', serif;
    font-weight: 600;
    color: #014F86;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-form-left .title-accent {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #014F86 0%, #0277BD 100%);
    border-radius: 3px;
    margin-bottom: 25px;
    position: relative;
}

.contact-form-left .title-accent::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #014F86;
    border-radius: 50%;
}

.contact-form-left .intro-text {
    font-family: 'Inria Serif', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: 'Habibi', serif;
    font-size: 15px;
    font-weight: 600;   
    color: #014F86;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.form-group label i {
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(1, 79, 134, 0.2);
    border-radius: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #014F86;
    background: white;
    box-shadow: 0 5px 20px rgba(1, 79, 134, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #014F86 0%, #0277BD 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Habibi', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(1, 79, 134, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(1, 79, 134, 0.4);
}

.submit-btn span,
.submit-btn i {
    position: relative;
    z-index: 2;
}

.submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Quick Contact Info */
.contact-info-quick {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: rgba(1, 79, 134, 0.05);
    border-radius: 15px;
    border-left: 4px solid #014F86;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    color: #333;
}

.quick-contact-item i {
    font-size: 18px;
    color: #014F86;
}

/* Right Side - Image */
.contact-form-right {
    flex: 1;
    position: relative;
}

.contact-image-container {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 79, 134, 0.2);
}

.contact-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.contact-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 79, 134, 0.4) 0%, rgba(1, 79, 134, 0.1) 100%);
    pointer-events: none;
}

/* Floating Quote Card */
.contact-floating-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-floating-card i {
    font-size: 24px;
    color: #014F86;
    margin-bottom: 15px;
    display: block;
}

.contact-floating-card p {
    font-family: 'Inria Serif', serif;
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.contact-floating-card span {
    font-family: 'Habibi', serif;
    font-size: 14px;
    font-weight: 600;
    color: #014F86;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-form-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }
    
    .contact-form-left h3 {
        font-size: 36px;
    }
    
    .contact-image-container {
        min-height: 400px;
    }
    
    .contact-info-quick {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-floating-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-form-left h3 {
        font-size: 32px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
    }
    
    .submit-btn {
        padding: 16px 35px;
        font-size: 15px;
    }
    
    .contact-image-container {
        min-height: 350px;
    }
    
    .contact-floating-card p {
        font-size: 16px;
    }
}

/* Fix CF7 */
/* Fix CF7 wrap */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.form-group {
    margin-bottom: 10px;
}