:root {
    --primary: #1F4D3A;
    --primary-light: #2F6B53;
    --accent: #CFE7DD;
    --text-dark: #1A1A1A;
    --text-light: #666;
    --white: #FFFFFF;
    --bg-soft: #F8FAF9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */

.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.logo:hover img {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
}

.dropdown-toggle:hover {
    color: var(--primary);
}

/* Arrow */

.arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.dropdown.active .arrow {
    transform: rotate(-135deg);
}

/* Dropdown menu */

/* ===============================
   PREMIUM GLASS DROPDOWN
================================= */

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 200px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(0,0,0,0.05);
}

/* ===============================
   STICKY NAVBAR
================================= */

header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    transition: all 0.3s ease;
    z-index: 1000;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
}


/* BUTTONS */

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===============================
   PREMIUM BUTTONS
================================= */

.btn-primary,
.btn-secondary {
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* ===============================
   NAVBAR SHRINK EFFECT
================================= */

.navbar {
    transition: all 0.3s ease;
}

header.scrolled .navbar {
    padding: 10px 0;
}

header.scrolled .logo {
    transform: scale(0.95);
}

/* ===============================
   NAVBAR LINK UNDERLINE EFFECT
================================= */

.nav-links a {
    position: relative;
    text-decoration: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}



/* HERO */

.hero {
    padding: 100px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image text";
    align-items: stretch;
    gap: 60px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    grid-area: text;
}

.hero-text p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
    grid-area: text;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    grid-area: text;
}

.hero-image {
    height: 100%;
    display: flex;
    grid-area: image;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* LOCATION */

.location {
    padding: 80px 0;
    background: var(--bg-soft);
}

.location h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
    font-size: 32px;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.location-info h3 {
    margin-bottom: 10px;
}

/* FOOTER */

footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.7;
}

footer h3, p{
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "text";
        gap: 40px;
    }

    .hero-text {
        grid-area: text;
        text-align: center;
    }

    .hero-text p {
        text-align: center;
    }

    .hero-image {
        grid-area: image;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* ===============================
   HERO FADE IN
================================= */

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay system */

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ===============================
   SCROLL REVEAL ANIMATIONS
================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(.4,0,.2,1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   MOBILE MENU 
================================= */
@media (max-width: 900px){

    .header-cta{
        margin-left: 0;
    }

    .nav-toggle,
    .hamburger {
        display: flex;
        margin-left: auto;
    }


    /* NAV becomes off-canvas panel */
    .nav-links{
        position: fixed;
        top: 14px;
        right: 14px;
        left: 14px;
        max-width: 520px;
        margin: 0 auto;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;

        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(16px);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);

        /* Hidden state */
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;

        z-index: 1001;
        transition: opacity .25s ease, transform .25s ease;
    }

    .nav-links.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    }


    /* dropdown inside mobile nav should open nicely */
    .dropdown-menu{
        position: static;
        width: 100%;
        min-width: unset;
        margin-top: 0;
    }

    .hero-grid{
        grid-template-columns: 1fr;
    }
}

/* ---------------- MOBILE NAV ---------------- */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #1f4d3a; /* your dark green */
    transition: 0.3s ease;
}

/* MOBILE BREAKPOINT */
@media (max-width: 992px) {

    .nav-links{
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;

        flex-direction: column;
        align-items: flex-start;
        padding: 20px;

        max-height: 0;
        overflow: hidden;
        opacity: 0;

        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .desktop-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-content {
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 992px) {

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        max-height: 500px; /* enough to fit menu */
        opacity: 1;
    }

}

/* ===================================== */
/* MOBILE NAV ANIMATION */
/* ===================================== */

@media (max-width: 992px) {

    .nav-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links.active {
        max-height: 500px; /* enough height to show links */
    }

    .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;

    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;

    opacity: 1;
    visibility: visible;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px; /* enough height */
    }
}

.map-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
}

/* ===============================
   SOCIAL SECTION
================================= */

.social-section {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.social-icons a {
    font-size: 24px;
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid black;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    position: relative;
}

.social-icons a:nth-child(1):hover {
    color: #1877F2;
    border: 1px solid #1877F2;
    box-shadow: 0 0 18px rgba(24, 119, 242, 0.5);
}

.social-icons a:nth-child(2):hover {
    color: #E4405F;
    border: 1px solid #E4405F;
    box-shadow: 0 0 18px rgba(228, 64, 95, 0.5);
}

/* ===============================
   FOOTER MENU
================================= */

.footer-menu{
    text-align: center;
}

/* ===============================
   FOOTER SOCIAL ICONS
================================= */

.footer-section-social{
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.footer-social a {
    font-size: 18px;
    color: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* ===============================
   SERVICES PAGE
================================= */

.services-page {
    padding: 100px 0 160px;
    background: #f9f9f9;
}

.services-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 70px;
}

.services-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.service-header h3 {
    font-weight: 600;
    font-size: 20px;
}

.service-header .arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.service-item.active .arrow {
    transform: rotate(-135deg);
}

.service-content {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.service-content p {
    margin: 20px 0;
    color: var(--text-light);
    text-align: left;
}

.service-item.active {
    border-left: 4px solid var(--primary);
}

.service-detail {
    padding: 100px 0 120px;
    background: #ffffff;
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
}

.service-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
}

.service-cta {
    margin-top: 50px;
    text-align: center;
}

.service-image {
    margin-top: 60px;
}

.service-image img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {

    .service-detail{
        padding: 35px 0 120px;
    }
}

/* ===============================
   PRICE LIST
================================= */

.price-list {
    margin-top: 50px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid #e8e8e8;
}

.price-name {
    font-size: 18px;
    font-weight: 500;
    max-width: 70%;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 6px;
}

.price-value {
    font-size: 20px;
    font-weight: 600;
}

.price-cta {
    margin-top: 60px;
    text-align: center;
}

.about-image {
    margin: 60px 0;
    text-align: center;
}

.about-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
}

.image-caption {
    margin-top: 15px;
    font-weight: 500;
    color: #555;
}

.highlight-text {
    font-weight: 500;
    margin-top: 20px;
}

.about-text p {
    margin-bottom: 20px;
    text-align: center;
}

/* ===============================
   CONTACT PAGE
================================= */

.contact-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 22px;
    color: var(--primary);
    margin-top: 4px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-item:hover i {
    transform: translateX(4px);
    color: var(--primary-light);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

/* ===================================== */
/* ========= MOBILE OPTIMIZATION ======= */
/* ===================================== */

@media (max-width: 768px) {

    /* GLOBAL SPACING */
    .container {
        width: 92%;
    }

    section {
        padding: 60px 0 !important;
    }

    /* ================= HERO ================= */

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-image img {
        border-radius: 12px;
    }

    /* ================= SERVICE DETAIL ================= */

    .service-detail {
        padding: 60px 0 80px;
    }

    .service-detail h1 {
        font-size: 30px;
        line-height: 1.2;
        padding: 0 10px;
    }

    .service-text p {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 10px;
    }

    .service-cta {
        margin-top: 40px;
    }

    /* ================= ABOUT PAGE ================= */

    .about-text p {
        padding: 0 14px;
        font-size: 16px;
        line-height: 1.7;
    }

    .about-image {
        margin: 40px 0;
    }

    .about-image img {
        max-width: 280px;
    }

    .image-caption {
        font-size: 14px;
    }

    /* ================= SERVICES PAGE ================= */

    .services-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .service-item {
        padding: 20px;
    }

    .service-header h3 {
        font-size: 17px;
    }

    .service-content p {
        font-size: 15px;
    }

    /* ================= PRICE LIST ================= */

    .price-item {
        flex-direction: column;
        gap: 10px;
    }

    .price-name {
        max-width: 100%;
        font-size: 16px;
    }

    .price-value {
        font-size: 18px;
    }

    /* ================= CONTACT ================= */

    .contact-box {
        padding: 30px 20px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-item h3 {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 15px;
    }

    /* ================= BOOKING PAGE ================= */
    .booking-title {
        font-size: 28px;
    }

    .booking-wrapper iframe {
        height: 750px;
    }
    /* ================= LOCATION ================= */

    .location h2 {
        font-size: 26px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    /* ================= FOOTER ================= */

    footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    footer h3 {
        font-size: 18px;
    }

    footer p,
    footer a {
        font-size: 14px;
    }
}

/* ===============================
   BOOKING PAGE
================================= */

.booking-section {
    padding: 100px 0;
    background: #fff;
}

.booking-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 50px;
}

.booking-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.booking-wrapper iframe {
    width: 100%;
    height: 1100px; /* desktop height */
    border: none;
    border-radius: 16px;
}





