*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #4caf50;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar select {
    padding: 5px;
    border-radius: 4px;
    border: none;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #e91e63;
}

.search input {
    width: 400px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.icons span {
    margin-left: 10px;
    background: #e91e63;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 12px;
}

/* NAVBAR */
.navbar {
    display: flex;
    gap: 25px;
    padding: 12px 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar a:hover {
    color: #e91e63;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
}

/* Banner */
.contact-banner {
    height: 150px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1596462502278-27bfdc403348');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-banner h1 {
    color: #fff;
    font-size: 32px;
}

/* Layout */
.contact-container {
    display: flex;
    gap: 40px;
    padding: 40px 8%;
}

/* LEFT */
.contact-left {
    flex: 2;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
}

.contact-left h2 {
    color: #e91e63;
    margin-bottom: 15px;
}

.info-box {
    background: #ffe5e9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-left h3 {
    margin-bottom: 15px;
}

/* FORM */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* BUTTON */
.submit-btn {
    margin-top: 15px;
    padding: 12px 25px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #c2185b;
}

/* RIGHT */
.contact-right {
    flex: 1;
}

.contact-right h2 {
    color: #e91e63;
    margin-bottom: 15px;
}

.detail {
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-right h3 {
    margin-top: 20px;
}

.contact-right p {
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

/* ===== REQUIREMENTS FIX FINAL ===== */

/* Section Title */
.section-title {
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Label */
.label-title {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

/* Checkbox layout EXACT like screenshot */
.req-options {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* IMPORTANT FIX */
.req-options label {
    display: inline-block;   /* inline না, inline-block */
    margin-right: 12px;
    white-space: nowrap;
}

/* checkbox spacing */
.req-options input {
    margin-right: 6px;
}

/* textarea */
textarea {
    width: 100%;
    height: 130px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: none;
}

/* captcha */
.captcha-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

/* FINAL BUTTON (override old one) */
.submit-btn {
    margin-top: 10px;
    padding: 12px 30px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.submit-btn:hover {
    background: #c2185b;
}

.call-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    background: red;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.whatsapp-icon {
    position: fixed;
    right: 20px;
    top: 60%;
    background: green;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}

/* FOOTER SECTION */
.footer-section {
    background: #e8c3cc;
    padding: 50px 8%;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT */
.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-left h2 {
    color: #d81b60;
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-left p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* RIGHT */
.footer-right {
    flex: 1;
    min-width: 300px;
}

.footer-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* GRID */
.links-grid {
    display: flex;
    gap: 40px;
}

.links-grid ul {
    list-style: none;
    padding: 0;
}

.links-grid li {
    margin-bottom: 10px;
}

.links-grid a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.links-grid a:hover {
    color: #d81b60;
}

/* HIGHLIGHT LINK */
.highlight {
    color: #d81b60;
    font-weight: 500;
}

* FOOTER */
.footer{
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: #f8f8f8;
}

.footer h4{
    margin-bottom: 10px;
}


/* SOCIAL */
.social{
    padding: 20px 40px;
}

.icons{
    display: flex;
    gap: 12px;
}
.icons i{
    background: #d63384;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

/* Navbar basic */
.dropdown {
    position: relative;
    list-style: none;
}

/* Dropdown box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #eee;
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Links */
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

/* Hover effect */
.dropdown-menu a:hover {
    background: #ddd;
}

/* Divider line */
.dropdown-menu hr {
    margin: 5px 10px;
    border: 0.5px solid #ccc;
}

/* View all style */
.view-all {
    font-weight: bold;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.logo img {
    height: 75px;
    width: 75px;
}

.map-box {
    margin-top: 10px;
    overflow: hidden;
}

.map-box iframe {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}