:root {
    --bg-primary: #FBF9F6;
    --bg-secondary: #F0EFEB;
    --bg-dark: #1A1A1A;
    --text-primary: #2C2C2C;
    --text-secondary: #555555;
    --text-light: #FBF9F6;
    --accent: #8C7B6C;
    /* Taupe/Earth tone */
    --accent-hover: #756658;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;

    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 20px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    /* Pill shape */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-shine {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: transparent !important;
    border: none;
    border-radius: 50px;
}

.btn-shine::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: transparent;
    background-image: conic-gradient(transparent,
            transparent 0deg,
            rgba(255, 215, 0, 0.1) 300deg,
            rgba(255, 215, 0, 0.5) 330deg,
            rgba(255, 255, 255, 1) 350deg,
            rgba(255, 215, 0, 0.5) 360deg);
    animation: rotate-border 3.5s linear infinite;
}

.btn-shine::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: var(--accent);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-shine:hover::after {
    background: var(--accent-hover);
}

@keyframes rotate-border {
    100% {
        transform: rotate(1turn);
    }
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--text-light);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(251, 249, 246, 0.95);
    padding: 0.2rem var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled .nav-list a,
.header.scrolled .header-phone {
    color: var(--text-primary);
}

.logo-container .logo {
    height: 44px;
    /* Adjust based on logo file */
    filter: brightness(0) invert(1);
    /* White logo for dark hero */
    transition: var(--transition-smooth);
}

.header.scrolled .logo-container .logo {
    filter: none;
    /* Original color (assuming black) for light background */
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-list a {
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list .btn-nav {
    padding: 0.8rem 1.8rem;
    background-color: var(--text-light);
    color: var(--text-primary);
    border-radius: 50px;
}

.nav-list .btn-nav-highlight {
    background-color: var(--accent);
    color: var(--text-light);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(140, 123, 108, 0.4);
}

.nav-list .btn-nav::after {
    display: none;
}

.nav-list .btn-nav:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(140, 123, 108, 0.5);
    transform: translateY(-1px);
}

.header.scrolled .nav-list .btn-nav-highlight {
    background-color: var(--accent);
    color: var(--text-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-primary);
}

/* Hero Section */
.hero {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 800px;
    padding: var(--spacing-md);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    margin-top: 10px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* Intro Section */
.intro-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.intro-text .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.features-list {
    margin-top: var(--spacing-md);
}

.features-list li {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list .icon {
    color: var(--accent);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.stat-item {
    background-color: white;
    padding: var(--spacing-md);
    text-align: center;
    border-radius: 4px;
    /* Slight rounding but mostly boxy for clean look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent);
}

.stat-item .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

/* Amenities Section */
.amenities-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.amenity-card {
    background: transparent;
    padding: var(--spacing-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    background: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.amenity-card h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.amenity-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Reservation Section */
.reservation-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.reservation-container {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.booking-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(140, 123, 108, 0.2);
    /* Using --accent with opacity */
    border-radius: 12px;
    background-color: rgba(140, 123, 108, 0.02);
    text-align: center;
}

.placeholder-content {
    max-width: 400px;
    padding: var(--spacing-md);
}

.placeholder-content .icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.placeholder-content h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--accent);
}

.placeholder-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.placeholder-content .small {
    font-size: 0.85rem;
    margin-top: var(--spacing-sm);
    opacity: 0.7;
}

/* Explore Section */
.explore-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.explore-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.explore-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.explore-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.explore-card:hover .explore-img img {
    transform: scale(1.1);
}

.explore-card-content {
    padding: var(--spacing-md);
    flex: 1;
}

.explore-card.luxury {
    border: 2px solid var(--accent);
}

.explore-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

.explore-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.explore-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.contact-wrapper {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: 32px;
    padding: var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.contact-info {
    max-width: 600px;
}

.contact-heading {
    color: var(--text-light);
    font-size: clamp(2.2rem, 8vw, 3.8rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1.5px;
}

.contact-heading span {
    color: var(--accent);
    display: block;
}

.contact-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-xl) !important;
    max-width: 550px;
    font-weight: 400;
    opacity: 0.95;
    word-wrap: break-word;
}

.contact-details {
    margin-bottom: 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-sm);
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 5px;
}

.detail-item .value {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-light);
}

.detail-item a:hover {
    color: var(--accent);
}

.booking-link-container {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-link-container .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    margin-top: var(--spacing-sm);
}

.booking-link-container .btn-outline:hover {
    background-color: white;
    color: var(--bg-dark);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .gallery-card {
        flex: 0 0 calc(85vw);
        height: 280px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero .subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {

    /* --- Header --- */
    .header {
        padding: 0.6rem var(--spacing-sm);
        background-color: rgba(251, 249, 246, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .header.scrolled {
        padding: 0.5rem var(--spacing-sm);
    }

    .logo-container .logo {
        height: 36px;
        filter: none !important;
    }

    /* --- Hamburger icon --- */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        padding: 6px;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        background-color: var(--text-primary) !important;
        width: 26px;
        height: 2px;
        display: block;
        transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* --- Slide-down nav panel --- */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: rgba(251, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        clip-path: circle(0% at calc(100% - 36px) 28px);
        transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: none;
    }

    .nav.active {
        clip-path: circle(150% at calc(100% - 36px) 28px);
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
    }

    .nav-list li {
        overflow: hidden;
    }

    .nav-list a {
        color: var(--text-primary) !important;
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0;
        padding: 0.6rem 1rem;
        display: block;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-list a::after {
        display: none;
    }

    .nav.active .nav-list a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered entrance for each menu item */
    .nav.active .nav-list li:nth-child(1) a {
        transition-delay: 0.15s;
    }

    .nav.active .nav-list li:nth-child(2) a {
        transition-delay: 0.22s;
    }

    .nav.active .nav-list li:nth-child(3) a {
        transition-delay: 0.29s;
    }

    .nav.active .nav-list li:nth-child(4) a {
        transition-delay: 0.36s;
    }

    .nav.active .nav-list li:nth-child(5) a {
        transition-delay: 0.43s;
    }

    .nav.active .nav-list li:nth-child(6) a {
        transition-delay: 0.50s;
    }

    .nav.active .nav-list li:nth-child(7) a {
        transition-delay: 0.57s;
    }

    /* Reset delays when closing */
    .nav-list a {
        transition-delay: 0s !important;
    }

    .nav.active .nav-list li:nth-child(1) a {
        transition-delay: 0.15s !important;
    }

    .nav.active .nav-list li:nth-child(2) a {
        transition-delay: 0.22s !important;
    }

    .nav.active .nav-list li:nth-child(3) a {
        transition-delay: 0.29s !important;
    }

    .nav.active .nav-list li:nth-child(4) a {
        transition-delay: 0.36s !important;
    }

    .nav.active .nav-list li:nth-child(5) a {
        transition-delay: 0.43s !important;
    }

    .nav.active .nav-list li:nth-child(6) a {
        transition-delay: 0.50s !important;
    }

    .nav.active .nav-list li:nth-child(7) a {
        transition-delay: 0.57s !important;
    }

    /* CTA button in mobile menu */
    .nav-list .btn-nav {
        margin-top: 1rem;
        background-color: var(--accent) !important;
        color: var(--text-light) !important;
        font-family: var(--font-body);
        font-size: 1rem !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px !important;
        padding: 0.9rem 2.5rem !important;
        border-radius: 50px;
    }

    .nav-list .btn-nav:hover {
        background-color: var(--accent-hover) !important;
    }

    /* --- Other mobile layout fixes --- */
    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    html {
        scroll-padding-top: 60px;
    }
}

/* Map */
.map-container {
    width: 100%;
    margin-top: var(--spacing-md);
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    opacity: 0.9;
    filter: grayscale(20%);
    /* Blend with the dark theme a bit */
    transition: var(--transition-smooth);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-container:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (min-width: 900px) {
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        align-items: stretch;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .map-container {
        margin-top: 0;
        height: 100%;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .container {
        width: 95%;
        padding: 0 var(--spacing-xs);
    }

    .intro-section,
    .amenities-section,
    .reservation-section,
    .explore-section,
    .contact-section {
        padding: var(--spacing-lg) 0;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .amenity-card {
        padding: 1.25rem;
        background: white;
        border: 1px solid rgba(140, 123, 108, 0.1);
        border-radius: 20px;
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 0 1rem;
        align-items: start;
        text-align: left;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .amenity-icon {
        font-size: 2rem;
        margin: 0;
        grid-row: 1 / 3;
        line-height: 1;
        display: flex;
        justify-content: center;
        padding-top: 4px;
    }

    .amenity-card h3 {
        margin: 0 0 4px 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
    }

    .amenity-card p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .detail-item .value {
        font-size: 1.2rem;
    }

    .contact-wrapper {
        padding: 1.5rem 1.25rem;
        border-radius: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-heading {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .contact-subtext {
        font-size: 1rem;
        margin-bottom: 2rem !important;
    }

    .map-container {
        height: 250px;
        margin-top: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

/* Extra small devices refinement */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 0.9rem;
    }
}