/* ===========================
   Base Styles
=========================== */
body {
    background-color: #ffffff;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.custom-blue {
    color: #244F80;
}

/* ===========================
   Sections & Layout
=========================== */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #1f2732;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.sub-topic-label,
.sub-topic-select {
    display: none;
}

/* ===========================
   Form Styles
=========================== */
.contact-form label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    font-size: 1rem;
    padding: 10px 12px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    transition: 0.3s;
    background-color: #f9f9f9;
    color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #244F80;
    box-shadow: 0 0 6px rgba(36, 79, 128, 0.3);
}

.contact-form textarea {
    height: 200px;
    resize: vertical;
}

button {
    background-color: #244F80;
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

button:hover {
    background-color: #1f3b63;
}

/* ===========================
   Form Rows
=========================== */
.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row div {
    flex: 1;
}

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
    }
}

/* ===========================
   Video Section
=========================== */
.photo-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.photo-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    filter: brightness(50%);
}

.photo-section .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 90%;
    max-width: 1000px;
}

.photo-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

/* ===========================
   Map & Contact Details
=========================== */
.map-contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.map-section,
.contact-details {
    flex: 1;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
}

.map-section {
    background-color: #fff;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.map-section h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-details {
    background-color: #1f2732;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details h6 {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ===========================
   Social Icons
=========================== */
.follow-company-icon2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.follow-company-icon2 a {
    font-size: 1.5rem;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    transition: 0.3s;
}

.follow-company-icon2 a:hover {
    color: #84A4FC;
}

/* ===========================
   Responsive Adjustments
=========================== */
@media (max-width: 991px) {
    .map-contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .photo-section h1 {
        font-size: 2.2rem;
    }

    .follow-company-icon2 {
        justify-content: center;
        gap: 15px;
    }
}
