/* ---------- Base ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f1e8;
    color: #1a1a1a;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* Layout container */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

/* ---------- Navbar ---------- */

.nav-wrapper {
    background: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* Logo */
.logo-img {
    height: 40px;
    width: auto;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a572, #e0c48c);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.logo-sub {
    font-size: 11px;
    color: #e0d8c8;
}

/* Nav links */

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    font-size: 14px;
    color: #f5f5f5;
    position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 16px;
    height: 2px;
    background: #c5a572;
}

.nav-cta {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid #c5a572;
}

.nav-cta.active,
.nav-cta:hover {
    background: #c5a572;
    color: #1a1a1a;
}

/* ---------- Hero ---------- */

.hero-section {
    padding: 60px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: #a48b67;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-text {
    max-width: 420px;
    font-size: 15px;
    color: #5e4a3a;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-primary {
    background: #c5a572;
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #b48c56;
}

.btn-link {
    font-size: 14px;
    color: #5e4a3a;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}

.hero-tags span {
    background: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #e5dcc9;
}

/* Hero images */

.hero-image-wrapper {
    position: relative;
}

.hero-image-main {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-image-main img {
    height: 100%;
    object-fit: cover;
}

.hero-image-floating {
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 55%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
    border: 4px solid #f5f1e8;
}

/* ---------- Sections ---------- */

.section {
    padding: 60px 0;
}

.section-light {
    background: #f9f4eb;
}

.section-dark {
    background: #1a1a1a;
    color: #f5f1e8;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 14px;
    color: #5e4a3a;
}

/* Services */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #5e4a3a;
    margin-bottom: 14px;
}

.service-link {
    font-size: 13px;
    color: #c5a572;
}

/* About snapshot */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.about-image-overlay {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    max-width: 210px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.about-image-overlay h4 {
    font-size: 22px;
    color: #c5a572;
    margin-bottom: 4px;
}

.about-image-overlay p {
    font-size: 12px;
    color: #5e4a3a;
}

.about-content h2 {
    font-size: 26px;
    margin-bottom: 14px;
}

.about-content p {
    font-size: 14px;
    color: #5e4a3a;
    margin-bottom: 12px;
}

.about-call {
    margin-top: 14px;
}

.about-phone-label {
    font-size: 13px;
    color: #5e4a3a;
}

.about-phone {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.gallery-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.gallery-card img {
    height: 170px;
    width: 100%;
    object-fit: cover;
}

.gallery-card h3 {
    font-size: 16px;
    margin: 12px 16px 4px;
}

.gallery-card p {
    font-size: 13px;
    color: #5e4a3a;
    margin: 0 16px 16px;
}

/* Stats */

.stats-section {
    background: #f1e8da;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    text-align: center;
}

.stat-number {
    font-size: 26px;
    font-weight: 600;
    color: #c5a572;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #5e4a3a;
    margin-top: 4px;
}

/* CTA */

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.cta-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 14px;
    color: #d8cfbe;
    max-width: 420px;
}

.btn-outline {
    border-radius: 22px;
    padding: 11px 20px;
    border: 1px solid #c5a572;
    color: #f5f1e8;
    font-size: 14px;
}

.btn-outline:hover {
    background: #c5a572;
    color: #1a1a1a;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer */

.footer {
    background: #111111;
    color: #e1dacb;
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-bottom: 24px;
}

.footer-brand p {
    font-size: 13px;
    margin-top: 10px;
    color: #b6aa95;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    display: block;
    font-size: 13px;
    color: #cfc5b1;
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 14px 0 16px;
    font-size: 12px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ---------- Inner pages ---------- */

.inner-hero {
    padding: 50px 0 30px;
}

.inner-hero.small {
    padding-bottom: 20px;
}

.inner-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.inner-hero-content h1 {
    font-size: 30px;
    margin-bottom: 12px;
}

.inner-hero-content p {
    font-size: 14px;
    color: #5e4a3a;
    max-width: 420px;
}

.inner-hero-image img {
    border-radius: 30px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* About detail grid */

.about-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.about-detail-grid h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-detail-grid p {
    font-size: 14px;
    color: #5e4a3a;
    margin-bottom: 10px;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.contact-grid p {
    font-size: 14px;
    color: #5e4a3a;
    margin-bottom: 8px;
}

/* Booking */

.booking-box {
    max-width: 580px;
    text-align: center;
}

.booking-box p {
    font-size: 14px;
    color: #5e4a3a;
    margin-bottom: 16px;
}

.booking-note {
    font-size: 13px;
    margin-top: 16px;
}
.nav-contact {
    display: none;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
}
/* ---------- WhatsApp Floating ---------- */
.inner-hero-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

/* Make sure parent behaves nicely */
.inner-hero-map {
    width: 100%;
    height: 150%;
    margin-top: 30px;
    overflow: hidden;
}

.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    z-index: 50;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .hero-grid,
    .about-grid,
    .gallery-grid,
    .stats-grid,
    .cta-grid,
    .footer-grid,
    .inner-hero-content,
    .about-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .hero-section {
        padding-top: 40px;
    }

    .hero-image-floating {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-links {
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-grid {
        gap: 26px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .wh-icon-sm {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        object-fit: contain;
        display: inline-block;
    }

    .hero-image-floating img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .hero-image-floating {
        height: 160px;
    }


    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-wrapper {
        position: static;
    }
    .nav-contact {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-right: 20px;
    }
    
    .nav-contact .icon-link {
        display: flex;
        align-items: center;
        color: #fff; /* Change if your header is light */
        text-decoration: none;
        font-size: 14px;
        gap: 6px;
        transition: 0.3s ease;
    }
    
    .nav-contact .icon-link i {
        font-size: 16px;
        color: #d4d4d4;
    }
    
    .nav-contact .icon-link:hover {
        color: #f5c16c; /* Accent color */
    }
    
    .nav-contact .icon-link:hover i {
        color: #f5c16c;
    }
    }
