/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: #eef3e7;
    color: #333;
    line-height: 1.6;
    text-align: center; /* center all text on mobile-friendly devices */
}

section,
header,
footer {
    max-width: 1200px;
    margin: auto;
}

/* ================= HERO FULL WIDTH FIX ================= */
.hero {
    max-width: 100% !important;
    margin: 0 !important;
}

/* ================= FOOTER FULL WIDTH FIX ================= */
.main-footer {
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* ================= HEADER ================= */
header {
    background: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    margin: 20px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    flex-wrap: wrap;
}

.logo {
    height: 70px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.contact-no {
    margin-left: 20px;
    font-weight: bold;
    color: #2e7d32;
}

.btn {
    background: #2e7d32;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #256428;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    z-index: 1000;
}

/* ================= HERO ================= */
.hero {
    height: 90vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
}

.hero img.active {
    opacity: 1;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* ================= ABOUT ================= */
.about,
.about-us-container {
    display: flex;
    padding: 60px 20px;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about img,
.about-us img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

/* About section text alignment */
.about-text {
    flex: 1;
    text-align: left; /* paragraphs left-aligned */
}

.about-text h2 {
    text-align: center; /* heading centered */
    margin-bottom: 20px;
}

/* ================= LAYOUT ================= */
.layout {
    padding: 30px 10%;
    background: #f9f9f9;
}

.layout h2 {
    text-align: center;
    margin-bottom: 40px;
}

.layout-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.layout img {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
}

.layout-text {
    max-width: 500px;
}

.layout-text ul {
    list-style: none;
    margin: 15px 0;
}

/* ================= CARDS ================= */
.cards {
    padding: 60px 20px;
}

.cards h2 {
    text-align: center;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    border-radius: 20px;
    flex: 1;
    min-width: 250px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ================= GALLERY ================= */
.gallery {
    padding: 60px 20px;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ================= FEATURES ================= */
.features {
    padding: 60px 20px;
    background: #dfead7;
    text-align: center;
}

.feature-box {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ================= TESTIMONIAL ================= */
.testimonials {
    padding: 60px 20px;
    text-align: center;
}

.testimonial {
    max-width: 600px;
    margin: 20px auto;
    font-style: italic;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.testimonial.active {
    display: block;
}

/* ================= OTHER PROJECTS ================= */
.other-projects {
    padding: 60px 20px;
    text-align: center;
}

.other-projects h2 {
    margin-bottom: 40px;
}

.project-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.project-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3 {
    margin: 15px 0 10px;
}

.project-card p {
    padding: 0 15px 15px;
}

/* ================= CTA ================= */
.cta {
    background: #2e7d32;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
}

/* ================= CONTACT ================= */
.contact-section {
    text-align: center;
}

.contact,
.contact-container {
    display: flex;
    padding: 60px 20px;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-left,
.contact-right {
    text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-right input,
.contact-right textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.contact-right,
.contact-left {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-right button {
    background: #2c7a4b;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #25663f;
    transform: translateY(-2px);
}

/* ================= MAP ================= */
.map-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 50px 15px;
}

.map-section h2 {
    text-align: center;
    padding: 20px 0;
}

.map-section iframe {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    border: 0;
    border-radius: 12px;
}

/* ================= FOOTER ================= */
footer,
.main-footer {
    background: #2e7d32;
    color: #fff;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 20px;
    text-align: center;
}

.footer-col h3 {
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #c8e6c9;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #e8f5e9;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c8e6c9;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #c8e6c9;
    color: #2e7d32;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-bottom a {
    color: #e8f5e9;
    margin-left: 15px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #c8e6c9;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        margin-top: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    nav.active {
        display: flex;
    }

    nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    header .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 60vh;
        min-height: 300px;
    }

    .hero-text {
        left: 15px;
        right: 15px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .map-section iframe {
        height: 280px;
    }

    .about,
    .layout-container,
    .card-container,
    .feature-box,
    .project-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-container {
        text-align: center;
    }

    section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* ================= TULIP CENTER HIGHLIGHT ================= */
.center-highlight {
    background: #fff;
    margin: 40px auto;
    padding: 35px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.center-highlight h2 {
    color: #2e7d32;
    margin-bottom: 25px;
    font-size: 2rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.highlight-grid div {
    background: #eef3e7;
    padding: 18px;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
}

.highlight-grid div:hover {
    transform: translateY(-5px);
}

.highlight-grid strong {
    font-size: 18px;
    color: #2e7d32;
}

/* ================= TULIP CONTENT SECTION ================= */
.mega-section {
    padding: 60px 20px;
}

.mega-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.mega-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.mega-text h3 {
    color: #2e7d32;
    margin-top: 25px;
    margin-bottom: 10px;
}

.mega-text ul {
    padding-left: 18px;
}

.mega-text ul li {
    margin-bottom: 6px;
}

/* LOCATION GRID FIX */
.mega-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mega-grid ul {
    list-style: none;
    padding: 0;
}

/* IMAGE */
.mega-image {
    flex: 1;
    min-width: 300px;
}

.mega-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
    .mega-container {
        flex-direction: column;
        text-align: center;
    }

    .mega-text {
        text-align: center;
    }

    .mega-grid {
        flex-direction: column;
        align-items: center;
    }
}
