/* Clean & Professional Minimalist Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #FDFBF7; /* Warm earthy white */
    --text-dark: #2B1E16; /* Crisp Dark Espresso */
    --text-light: #FFFFFF;
    --accent: #9C6644; /* Warm Coffee / Earth Tone */
    --accent-hover: #7F5539;
    --dark-bg: #4A3B32; /* Deep Muted Brown */
    --surface: #FFFFFF; /* Pure White Cards */

    --font-heading: 'Cormorant Garamond', serif; /* Sophisticated serif */
    --font-body: 'Inter', system-ui, sans-serif; /* Clean tech-like readability */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography styles */
.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.section-tag.light {
    color: var(--accent);
    opacity: 0.8;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-title.light {
    color: var(--text-light);
}

.section-desc {
    font-size: 1.05rem;
    color: #9AA0A6; /* Soft gray */
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 10px 60px;
}

.logo {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 400px; /* Giant brand presence (1.5x) */
    width: auto;
    margin-left: -40px; /* Nudged further left for visual alignment */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-logo {
    height: 200px; /* Scaled scrolled logo */
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.nav a:hover {
    color: var(--accent);
}

.nav-btn {
    border: 1px solid var(--text-dark);
    padding: 12px 25px;
    border-radius: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    font-size: 2.2rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1001; /* Above dropdown */
}

.nav-btn:hover {
    background-color: var(--text-dark);
    color: var(--bg-color);
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #fff;
    padding: 16px 45px;
    border-radius: 4px; /* Premium sharp/micro-radius aesthetic */
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(196, 156, 118, 0.3);
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(108, 122, 109, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--surface);
    color: var(--text-dark);
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #E0E0E0;
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--text-dark);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.btn-outline:hover {
    background-color: var(--accent);
    color: var(--text-light);
}

/* Clean Split Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background-color: var(--bg-color);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 2;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-cta-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px; /* Clean sharp corners */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); /* Professional subtle shadow */
}

.icon-moon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #555;
}

/* Info Section */
.info-section {
    background-color: var(--bg-color); /* Kept pristine */
    color: var(--text-dark);
    padding: 80px 0 20px; /* Decent bottom padding */
    position: relative;
}

.info-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.info-images {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.img-wrapper {
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); /* Stronger premium shadow */
    border-radius: 8px; /* Clean structured borders */
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.img-wrapper.main {
    position: relative;
    width: 100%;
    max-width: 380px; /* Reduced width to scale down overall height */
    aspect-ratio: 10/12.5; /* Slightly less tall ratio to avoid empty vertical space */
    z-index: 1;
    border: 1px solid #EAE5DF;
    border-radius: 300px 300px 8px 8px; /* Perfect top curve (Arch) */
}

.award-badge-inline {
    background-color: var(--surface);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 4px; 
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #ECECEC;
}

.info-content {
    flex: 1;
}

.ingredients-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

.ingredients-list {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.ingredient {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.ingredient:hover .icon-circle {
    background-color: var(--bg-color);
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

.ingredient span {
    font-size: 0.85rem;
    font-weight: 700;
}

.info-buttons {
    display: flex;
    gap: 15px;
}

/* Services Section */
.services-section {
    padding: 40px 0 100px; /* Decent top padding */
    background-color: var(--bg-color);
    margin-top: 0px; /* Reset negative margin */
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    padding: 15px; /* Add internal padding to act as a frame */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #ECECEC; 
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
}

.service-card img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.03);
}

/* 1. Masaje Relajante: Forma de Arco (Arch) */
.service-card:nth-child(1) img {
    border-radius: 200px 200px 4px 4px;
}

/* 2. Piedras Calientes: Forma de Píldora (Pill / Oval) */
.service-card:nth-child(2) img {
    border-radius: 120px;
}

/* 3. Maderoterapia: Forma de Gota / Hoja (Leaf) */
.service-card:nth-child(3) img {
    border-radius: 120px 4px 120px 4px;
}

/* 4. Limpieza Facial: Gota Invertida (Inverted Leaf) */
.service-card:nth-child(4) img {
    border-radius: 4px 120px 4px 120px;
}

.service-info {
    padding: 25px 10px 10px;
    text-align: center;
}

.service-info h3 {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark); 
}

.service-info p {
    font-size: 0.95rem;
    color: #555; /* Clinical crisp gray */
    line-height: 1.5;
}

/* Dark Features Section */
.dark-features {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 100px 0;
}

.dark-container {
    display: flex;
    flex-direction: column;
}

.dark-header {
    text-align: left;
    margin-bottom: 50px;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    max-width: 800px;
}

.feature-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05); /* Clean contrast inside dark box */
    padding: 40px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: var(--accent);
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: var(--text-light);
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.dark-footer {
    margin-top: 40px;
}

.link-more {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    text-decoration: underline;
}

.link-more:hover {
    color: var(--accent);
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.offer-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.offer-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.offer-image img {
    max-width: 90%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-image:hover img {
    transform: translateY(-5px);
}

.offer-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-content .section-title {
    font-size: 2.2rem;
}

.offer-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.offer-content p {
    font-size: 1.1rem;
    color: #9AA0A6;
    margin-bottom: 35px;
}

.offer-discount {
    font-size: 1.8rem;
    color: var(--accent);
    margin: 20px 0 30px;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.footer p {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer h2 {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 2.5rem;
    color: var(--accent);
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.contact-container {
    max-width: 600px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Multi-Action Floating Button */
.fab-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

/* Options are shown when active (clicked) or hover on devices that support it */
.fab-container.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: hover) {
    .fab-container:hover .fab-options {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--text-dark); /* Dark Espresso */
    color: var(--surface); /* Pure White icon */
    border: 1px solid var(--accent); /* Copper border */
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.fab-option:hover {
    transform: scale(1.1);
    background-color: var(--accent); /* Copper fill on hover */
    color: var(--surface);
    border-color: var(--accent);
}

@keyframes elegantPulse {
    0% { box-shadow: 0 0 0 0 rgba(156, 102, 68, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(156, 102, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 102, 68, 0); }
}

.fab-main {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--surface);
    font-size: 32px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: elegantPulse 2.5s infinite;
}

.fab-main:hover {
    transform: scale(1.05) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-hover), var(--text-dark));
    animation: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Custom Booking Calendar Modal */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 26, 24, 0.85); /* Dark elegant overlay */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-modal.show {
    display: flex;
    opacity: 1;
}

.calendar-content {
    background-color: #FFFFFF;
    padding: 60px 50px;
    border-radius: 4px;
    text-align: center;
    max-width: 850px;
    width: 95%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.98);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.custom-modal.show .calendar-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--text-dark);
}

/* iOS/Elegant Style Month Grid Calendar */
.calendar-wrapper { 
    margin-top: 25px; 
    text-align: left; 
}

.calendar-header-styled {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 25px;
    padding: 0 10px;
}

.calendar-header-styled button {
    background: #FAFAF8; 
    border: 1px solid #EAE5DF; 
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem; 
    cursor: pointer; 
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.calendar-header-styled button:hover {
    background: #EAE5DF;
    transform: scale(1.05);
}

.calendar-header-styled h3 {
    font-size: 1.1rem; 
    font-family: var(--font-body); 
    font-weight: 700; 
    color: var(--text-dark);
    margin: 0;
}

.calendar-weekdays {
    display: grid; 
    grid-template-columns: repeat(7, 1fr); 
    text-align: center; 
    font-size: 0.8rem; 
    color: #888; 
    font-weight: bold; 
    margin-bottom: 10px;
}

.calendar-days-grid {
    display: grid; 
    grid-template-columns: repeat(7, 1fr); 
    gap: 12px 0; 
    text-align: center; 
    margin-bottom: 25px; 
    border-bottom: 1px solid #EAE5DF; 
    padding-bottom: 25px;
}

.day-cell { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 40px; 
    cursor: pointer; 
}

.day-cell.empty { cursor: default; }

.day-cell.disabled { 
    opacity: 0.2; 
    cursor: not-allowed; 
    pointer-events: none;
}

.day-circle {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 38px; 
    height: 38px; 
    border-radius: 50%;
    background-color: #F3F4F3; /* Pristine light gray */
    color: var(--text-dark); 
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.day-cell:not(.disabled):not(.empty):hover .day-circle {
    background-color: #E2E6E2;
}

.day-cell.today .day-circle {
    background-color: transparent;
    border: 1px solid #CCC;
}

.day-cell.active .day-circle {
    background-color: var(--accent); /* Sage Green */
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(108, 122, 109, 0.4);
}

.time-slots-container {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); 
    gap: 15px;
}

.cal-slot {
    background-color: transparent;
    border: 1px solid #EAE5DF;
    color: var(--text-dark);
    padding: 15px 5px;
    border-radius: 2px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    font-family: var(--font-body);
    animation: fadeUp 0.5s ease backwards;
}

.cal-slot:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: #FAFAF8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 156, 118, 0.08);
}

.cal-slot.occupied {
    background-color: transparent;
    border-color: #f2efeb;
    color: #D3CDC6;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.6;
}

.cal-slot.occupied:hover {
    transform: none;
    box-shadow: none;
    border-color: #f2efeb;
    color: #D3CDC6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

/* --- MOBILE COMPACT CALENDAR OVERRIDES --- */
@media (max-width: 600px) {
    .calendar-content {
        padding: 25px 15px 20px;
        width: 98%;
        max-height: 98vh; /* Maximize vertical height allowed */
    }
    
    .calendar-content .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 5px !important;
    }
    
    .calendar-content .section-desc {
        display: none; /* Hide explanatory text to save vertical space */
    }
    
    .calendar-header-styled {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    
    .calendar-header-styled h3 {
        font-size: 1rem;
    }
    
    .calendar-header-styled button {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .calendar-weekdays {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .calendar-days-grid {
        gap: 2px 0; /* Minimal vertical gap */
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .day-cell {
        height: 34px;
    }
    
    .day-circle {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .time-slots-container {
        /* Force 4 columns so 8 timeslots fit in exactly 2 rows */
        grid-template-columns: repeat(4, 1fr); 
        gap: 8px;
    }
    
    .cal-slot {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .close-modal {
        top: 8px;
        right: 15px;
        font-size: 30px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .info-images {
        aspect-ratio: auto;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .img-wrapper.main {
        width: 90%;
        max-width: 450px;
        position: relative;
        /* Inherits the exact same 300px arch border-radius */
    }

    .hero-container,
    .info-container,
    .offer-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .info-content,
    .offer-content {
        padding: 0;
        margin-bottom: 50px;
    }

    .hero-content, .info-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-list > div {
        justify-content: center;
        text-align: center;
    }

    .dark-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .info-images {
        min-height: 400px;
        width: 100%;
    }

    .nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%; /* Hidden offscreen by default */
        width: 100%;
        height: 100vh;
        background-color: rgba(250, 250, 249, 0.98);
        backdrop-filter: blur(15px);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 40px;
    }

    .nav.active {
        right: 0; /* Slide in */
    }

    .nav a {
        font-size: 1.5rem;
    }

    .nav-btn {
        margin-top: 20px;
        font-size: 1.2rem !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Adjust massive logo for mobile screens to ensure it looks good */
    .header-logo {
        height: 150px; 
    }
    .header.scrolled .header-logo {
        height: 90px;
    }
    .header, .header.scrolled {
        padding: 15px 30px; /* Increased side padding for better symmetry */
    }
}