/* ===== 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;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    width: 260px;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Desktop nav */
nav {
    margin-left: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

/* 🔥 Remove underline completely */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active {
    text-decoration: none;
    color: #2aa845;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .logo img {
        width: 120px;
    }

    nav {
        display: none;
        perspective: 1000px; /* 🔥 enables 3D */
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        z-index: 1100;
    }

    /* 🔥 HALF SCREEN 3D MENU */
    nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60vh;
        background: #fff;
        z-index: 1000;

        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;

        transform-origin: top;
        animation: drop3D 0.5s ease forwards;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 22px;
    }

    .nav-links a {
        display: block;
        font-size: 18px;
        padding: 10px 0;

        /* 🔥 subtle hover/tap 3D */
        transition: transform 0.3s ease, letter-spacing 0.3s ease;
    }

    .nav-links a:active {
        transform: scale(0.95) translateZ(-10px);
    }

    /* 🔥 3D DROP ANIMATION */
    @keyframes drop3D {
        0% {
            transform: rotateX(-90deg) translateY(-50px);
            opacity: 0;
        }
        60% {
            transform: rotateX(20deg);
            opacity: 1;
        }
        100% {
            transform: rotateX(0);
        }
    }
}
/* ===== HERO ===== */
.contact-hero{
    position: relative;
    padding:120px 20px;
    text-align:center;
    color:#ffffff;

    background:url("images/Front_page_background.jpeg") center/cover no-repeat;
}

/* Overlay */

.contact-hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.55);
}

/* Keep text above overlay */

.contact-hero h1,
.contact-hero p{
    position:relative;
    z-index:2;
}

.contact-hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.contact-hero h1 span{
    color:#22c55e;
}

.contact-hero p{
    max-width:720px;
    margin:auto;
    font-size:18px;
    line-height:1.7;
    opacity:0.95;
}

/* ================= MOBILE VIEW ================= */

@media (max-width:768px){

.contact-hero{
    padding:80px 20px;
}

.contact-hero h1{
    font-size:30px;
}

.contact-hero p{
    font-size:16px;
}

}
/* ================= 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;
}

.info-item a {
    color: #25D366; /* WhatsApp green */
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

/* 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;
}

}



/* ===== 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;
    }
}
