/*
Theme Name: Cherry Blossoms Spa
Theme URI: https://cherryblossomsspa.com/
Author: Bastrop Websites
Author URI: https://bastropwebsites.com/
Description: Custom, high-performance WordPress theme for Cherry Blossoms Spa. Features native custom fields for easy editing and no heavy page builders.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cherry-blossoms-theme
*/

/* Variable Definitions - Matching React Theme */
:root {
    --background: 40 20% 99%;
    /* #fcfbf9 */
    --foreground: 200 33% 16%;
    /* #1b2836 */
    --primary: 36 29% 56%;
    /* #ae8a68 */
    --primary-foreground: 40 20% 99%;
    --muted: 35 20% 95%;
    --muted-foreground: 200 20% 40%;
    --border: 35 20% 88%;
    /* Hardcoded colors for mobile menu consistency */
    --mobile-bg: #072e39;
    --mobile-text: #ffffff;

    --font-serif: "Instrument Serif", serif;
    --font-sans: "Urbanist", sans-serif;

    --footer-logo-padding: 2rem;
}

/* Reset and Base */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
    margin: 0;
}

img {
    border-style: solid;
    max-width: 100%;
    height: auto;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utility Classes */
.container {
    max-width: 80rem;
    /* 7xl approx */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #fcfbf9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 4rem;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
}

@media (min-width: 768px) {
    .site-header {
        height: 5rem;
    }
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logos */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-combined {
    height: 1.875rem;
    /* Balanced size for mobile */
    width: auto;
    /* filter: brightness(0); removed */
    transition: filter 0.4s ease;
}

@media (min-width: 768px) {
    .logo-combined {
        height: 2.25rem;
    }
}

/* Desktop Nav */
.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: hsl(var(--foreground));
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1F7890;
    /* Teal to match buttons */
}

.nav-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.nav-chevron.rotate {
    transform: rotate(180deg);
}

/* Desktop Actions */
.desktop-actions {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

.phone-link {
    font-size: 15px;
    color: hsl(var(--muted-foreground));
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.4s ease;
}

.phone-link:hover {
    color: hsl(var(--foreground));
}

.gift-card-link {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: hsl(var(--foreground));
    transition: color 0.4s ease, opacity 0.4s ease;
}

.gift-card-link:hover {
    opacity: 0.7;
}

/* UPDATED BUTTON STYLE: TEAL */
.btn-primary {
    background-color: #1F7890;
    /* Teal */
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    /* Slightly smaller default */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    border-radius: 0.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #155a75;
}

/* Mobile Toggle */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 0.25rem;
    /* Slight shift to match modal overlay close button spacing better */
}

/* Mobile actions specific button size */
.mobile-actions .btn-primary {
    padding: 0.3rem 0.6rem;
    font-size: 12px;
}

.mobile-menu-trigger {
    padding: 0.4rem;
    color: hsl(var(--foreground));
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-trigger svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 1024px) {
    .mobile-actions {
        display: none;
    }
}



/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 100;
    background-color: var(--mobile-bg);
    color: var(--mobile-text);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Mobile Header */
.mobile-header {
    height: 4rem;
    padding: 0 1rem;
    /* px-4 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-logo-icon {
    height: 2.5rem;
    /* h-10 */
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-logo-text {
    height: 1.5rem;
    /* h-6 */
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--mobile-text);
    background: none;
    border: none;
    cursor: pointer;
}

.close-menu-btn {
    padding: 0.5rem;
    color: var(--mobile-text);
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Content */
.mobile-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    width: 100%;
    background-color: var(--mobile-bg);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item,
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mobile-text);
    text-align: left;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
}

.mobile-nav-item:hover,
.mobile-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    font-size: 1.125rem;
    border-bottom: none;
    opacity: 0.8;
    color: var(--mobile-text);
    margin-top: 1rem;
}

/* Services Submenu */
.services-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--mobile-text);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mobile-text);
    text-align: left;
}

.view-all-services {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #A4D8D8;
    margin-top: 1rem;
}

/* Mobile Footer */
.mobile-footer {
    padding: 1rem 1.25rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    background-color: var(--mobile-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    z-index: 20;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-book-mobile {
    background-color: #1e6b8c;
    /* Teal */
    color: #ffffff;
    width: 100%;
    padding: 0.75rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.125rem;
}

.btn-gift-mobile {
    background-color: #2A3847;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    border-radius: 0.125rem;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #072e39;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0 1.5rem 0;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    clip-path: inset(0 -100px -100px -100px);
}

/* Mega Menu active state handled by JS */
.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Dark Mode (Mega Menu Open) */
.site-header.header-dark-mode {
    background-color: #072e39;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.site-header.header-dark-mode .nav-link,
.site-header.header-dark-mode .gift-card-link,
.site-header.header-dark-mode .mobile-menu-trigger {
    color: #ffffff;
}

.site-header.header-dark-mode .phone-link {
    color: rgba(255, 255, 255, 0.8);
}

.site-header.header-dark-mode .logo-combined {
    filter: brightness(0) invert(1);
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-right {
    animation: slideInRight 0.3s ease-out forwards;
}

/* Footer Styles */
.site-footer {
    background-color: #072e39;
    /* Dark Theme */
    color: #fcfbf9;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 1.5rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    /* Further reduced for even tighter location cards */
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        /* Restore gap for larger screens */
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 4rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    letter-spacing: 0.8px;
    max-width: 300px;
    margin: 0;
}

.award-badge-container {
    margin-top: 0.5rem;
}

.award-badge {
    height: 3.5rem;
    width: auto;
    opacity: 0.8;
}

.footer-heading {
    /* font-family: var(--font-serif); removed */
    font-size: 1.25rem;
    color: #fcfbf9;
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 400;
}

.location-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.location-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.location-title {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.9375rem;
    opacity: 0.7;
    letter-spacing: 0.8px;
    transition: opacity 0.2s, transform 0.2s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    letter-spacing: 0.5px;
}

.icon-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.5;
    transition: color 0.2s, opacity 0.2s;
}

.icon-link:hover {
    opacity: 1;
    color: #ffffff;
}




/* CTA Section */
.footer-cta {
    text-align: center;
    padding-top: 2.5rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 767px) {
    .footer-cta {
        padding-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}

.cta-text {
    opacity: 0.7;
    max-width: 500px;
    margin: 0;
    font-size: 1rem;
}

.btn-footer {
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Logo Separator - Flashlight Reveal */
.footer-logo-separator {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

@media (max-width: 767px) {
    :root {
        --footer-logo-padding: 1rem;
    }

    .footer-logo-separator {
        margin-top: 2rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Base Faint Logo */
.separator-logo-base {
    width: 100%;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0 auto;
    padding: var(--footer-logo-padding) 0;
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Revealed Opaque Logo */
.separator-logo-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--footer-logo-padding) 0;
    box-sizing: border-box;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;

    /* The Flashlight Mask */
    mask-image: radial-gradient(circle 300px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 300px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
}

/* On mobile/touch devices, show the reveal content and use a center-glow or auto-animation */
@media (max-width: 1023px) {
    .separator-logo-reveal {
        opacity: 0.8 !important;
        /* Slightly dimmed for subtleness */
        mask-image: radial-gradient(circle 200px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
        -webkit-mask-image: radial-gradient(circle 200px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
    }
}

.footer-logo-separator:hover .separator-logo-reveal {
    opacity: 1;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    opacity: 1;
}

.footer-badge-small {
    height: 2.5rem;
    width: auto;
}

.copyright,
.footer-links {
    opacity: 0.5;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.highlight {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.highlight:hover {
    color: #fcfbf9;
}

/* Mega Menu Item Hover */
.mega-menu a.group {
    transition: all 0.2s ease;
}

.mega-menu a.group:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 999;
    background-color: #1F7890;
    /* Teal */
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    animation: pulse-soft 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.floating-call-btn.hide-to-right {
    transform: translateX(150%);
    opacity: 0;
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(21, 115, 140, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(21, 115, 140, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(21, 115, 140, 0);
    }
}

@media (min-width: 1024px) {
    .floating-call-btn {
        display: none;
    }
}

/* ============================================
   HERO SECTION - HOME PAGE
   ============================================ */

.hero-section {
    position: relative;
    min-height: 500px;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0;
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 500px;
        height: auto;
        padding: 6rem 0 4rem;
    }
}

/* Video Background Container */
.hero-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile/Desktop Hero Swapping */
.desktop-hero-media {
    display: block !important;
}

.mobile-hero-media {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-hero-media {
        display: none !important;
    }

    .mobile-hero-media {
        display: block !important;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Hero Content */
.hero-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 140%;
    /* Oversized height to go out of bounds */
    width: auto;
    max-width: none;
    opacity: 0.15;
    /* Increased slightly for visibility against video */
    z-index: 1;
    pointer-events: none;
    filter: brightness(0) invert(1);
    /* Ensure it's white */
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text-wrapper {
    max-width: 50rem;
    text-align: center;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Typography */
.hero-subtitle {
    font-size: 0.625rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 0.725rem;
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
        max-width: 950px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 18px;
    }
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    /* Full width buttons on mobile */
    width: 100%;
    /* max-width removed to allow left alignment flexibility */
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
        max-width: none;
        width: auto;
    }
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    /* Explicit line-height */
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid transparent;
    /* Invisible border to match height */
}

.btn-hero-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 2.5rem;
    /* Ensure typography matches .btn-hero exactly for same height */
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Fade Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure video plays smoothly on mobile */
@media (max-width: 767px) {
    .hero-video {
        object-position: 65% center;
    }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-text-wrapper {
        animation: none;
    }

    .btn-hero-outline:hover {
        transform: none;
    }
}

/* ==========================================================================
   Section 2: Featured Ultimate Package
   ========================================================================== */
.featured-package-section {
    background-color: #072E39;
    color: #ffffff;
    padding: 5rem 0;
}

@media (max-width: 767px) {
    .featured-package-section {
        padding: 3rem 0;
    }
}

.featured-package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .featured-package-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.featured-package-content {
    order: 2;
}

@media (min-width: 1024px) {
    .featured-package-content {
        order: 1;
    }
}

/* Popular badge styling for dark background */
.featured-package-section .section-subtitle {
    color: #A4D8D8;
    background-color: rgba(164, 216, 216, 0.15);
    border: 1px solid rgba(164, 216, 216, 0.4);
}

.section-subtitle {
    color: #1F7890;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    display: inline-block;
    background-color: rgba(21, 115, 140, 0.08);
    border: 1px solid rgba(21, 115, 140, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    /* Smaller on mobile */
    font-weight: 400;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
    max-width: none;
    /* Allow full width for single line */
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
        max-width: none;
    }
}

.text-white {
    color: #ffffff;
}

.featured-package-description {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.7;
    opacity: 0.8;
    margin: 0 0 1.5rem 0;
}

@media (max-width: 767px) {
    .featured-package-description {
        font-size: 13px;
    }

    .featured-package-content .section-title {
        font-size: 2rem;
    }
}

.featured-package-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.featured-package-price .price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
}

.featured-package-price .duration {
    opacity: 0.6;
    font-size: 1rem;
}

.featured-package-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-package-actions .btn-primary,
.featured-package-actions .btn-outline-light {
    padding: 0.875rem 1.5rem;
    width: 100%;
    text-align: center;
}

@media (min-width: 640px) {
    .featured-package-actions {
        flex-direction: row;
    }

    .featured-package-actions .btn-primary,
    .featured-package-actions .btn-outline-light {
        width: auto;
    }
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background-color: transparent;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-outline-light svg {
    width: 1rem;
    height: 1rem;
}

.featured-package-image {
    order: 1;
}

@media (min-width: 1024px) {
    .featured-package-image {
        order: 2;
    }
}

.featured-package-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0.25rem;
}

/* ==========================================================================
   Section 3: Monthly Specials
   ========================================================================== */
.monthly-specials-section {
    background-color: hsl(var(--background));
    padding: 5rem 0;
}

@media (max-width: 767px) {
    .monthly-specials-section {
        padding: 3rem 0;
    }
}

.specials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.specials-label {
    color: #1F7890;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 1rem 0;
    font-weight: 600;
    display: inline-block;
    background-color: rgba(21, 115, 140, 0.08);
    border: 1px solid rgba(21, 115, 140, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
}

.specials-title {
    font-family: var(--font-sans);
    font-size: 2.75rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin: 0 0 1rem 0;
}

@media (max-width: 767px) {
    .specials-title {
        font-size: 2rem;
    }
}

.specials-intro {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .specials-intro {
        max-width: 280px;
    }
}

.specials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .specials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.special-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2.5rem;
    border: 1px solid hsl(var(--border));
    position: relative;
    overflow: hidden;
}

.special-card-featured {
    background: linear-gradient(145deg, #fef8f8 0%, #fff0f0 50%, #fef8f8 100%);
    border: 1px solid rgba(200, 100, 100, 0.15);
    box-shadow:
        0 8px 30px rgba(200, 100, 100, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Decorative corner flourish */
.special-card-featured::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(200, 100, 100, 0.12) 0%, transparent 70%);
    border-radius: 0 0.75rem 0 0;
    pointer-events: none;
}

.special-card-gift {
    background: linear-gradient(145deg, #f9fcfd 0%, #f0f8fa 50%, #f9fcfd 100%);
    border: 1px solid rgba(21, 115, 140, 0.12);
    box-shadow:
        0 8px 30px rgba(21, 115, 140, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.special-card-gift::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(21, 115, 140, 0.1) 0%, transparent 70%);
    border-radius: 0 0.75rem 0 0;
    pointer-events: none;
}

.special-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.special-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(200, 100, 100, 0.12) 0%, rgba(200, 100, 100, 0.08) 100%);
    color: #c26565;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    width: fit-content;
    border: 1px solid rgba(200, 100, 100, 0.15);
}

.special-badge-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(21, 115, 140, 0.1) 0%, rgba(21, 115, 140, 0.06) 100%);
    color: #1F7890;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    width: fit-content;
    border: 1px solid rgba(21, 115, 140, 0.12);
}

.special-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: hsl(var(--foreground));
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.special-description {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.75;
    color: hsl(var(--muted-foreground));
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.special-price {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.btn-outline-dark {
    border: 1px solid hsl(var(--foreground));
    color: hsl(var(--foreground));
    background-color: transparent;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-dark:hover {
    background-color: hsl(var(--foreground));
    color: #ffffff;
}

/* Special cards button consistency */
.special-card .btn-primary,
.special-card .btn-outline-dark {
    padding: 0.85rem 2rem;
    width: 100%;
}

/* Specials cards mobile adjustments */
@media (max-width: 767px) {
    .special-card {
        padding: 1.5rem;
    }

    .special-name {
        font-size: 1.5rem;
    }

    .special-description {
        font-size: 14px;
        margin-bottom: 1.25rem;
    }

    .special-price {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   Section 4: Introduction & Services
   ========================================================================== */
.intro-services-section {
    background-color: #072E39;
    color: #ffffff;
    padding: 5rem 0;
}

@media (max-width: 767px) {
    .intro-services-section {
        padding: 3rem 0;
    }
}

/* Intro Content */
.intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.intro-label {
    color: #A4D8D8;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 1rem 0;
    font-weight: 600;
    display: inline-block;
    background-color: rgba(164, 216, 216, 0.1);
    border: 1px solid rgba(164, 216, 216, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
}

.intro-title {
    font-family: var(--font-sans);
    font-size: 2.75rem;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .intro-title {
        font-size: 2rem;
    }
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 767px) {
    .intro-text p {
        font-size: 1rem;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Service Image */
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Icon Glassmorphism */
.service-icon {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.service-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

/* Service Content */
.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
}

.service-desc {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.6;
    opacity: 0.7;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #A4D8D8;
    font-weight: 400;
}

/* Service Footer */
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

/* Hover Arrow */
.service-arrow {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #072E39;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.service-arrow svg {
    display: block;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Section 5: Meet the Owner
   ========================================================================== */
.meet-owner-section {
    background-color: hsl(var(--background));
    padding: 5rem 0;
}

@media (max-width: 767px) {
    .meet-owner-section {
        padding: 3rem 0;
    }
}

.owner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1023px) {
    .owner-grid .owner-image {
        order: -1;
    }
}

@media (min-width: 1024px) {
    .owner-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .home-owner-grid.owner-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.owner-image {
    border-radius: 0.5rem;
    overflow: hidden;
}

.owner-image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.owner-label {
    color: #1F7890;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 1rem 0;
    font-weight: 600;
    display: inline-block;
    background-color: rgba(21, 115, 140, 0.08);
    border: 1px solid rgba(21, 115, 140, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
}

.owner-title {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 400;
    color: #1F7890;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

@media (max-width: 767px) {
    .owner-title {
        font-size: 1.75rem;
    }
}

.owner-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: #1F7890;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
    font-style: normal;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .owner-subtitle {
        font-size: 1.25rem;
        letter-spacing: 0.03em;
    }
}

.owner-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.owner-text p {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.8;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

@media (max-width: 767px) {
    .owner-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .owner-quote {
        font-size: 1rem !important;
    }
}

.owner-highlight {
    background-color: transparent;
    border-bottom: 2px solid #1F7890;
    color: #1F7890;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0 0 2px 0;
    display: inline-block;
    width: auto;
    align-self: flex-start;
}

.owner-quote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: hsl(var(--foreground));
    border-left: 4px solid #1F7890;
    padding-left: 1.5rem;
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

/* Team Avatars */
.team-avatars {
    margin-bottom: 2rem;
}

.team-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin: 0 0 1rem 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.team-member {
    position: relative;
}

.team-member img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid hsl(var(--background));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member-initial {
    width: 48px;
    height: 48px;
}

.team-initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #A5A8AF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.team-member-initial:hover .team-initial {
    transform: scale(1.1);
}

/* Custom Tooltips */
.team-member[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #072E39;
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
    pointer-events: none;
}

.team-member[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -2.25rem;
}

/* ==========================================================================
   Section 7: Your Experience
   ========================================================================== */
.experience-section {
    padding: 5rem 0;
    background-color: #fcfbf9;
    text-align: center;
}

.experience-section .container {
    max-width: 1400px;
}

@media (max-width: 767px) {
    .experience-section {
        padding: 4rem 0;
    }
}

.experience-intro-text {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.experience-intro-text .section-title {
    font-size: 2rem;
    /* Adjusted for better balance */
    font-weight: 500;
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
}

@media (max-width: 767px) {
    .experience-intro-text .section-title {
        font-size: 1.5rem;
    }
}

.experience-intro-p {
    font-size: 1rem;
    /* Reduced from 1.125rem */
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
    max-width: 480px;
    /* narrowed as requested */
    margin-left: auto;
    margin-right: auto;
}

.experience-features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .experience-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .experience-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .experience-features-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

.feature-item {
    padding: 2rem 1.5rem;
    background-color: #ffffff;
    border-radius: 0.125rem;
    border: 1px solid #eee;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    border-color: #A4D8D8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(21, 115, 140, 0.05);
    color: #114e60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.feature-item h3 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    /* Increased for better presence */
    color: #072E39;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.feature-item p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   Section 8: Gift Card - Full Width
   ========================================================================== */
.gift-card-section {
    background: linear-gradient(145deg, #072E39 0%, #0a3d4a 100%);
    color: #ffffff;
    padding: 6rem 0;
}

.gift-card-section .container {
    max-width: 1200px;
}

.gift-card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gift-card-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .gift-card-section {
        padding: 4rem 0;
    }

    .gift-card-container {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gift-card-content .section-title {
        font-size: 2.25rem;
    }

    .gift-card-headline {
        font-size: 1.25rem;
    }

    .gift-card-text {
        margin-left: auto;
        margin-right: auto;
    }

    .gift-card-image img {
        transform: none !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        max-width: 320px;
        margin: 0 auto;
    }
}

.gift-card-content .section-subtitle {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #A4D8D8;
    margin-bottom: 1.5rem;
}

.gift-card-content .section-title {
    margin-bottom: 0.25rem;
}

.gift-card-headline {
    font-size: 1.45rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #A4D8D8;
    font-weight: 500;
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
}

.gift-card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 3.5rem;
    /* increased gap to button */
    max-width: 90%;
}

.gift-card-content .btn-primary {
    padding: 0.9rem 2rem;
    /* Substantial padding */
    font-size: 0.95rem;
}

.gift-card-text p {
    margin-bottom: 1.25rem;
}

.gift-card-text p:last-child {
    margin-bottom: 0;
}

.gift-card-image img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.gift-card-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* ==========================================================================
   Section 9: Bottom CTA
   ========================================================================== */
.bottom-cta-section {
    padding: 4rem 0;
    background-color: #15738B;
    color: #ffffff;
    text-align: center;
}

.bottom-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-description {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 3.5rem;
}

.bottom-cta-section .btn-primary {
    background-color: #ffffff;
    color: #15738B;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

.bottom-cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.cta-icon {
    width: 48px;
    height: 48px;
    aspect-ratio: 1 / 1;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@media (max-width: 767px) {
    .bottom-cta-section {
        padding: 3rem 0;
    }
}

/* ==========================================================================
   Team Grid Mobile Optimization (5+2)
   ========================================================================== */
@media (max-width: 767px) {
    .team-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start;
        /* Left aligned as requested */
        max-width: 260px;
        /* Fits exactly 5 avatars per line */
        margin: 0;
        /* Align left */
    }
}

.team-member img,
.team-initial {
    width: 44px !important;
    height: 44px !important;
    border-width: 1px !important;
}
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* ==========================================================================
   New Contact Page Styles (Professional/Clean)
   ========================================================================== */

/* ==========================================================================
   New Contact Page Styles (Editorial / Premium)
   ========================================================================== */

/* Page Header */
.page-header-minimal {
    padding: 6rem 0 4rem;
    /* Balanced editorial padding */
    text-align: center;
    background: linear-gradient(135deg, #072E39 0%, #0a3d4d 100%);
    color: #ffffff;
}

.page-title-minimal {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0 0 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.page-subtitle-minimal {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .page-subtitle-minimal {
        font-size: 1rem;
    }
}

/* Quick Actions Section */
.quick-actions-section {
    padding: 2.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid hsl(var(--border));
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-action-card {
    background: #ffffff;
    border: 1px solid hsl(var(--border));
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
}

.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: #1F7890;
}

.quick-action-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: #1F7890;
    margin-bottom: 0.75rem;
}

.quick-action-desc {
    font-size: 16px;
    letter-spacing: 0.8px;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

/* Split Section */
.contact-split-section {
    padding: 5rem 0 8rem;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    /* Major Form, Minor Info */
    gap: 6rem;
    align-items: start;
}

/* Form Column */
.contact-form-col {
    background: #ffffff;
    padding: 4rem;
    border-radius: 2px;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
}

.form-header-simple {
    margin-bottom: 3rem;
}

.form-header-simple h2 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    margin: 0 0 0.5rem;
    font-weight: 400;
}

.form-header-simple p {
    color: hsl(var(--muted-foreground));
    font-size: 1.05rem;
}

.contact-form-clean .form-group-clean {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-group-clean label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
}

.form-group-clean input,
.form-group-clean textarea {
    background: #fbfbfb;
    border: 1px solid hsl(var(--border));
    padding: 1rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: hsl(var(--foreground));
    transition: all 0.25s ease;
    border-radius: 2px;
}

.form-group-clean input:focus,
.form-group-clean textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #1F7890;
    box-shadow: 0 0 0 4px rgba(21, 115, 140, 0.05);
}

.btn-submit-clean {
    background: #1F7890;
    color: #fff;
    padding: 1.25rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-clean:hover {
    background: #0a3d4d;
    box-shadow: 0 10px 20px rgba(10, 61, 77, 0.2);
}

/* Locations Column (Right) */
.location-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: hsl(var(--foreground));
    font-weight: 400;
}

.contact-location-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 2px;
    margin-bottom: 2.5rem;
    border-left: 1px solid hsl(var(--border));
}

.contact-location-primary {
    background: #fcfbf9;
    border-left: 3px solid #1F7890;
}

.contact-location-badge {
    display: inline-block;
    background: #1F7890;
    color: #fff;
    padding: 4px 14px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.contact-location-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.contact-location-address {
    font-style: normal;
    font-size: 1.1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-location-phone {
    display: block;
    color: #1F7890;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    margin-bottom: 2rem;
}

.location-hours p {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
    display: flex;
    justify-content: space-between;
}

/* Careers Band */
.careers-band {
    padding: 4rem 0;
    background: #f8fafa;
    border-top: 1px solid hsl(var(--border));
    text-align: center;
}

.careers-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.careers-text {
    font-size: 1.05rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.careers-link {
    font-size: 1rem;
    color: #1F7890;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(21, 115, 140, 0.2);
    padding-bottom: 4px;
    transition: all 0.2s ease;
}

.careers-link:hover {
    border-color: #1F7890;
}

/* Trust Signal Small */
.trust-signal-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .page-title-minimal {
        font-size: 2.5rem;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-form-col {
        padding: 2.5rem;
    }

    .contact-location-card {
        padding: 2rem;
    }
}

/* Booking Shortcut Section */
.booking-shortcut-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #072E39 0%, #0a3d4d 100%);
    text-align: center;
}

.booking-shortcut-content {
    max-width: 500px;
    margin: 0 auto;
}

.booking-shortcut-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}

.booking-shortcut-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .booking-shortcut-section {
        padding: 3rem 0;
    }

    .booking-shortcut-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Section: Our Values (About Page)
   ========================================================================== */
.about-values-section {
    background: radial-gradient(circle at top right, #0a3d4a, #072E39);
    color: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
}

.values-intro {
    max-width: 700px;
    margin-bottom: 5rem;
    text-align: left;
}

.values-subtitle {
    color: #A4D8D8;
    background-color: rgba(164, 216, 216, 0.1);
    border: 1px solid rgba(164, 216, 216, 0.3);
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.values-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.values-description {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 550px;
    letter-spacing: 0.05em;
}

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

/* Value Cards */
.value-card {
    background: rgba(164, 216, 216, 0.03);
    border: 1px solid rgba(164, 216, 216, 0.1);
    border-radius: 0.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    background: rgba(164, 216, 216, 0.06);
    border-color: rgba(164, 216, 216, 0.3);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(164, 216, 216, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A4D8D8;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: rgba(164, 216, 216, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #A4D8D8;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
    opacity: 0.75;
    margin: 0;
}

.hover-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(164, 216, 216, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover .hover-glow {
    opacity: 1;
}

/* Responsive Adjustments for Values Section */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-intro {
        margin-bottom: 3rem;
    }

}
}

/* Service Pages - Hero Mobile Adjustments */
@media (max-width: 900px) {

    /* Hide the right-side ambiance image on mobile/tablet */
    .hero-img-right {
        display: none !important;
    }

    /* Expand the left-side (service) image to full width */
    .hero-img-left {
        width: 100% !important;
        /* Remove the gradient mask so the image is fully visible */
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
}