/* ============================================================
   PLANTOORI — Global Design System
   Premium Balcony Garden & Plant Styling
   ============================================================ */

/* --- Design Tokens --- */
:root {
    /* Colors */
    --color-primary: #0F5B35;
    --color-primary-light: #1A7A4A;
    --color-primary-dark: #0A4227;
    --color-secondary: #D4AF37;
    --color-secondary-light: #E8C84A;
    --color-bg: #F8FAF7;
    --color-bg-alt: #FFFFFF;
    --color-dark: #1A1A1A;
    --color-text: #2D3436;
    --color-text-muted: #636E72;
    --color-border: rgba(15, 91, 53, 0.08);
    --color-glass: rgba(255, 255, 255, 0.72);
    --color-glass-border: rgba(255, 255, 255, 0.35);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-max: 1280px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 91, 53, 0.06);
    --shadow-md: 0 8px 32px rgba(15, 91, 53, 0.08);
    --shadow-lg: 0 16px 48px rgba(15, 91, 53, 0.12);
    --shadow-glow: 0 0 40px rgba(15, 91, 53, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.4s var(--ease-out);

    /* Header */
    --header-height: 88px;
    --header-height-mobile: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-light); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-dark);
}

.container { max-width: var(--container-max); }

/* --- Section Utilities --- */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section--white { background: var(--color-bg-alt); }
.section--green { background: var(--color-primary); color: #fff; }
.section--green h2, .section--green h3 { color: #fff; }

.section-header {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    max-width: 680px;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header__label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.section-header__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-header__desc {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: var(--header-height);
    padding-top: env(safe-area-inset-top, 0px);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 12px rgba(15, 91, 53, 0.06);
}

/* Hero / dark pages — light nav text */
.page-home .site-header:not(.is-scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.92);
}

.page-home .site-header:not(.is-scrolled) .nav-link:hover,
.page-home .site-header:not(.is-scrolled) .nav-link.active {
    color: #fff;
}

.page-home .site-header:not(.is-scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.page-home .site-header:not(.is-scrolled) .nav-btn--primary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.page-home .site-header:not(.is-scrolled) .nav-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.page-home .site-header:not(.is-scrolled) .nav-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.page-home .site-header:not(.is-scrolled) .nav-pill .nav-link {
    color: rgba(255, 255, 255, 0.88);
}

.page-home .site-header:not(.is-scrolled) .nav-pill .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.page-home .site-header:not(.is-scrolled) .nav-pill .nav-link.active {
    background: rgba(212, 175, 55, 0.95) !important;
    color: var(--color-dark) !important;
}

.site-header .navbar {
    height: var(--header-height);
    padding: 0;
}

.navbar-shell {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
    width: 100%;
    min-height: var(--header-height);
}

.navbar-shell > .brand-lockup {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.site-logo {
    width: auto;
    object-fit: contain;
    transition: transform var(--transition), height var(--transition);
}

.site-logo--header {
    height: clamp(48px, 5.8vw, 66px);
    max-width: min(240px, 54vw);
}

.site-header.is-scrolled .site-logo--header {
    height: 54px;
}

@media (min-width: 1200px) {
    .site-logo--header {
        height: 66px;
        max-width: 240px;
    }

    .site-header.is-scrolled .site-logo--header {
        height: 56px;
    }
}

.navbar-brand {
    padding: 0;
    margin-right: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar-brand:hover .site-logo {
    transform: scale(1.02);
}

.navbar-tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.nav-btn--mobile {
    padding: 0.4rem 0.7rem;
    font-size: 0.625rem;
}

.navbar-toggler {
    border: 1px solid rgba(15, 91, 53, 0.15);
    border-radius: var(--radius-full);
    padding: 0.45rem 0.55rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
}

.page-home .site-header:not(.is-scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230F5B35' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
}

.navbar-nav .nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.35rem 0.65rem !important;
    letter-spacing: 0.01em;
    position: relative;
    transition: color var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width var(--transition), left var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    width: 60%;
    left: 20%;
}

/* Compact Nav Buttons */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
    line-height: 1;
}

.nav-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.nav-btn i { font-size: 0.875rem; }

.nav-btn--wa {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(15, 91, 53, 0.2);
}

.nav-btn--wa:hover {
    background: rgba(37, 211, 102, 0.08);
    color: #128C7E;
    border-color: rgba(37, 211, 102, 0.35);
}

.nav-btn--wa i { color: #25D366; }

.nav-btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(15, 91, 53, 0.2);
}

.nav-btn--primary:hover { background: var(--color-primary-light); color: #fff; }

.nav-btn--gold {
    background: transparent;
    color: var(--color-primary);
    border-color: rgba(15, 91, 53, 0.2);
}

.nav-btn--gold:hover {
    background: rgba(15, 91, 53, 0.06);
    color: var(--color-primary);
}

.navbar-actions { flex-shrink: 0; }

/* Mobile Nav */
.mobile-nav {
    background: var(--color-bg);
    border-left: none;
    max-width: min(100vw, 380px);
    z-index: 1070;
}

.offcanvas-backdrop {
    z-index: 1065;
}

body.nav-open .site-header {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-nav__head {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: 1rem 1.15rem;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 72px;
}

.mobile-nav__head .btn-close {
    flex-shrink: 0;
    margin: 0;
    opacity: 0.85;
}

.mobile-nav__head .brand-lockup {
    margin: 0;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 2.5rem);
}

.mobile-nav__cta {
    margin-bottom: 1.25rem;
}

.mobile-nav__cta .btn-luxury {
    width: 100%;
    justify-content: center;
}

.mobile-nav__links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.mobile-nav__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav__links a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.mobile-nav__links a:hover,
.mobile-nav__links a.active {
    color: var(--color-primary);
    padding-left: 0.35rem;
}

.mobile-nav__links a.active {
    font-weight: 600;
}

.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border);
}

.hero__btn-outline--dark {
    color: var(--color-primary) !important;
    border-color: rgba(15, 91, 53, 0.25) !important;
    background: transparent !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-luxury:hover { transform: translateY(-2px); text-decoration: none; }
.btn-luxury:active { transform: translateY(0); }

/* Sizes */
.btn-luxury--sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-luxury--md { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }
.btn-luxury--lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* Variants */
.btn-luxury--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(15, 91, 53, 0.25);
}

.btn-luxury--primary:hover {
    background: var(--color-primary-light);
    color: #fff;
    box-shadow: 0 8px 24px rgba(15, 91, 53, 0.35);
}

.btn-luxury--secondary {
    background: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-luxury--secondary:hover {
    background: var(--color-secondary-light);
    color: var(--color-dark);
}

.btn-luxury--outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-luxury--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-luxury--whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-luxury--whatsapp:hover {
    background: #20BD5A;
    color: #fff;
}

.btn-luxury--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-luxury--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Ripple Effect */
.btn-luxury__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    pointer-events: none;
}

.btn-luxury.is-rippling .btn-luxury__ripple {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card-luxury {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-luxury:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Service Card */
.card-luxury--service .card-luxury__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(15, 91, 53, 0.08), rgba(15, 91, 53, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    transition: background var(--transition), color var(--transition);
}

.card-luxury--service:hover .card-luxury__icon {
    background: var(--color-primary);
    color: #fff;
}

.card-luxury__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-luxury__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.card-luxury__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-luxury__link i { transition: transform var(--transition); }
.card-luxury__link:hover i { transform: translateX(4px); }

/* Package Card */
.card-luxury--package { text-align: center; }

.card-luxury--featured {
    border: 2px solid var(--color-secondary);
}

.card-luxury--featured:hover { transform: translateY(-6px); }

.card-luxury__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-secondary);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-luxury__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0.5rem 0 1.5rem;
}

.card-luxury__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.card-luxury__features li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-luxury__features li i {
    color: var(--color-primary);
    font-size: 0.8125rem;
}

/* Testimonial Card */
.card-luxury--testimonial {
    padding: 2.5rem;
}

.card-luxury__stars {
    color: var(--color-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card-luxury__quote {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.card-luxury__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-luxury__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.card-luxury__author strong {
    display: block;
    font-size: 0.9375rem;
}

.card-luxury__author span {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.card-luxury__avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.card-luxury__source {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    margin-left: 0.5rem;
    font-weight: 500;
}

.card-luxury__source i { color: #E1306C; }

/* Stat Card */
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-card__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card__label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Before/After Card */
.ba-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-bg-alt);
}

.ba-card__slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: ew-resize;
    user-select: none;
}

.ba-card__slider > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ba-card__after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.ba-card__after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
}

.ba-card__handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 3;
    cursor: ew-resize;
}

.ba-card__handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-card__handle span::before,
.ba-card__handle span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.ba-card__handle span::before {
    border-width: 5px 6px 5px 0;
    border-color: transparent var(--color-primary) transparent transparent;
    left: 10px;
}

.ba-card__handle span::after {
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent var(--color-primary);
    right: 10px;
}

.ba-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.ba-card__meta i { color: var(--color-secondary); margin-right: 0.35rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-luxury .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-luxury .form-control,
.form-luxury .form-select {
    width: 100%;
    padding: 1rem 1rem 0.5rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-alt);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(15, 91, 53, 0.1);
    outline: none;
}

.form-luxury label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all 0.2s var(--ease-out);
}

.form-luxury .form-control:focus ~ label,
.form-luxury .form-control:not(:placeholder-shown) ~ label,
.form-luxury .form-select:focus ~ label,
.form-luxury .form-select:valid ~ label {
    top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-luxury textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* File Upload */
.upload-zone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    background: rgba(15, 91, 53, 0.02);
}

.upload-zone:hover,
.upload-zone.is-dragover {
    border-color: var(--color-primary);
    background: rgba(15, 91, 53, 0.05);
}

.upload-zone__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.upload-zone__text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.upload-preview__item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.upload-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview__remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    color: var(--color-bg);
    margin-top: -1px;
    line-height: 0;
}

.footer-wave svg { width: 100%; height: 60px; }

.footer-main { padding: 4rem 0 2rem; }

.footer-logo {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-logo:not(.footer-logo--color) { filter: brightness(0) invert(1); opacity: 0.9; }

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 36ch;
}

.footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.footer-cta .btn-luxury {
    font-size: 0.8125rem;
    padding: 0.55rem 1.1rem;
}

.footer-btn-ghost {
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
    background: transparent !important;
}

.footer-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
}

.footer-hours {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-hours i {
    color: var(--color-secondary);
}

.footer-social a.footer-social__wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.footer-social a.footer-social__wa:hover {
    background: #25d366;
    color: #fff;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--color-secondary);
    margin-top: 4px;
    width: 16px;
}

.footer-contact a { color: rgba(255, 255, 255, 0.75); }
.footer-contact a:hover { color: var(--color-secondary); }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.125rem;
    transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    color: #fff;
}

.newsletter-input {
    display: flex;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-input input {
    flex: 1;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
}

.newsletter-input input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-input input:focus { outline: none; }

.newsletter-input button {
    border: none;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 0 1.25rem;
    cursor: pointer;
    transition: background var(--transition);
}

.newsletter-input button:hover { background: var(--color-secondary-light); }

.footer-map-wrap {
    margin: 0 0 1.5rem;
}

.footer-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0;
    height: 280px;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition), gap var(--transition);
}

.footer-map-link:hover {
    color: #fff;
    gap: 0.6rem;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) contrast(1.1);
}

.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-swiper .swiper-slide .card-luxury {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1.5rem;
    align-items: center;
    padding: 1.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
}

.footer-bottom > p:first-child { margin: 0; }

.footer-bottom__links {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
}

.footer-powered {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-powered i {
    color: var(--color-secondary);
    font-size: 0.6875rem;
    margin: 0 0.15rem;
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-powered a:hover {
    color: var(--color-secondary);
}

.footer-bottom__links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom__links a:hover { color: var(--color-secondary); }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.fab-group {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fab {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    position: relative;
    text-decoration: none;
}

.fab:hover {
    transform: scale(1.1);
    color: #fff;
}

.fab--whatsapp { background: #25D366; }
.fab--call { background: var(--color-primary); }
.fab--visit { background: var(--color-secondary); color: var(--color-dark); }
.fab--top {
    background: var(--color-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.fab--top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab__tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: var(--color-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.fab:hover .fab__tooltip { opacity: 1; }

/* ============================================================
   POPUPS
   ============================================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.popup-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-out);
    box-shadow: var(--shadow-lg);
}

.popup-overlay.is-active .popup-card {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.popup-close:hover { color: var(--color-dark); }

.popup-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(15, 91, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.popup-card__icon--gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-secondary);
}

.popup-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.popup-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--color-bg-alt);
    transition: box-shadow var(--transition);
}

.faq-item.is-open { box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question i {
    transition: transform var(--transition);
    color: var(--color-primary);
}

.faq-item.is-open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer__inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================================
   TIMELINE (Process)
   ============================================================ */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-item__content {
    width: calc(50% - 40px);
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.timeline-item:nth-child(odd) .timeline-item__content { margin-right: auto; text-align: right; }
.timeline-item:nth-child(even) .timeline-item__content { margin-left: auto; }

.timeline-item__dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-secondary);
    border: 4px solid var(--color-bg);
    z-index: 1;
}

.timeline-item__step {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.timeline-item__title {
    font-size: 1.125rem;
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .navbar-collapse { display: none !important; }

    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) { flex-direction: row; }
    .timeline-item__content,
    .timeline-item:nth-child(odd) .timeline-item__content,
    .timeline-item:nth-child(even) .timeline-item__content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
    }
    .timeline-item__dot { left: 20px; }

    .card-luxury--featured { transform: none; }
    .card-luxury--featured:hover { transform: translateY(-6px); }

    .fab-group { bottom: 1rem; right: 1rem; }
    .fab { width: 46px; height: 46px; font-size: 1.125rem; }
    .fab__tooltip { display: none; }
}

@media (max-width: 575.98px) {
    :root { --section-py: 3rem; }
    .popup-card { padding: 1.75rem; }
    .footer-main { padding: 2.5rem 0 1.5rem; }
    .footer-map { height: 200px; }
    .footer-cta { flex-direction: column; }
    .footer-cta .btn-luxury { width: 100%; justify-content: center; }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom__links { justify-content: center; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--color-primary);
    color: #fff;
    padding: 2.5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.page-hero p {
    opacity: 0.88;
    max-width: 560px;
}

/* Page offset for fixed header */
main { padding-top: var(--header-height); }

.page-home main { padding-top: 0; }

@media (max-width: 991.98px) {
    main { padding-top: var(--header-height-mobile); }
    .page-home main { padding-top: var(--header-height-mobile); }

    .container {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }

    .section {
        padding-top: clamp(3rem, 8vw, 5rem);
        padding-bottom: clamp(3rem, 8vw, 5rem);
    }
}

/* Toast Notifications */
.toast-luxury {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-dark);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s var(--ease-out);
    box-shadow: var(--shadow-lg);
    max-width: 90vw;
    text-align: center;
}

.toast-luxury.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-luxury--error { background: #c0392b; }

/* Image Placeholder */
.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, rgba(15, 91, 53, 0.08), rgba(15, 91, 53, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 3rem;
    opacity: 0.4;
}

/* ============================================================
   CHATBOT
   ============================================================ */
.chatbot {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 1060;
    font-family: var(--font-body);
}

.chatbot__toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    font-size: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out);
    position: relative;
}

.chatbot__toggle:hover { transform: scale(1.06); }

.chatbot__toggle .chatbot__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: var(--color-secondary);
    border-radius: 50%;
    border: 2px solid #fff;
}

.chatbot__panel {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    width: min(340px, calc(100vw - 2rem));
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out);
}

.chatbot.is-open .chatbot__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot__head {
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot__head-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot__head h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.chatbot__head span {
    font-size: 0.6875rem;
    opacity: 0.75;
}

.chatbot__body {
    padding: 1rem;
    max-height: 320px;
    overflow-y: auto;
}

.chatbot__msg {
    background: var(--color-bg);
    border-radius: 12px 12px 12px 4px;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.chatbot__options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chatbot__opt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.chatbot__opt:hover {
    border-color: var(--color-primary);
    background: rgba(15, 91, 53, 0.04);
    color: var(--color-primary);
}

.chatbot__opt i {
    width: 20px;
    text-align: center;
    color: var(--color-primary);
}

