/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #111;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:260px;
    height:auto;
}

/* Tablet */
@media (max-width:768px){
    .logo img{
        width:130px;
    }
}

/* Mobile */
@media (max-width:480px){
    .logo img{
        width:100px;
    }
}
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
    color: #2aa845;
}

/* ===== HERO ===== */
.contact-hero {
    background: #f8fdf9;
    padding: 100px 20px 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.contact-hero span {
    color: #2aa845;
}

.contact-hero p {
    font-size: 18px;
    color: #555;
}

/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:110px 20px;
    background:#f8fafc;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* GRID */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}



/* ================= LEFT TEXT ================= */

.contact-text h2{
    font-size:34px;
    margin-bottom:15px;
    color:#111827;
}

.contact-text p{
    color:#555;
    line-height:1.7;
    margin-bottom:30px;
}



/* CONTACT INFO */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* ITEM */

.info-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

/* ICON */

.info-item i{
    font-size:22px;
    color:#22c55e;
    margin-top:3px;
}

/* TEXT */

.info-item h4{
    font-size:16px;
    margin-bottom:4px;
    color:#111827;
}

.info-item p{
    color:#555;
}



/* ================= RIGHT CARDS ================= */

.contact-cards{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* CARD */

.contact-card{
    background:#ffffff;
    padding:35px;
    border-radius:14px;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    transition:all .35s ease;
}

.contact-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* ICON */

.contact-card i{
    font-size:34px;
    color:#22c55e;
    margin-bottom:14px;
}

/* TITLE */

.contact-card h3{
    font-size:22px;
    margin-bottom:10px;
    color:#111827;
}

/* TEXT */

.contact-card p{
    color:#555;
    line-height:1.7;
}



/* HIGHLIGHT CARD */

.contact-card.highlight{
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:white;
}

.contact-card.highlight i{
    color:white;
}

.contact-card.highlight h3{
    color:white;
}

.contact-card.highlight p{
    color:white;
}



/* ================= MOBILE VIEW ================= */

@media (max-width:768px){

.contact-grid{
grid-template-columns:1fr;
gap:40px;
}

.contact-text h2{
font-size:26px;
}

.contact-card{
padding:28px;
}

}

/* ================= ENQUIRY SECTION ================= */

.enquiry-section{
    padding:100px 20px;
    background:#ffffff;
}

.enquiry-container{
    max-width:700px;
    margin:auto;
}

.enquiry-container h2{
    text-align:center;
    font-size:32px;
    margin-bottom:35px;
}


/* FORM */

#enquiryForm{
    display:flex;
    flex-direction:column;
    gap:20px;
}


/* INPUTS */

.form-group input,
.form-group textarea{

    width:100%;
    padding:14px 16px;

    border:1px solid #ddd;
    border-radius:8px;

    font-size:15px;
    outline:none;

    transition:all .3s ease;
}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#22c55e;
    box-shadow:0 0 0 2px rgba(34,197,94,0.2);
}


/* BUTTON */

.submit-btn{

    background:#22c55e;
    color:white;

    border:none;
    padding:14px;

    font-size:16px;
    border-radius:8px;

    cursor:pointer;
    transition:all .3s ease;
}

.submit-btn:hover{
    background:#16a34a;
}


/* STATUS */

#formStatus{
    text-align:center;
    margin-top:10px;
    font-weight:500;
}


/* ================= MOBILE VIEW ================= */

@media (max-width:768px){

.enquiry-container h2{
font-size:26px;
}

.form-group input,
.form-group textarea{
font-size:14px;
}

.submit-btn{
font-size:15px;
}

}

/* ================= MAP SECTION ================= */

.map-section{
    padding:100px 20px;
    background:#f8fafc;
}

.map-section h2{
    text-align:center;
    font-size:32px;
    margin-bottom:30px;
}

.map-container{
    width:100%;
    border-radius:12px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe{
    width:100%;
    height:400px;
    border:0;
}


/* ================= MOBILE VIEW ================= */

@media (max-width:768px){

.map-section h2{
font-size:26px;
}

.map-container iframe{
height:300px;
}

}

/* ===== FOOTER ===== */
.footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 30px;
    }
}
