/* ===== CSS Variables ===== */
:root {
    --sage: #8B9A7D;
    --sage-light: #A3B18A;
    --sage-pale: #DAD7CD;
    --charcoal: #2D3A2E;
    --charcoal-light: #4A5A4C;
    --gray: #7A8A7C;
    --off-white: #FAFAF8;
    --white: #FFFFFF;
    --cream: #F5F1EB;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --shadow-sm: 0 2px 8px rgba(45, 58, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 58, 46, 0.1);
    --shadow-lg: 0 8px 30px rgba(45, 58, 46, 0.15);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 30px;

    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
}

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

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--sage);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(139, 154, 125, 0.3);
}
.btn-primary:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 58, 46, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--sage);
    border: 2px solid var(--sage);
    padding: 12px 28px;
}
.btn-outline:hover { background: var(--sage); color: var(--white); }

.btn-white { background: var(--white); color: var(--charcoal); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 28px;
}
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.85;
    letter-spacing: 0.2px;
}
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }
.nav.scrolled .nav-link { color: var(--charcoal); }
.nav-inner .nav-link { color: var(--charcoal); }
.nav-inner.scrolled .nav-link { color: var(--charcoal); }

.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sage-light);
}
.nav.scrolled .nav-phone { color: var(--sage); }
.nav-inner .nav-phone { color: var(--sage); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    background: var(--sage);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
}
.nav-cta:hover { background: var(--charcoal); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}
.nav.scrolled .nav-toggle span,
.nav-inner .nav-toggle span { background: var(--charcoal); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Inner Page Nav (no hero image) ===== */
.nav-inner {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
}

/* ===== Hero (Home) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1920&q=80') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.03);
    transition: transform 6s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(45,58,46,0.78) 0%, rgba(45,58,46,0.55) 60%, rgba(139,154,125,0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 860px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 8vw, 76px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 19px);
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.trust-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
}

/* ===== Inner Page Hero ===== */
.page-hero {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(45,58,46,0.82) 0%, rgba(45,58,46,0.65) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.page-hero-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 14px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
}

.page-hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-top: 14px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 17px;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ===== Products / Rentals ===== */
.products {
    padding: 100px 0;
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-pale);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.07); }

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--sage);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.product-content { padding: 24px; }

.product-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.product-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.55;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 18px;
}
.product-price .price { font-size: 26px; font-weight: 700; color: var(--sage); }
.product-price .price-unit { font-size: 13px; color: var(--gray); }

.product-card .btn-outline { width: 100%; justify-content: center; }

.products-cta { text-align: center; margin-top: 52px; }

/* ===== Rentals Page — Category Filter ===== */
.rentals-section {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.filter-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.filter-tab {
    padding: 10px 26px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--sage-pale);
    background: var(--white);
    color: var(--charcoal-light);
    transition: var(--transition);
}
.filter-tab:hover { border-color: var(--sage); color: var(--sage); }
.filter-tab.active {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.rental-item { display: none; }
.rental-item.visible { display: block; }

.category-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 60px 0 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sage-pale);
}
.category-title:first-of-type { margin-top: 0; }

/* ===== Packages ===== */
.packages {
    padding: 100px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.package-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--sage-pale);
    transition: var(--transition);
}
.package-card:hover { border-color: var(--sage); box-shadow: var(--shadow-md); }

.package-card.featured { border-color: var(--sage); }

.package-header {
    background: var(--charcoal);
    color: var(--white);
    padding: 32px 28px;
    position: relative;
}

.package-label {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--sage);
    color: var(--white);
    padding: 7px 14px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}

.package-guests { font-size: 14px; opacity: 0.75; }

.package-content { padding: 28px; }

.package-includes {
    list-style: none;
    margin-bottom: 24px;
}
.package-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--sage-pale);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.package-includes li::before { content: "✓"; color: var(--sage); font-weight: 700; }

.package-price { margin-bottom: 20px; }
.package-price .price { font-size: 36px; font-weight: 700; color: var(--charcoal); }
.package-price .price-note { display: block; font-size: 13px; color: var(--sage); margin-top: 4px; }

.package-card .btn-primary { width: 100%; justify-content: center; }

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--cream);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--sage);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.step-icon {
    width: 76px;
    height: 76px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--sage);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step:hover .step-icon { background: var(--sage); color: var(--white); transform: scale(1.05); }

.step-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.step-description { font-size: 14px; color: var(--gray); line-height: 1.65; }

.step-connector {
    width: 48px;
    height: 2px;
    background: var(--sage-pale);
    margin-top: 74px;
    flex-shrink: 0;
}

.how-cta { text-align: center; margin-top: 52px; }

/* ===== CTA Banner ===== */
.cta-section {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(139,154,125,0.08);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(139,154,125,0.06);
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== About Page ===== */
.about-intro {
    padding: 100px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-text .section-eyebrow { display: block; margin-bottom: 12px; }

.about-intro-text .section-title {
    text-align: left;
    font-size: clamp(30px, 4vw, 42px);
    margin-bottom: 24px;
}

.about-intro-text p {
    font-size: 16px;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}
.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-intro-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--sage);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-stats {
    padding: 80px 0;
    background: var(--charcoal);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
}

.about-values {
    padding: 100px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}
.value-card:hover { border-color: var(--sage); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(139,154,125,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    margin-bottom: 22px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.value-desc { font-size: 15px; color: var(--gray); line-height: 1.65; }

.service-area {
    padding: 80px 0;
    background: var(--off-white);
}

.service-area-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-area-text .section-title { text-align: left; font-size: 36px; margin-bottom: 18px; }
.service-area-text p { font-size: 16px; color: var(--charcoal-light); line-height: 1.75; margin-bottom: 16px; }

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    margin-top: 24px;
}
.area-list li {
    font-size: 14px;
    color: var(--charcoal-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.area-list li::before { content: "→"; color: var(--sage); font-weight: 600; }

.service-area-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-md);
}
.service-area-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Contact Page ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info { }

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.contact-info-desc {
    font-size: 16px;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--sage);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(139,154,125,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    flex-shrink: 0;
}

.contact-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 4px;
}

.contact-card-value {
    font-size: 15px;
    color: var(--charcoal);
    font-weight: 500;
}

.contact-card-sub { font-size: 13px; color: var(--gray); margin-top: 2px; }

.contact-hours {
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.contact-hours-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--sage-pale);
    font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--charcoal-light); }
.hours-time { color: var(--charcoal); font-weight: 500; }

/* ===== Contact Form ===== */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sage-pale);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 32px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 22px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-light);
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--sage-pale);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(139,154,125,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8A7C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-submit { width: 100%; margin-top: 8px; }

.form-success {
    display: none;
    text-align: center;
    padding: 32px 24px;
    color: var(--sage);
}
.form-success.visible { display: block; }
.form-success svg { margin: 0 auto 16px; }
.form-success h3 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 8px; color: var(--charcoal); }
.form-success p { font-size: 15px; color: var(--gray); }

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    color: var(--white);
}
.footer-logo:hover { color: var(--sage-light); }

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    line-height: 1.65;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg { flex-shrink: 0; color: var(--sage); }

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-nav a:hover { color: var(--white); padding-left: 4px; }

.footer-cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-intro-image { height: 360px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .service-area-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .step-connector { display: none; }
}

/* ===== Booqable booking grids ===== */
.booqable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.booqable-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 28px 28px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { color: var(--charcoal); font-size: 17px; }
    .nav-menu .nav-phone { color: var(--sage); }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero-content { padding-top: 80px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { gap: 20px; }
    .trust-divider { display: none; }

    .products-grid,
    .packages-grid,
    .rentals-grid { grid-template-columns: 1fr !important; max-width: 420px; margin-left: auto; margin-right: auto; }

    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr !important; max-width: 420px; margin: 0 auto; }

    .booqable-grid,
    .booqable-grid-3 { grid-template-columns: 1fr !important; max-width: 480px; margin-left: auto; margin-right: auto; }
    .area-list { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrap { padding: 32px 24px; }
    .page-hero { height: 280px; }
}

@media (max-width: 480px) {
    .btn-lg { padding: 14px 28px; font-size: 15px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .about-stat-number { font-size: 38px; }
}
