/* Zen, ethereal, and muted theme for Veranaturae */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --main: #6b5e4e; /* muted brown */
    --accent: #b6bfa5; /* sage green */
    --highlight: #e7d9c4; /* soft beige */
    --background: #f9f8f6; /* off-white */
    --text: #3e3a34; /* deep muted brown */
    --soft-orange: #eac29a;
    --soft-green: #bfcfb2;
    --dark-green: #8fa876; /* darker green */
    --soft-pink: #f3e3d3;
    --white: #fff;
    --shadow: rgba(107, 94, 78, 0.08);
}

body {
    background: var(--background);
    color: var(--text);
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 140px;
    min-height: 100vh;
}

header {
    background: linear-gradient(90deg, var(--highlight) 0%, var(--accent) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 0;
    z-index: 1000;
    box-shadow: 0 2px 12px var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    width: 110px;
    height: 110px;
    background: var(--white);
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 2px 16px var(--shadow);
    object-fit: contain;
    transition: transform 0.3s;
}
.logo:hover {
    transform: scale(1.04) rotate(-2deg);
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    margin-right: 3rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: var(--main);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 18px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
nav a:hover {
    background: var(--soft-green);
    color: var(--text);
}

/* Language Selector with Flags */
.language-selector {
    margin-left: 1.5rem;
    position: relative;
    flex-shrink: 0;
}

.language-flags {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-flag {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(107, 94, 78, 0.3);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

.language-flag:hover {
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(107, 94, 78, 0.3);
}

.language-flag.active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(182, 191, 165, 0.5);
}

.language-flag.en {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><rect width="60" height="30" fill="%23012169"/><path d="M0 0 L60 30 M60 0 L0 30" stroke="white" stroke-width="4"/><path d="M0 0 L60 30 M60 0 L0 30" stroke="%23C8102E" stroke-width="2.5"/><path d="M30 0 L30 30 M0 15 L60 15" stroke="white" stroke-width="5"/><path d="M30 0 L30 30 M0 15 L60 15" stroke="%23C8102E" stroke-width="3"/></svg>');
}

.language-flag.fr {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 40"><rect width="20" height="40" fill="%2300295D"/><rect x="20" width="20" height="40" fill="white"/><rect x="40" width="20" height="40" fill="%23ED2939"/></svg>');
}

.language-flag.it {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 40"><rect width="20" height="40" fill="%23009246"/><rect x="20" width="20" height="40" fill="white"/><rect x="40" width="20" height="40" fill="%23CE2B37"/></svg>');
}

@media (max-width: 991px) {
    .language-selector {
        margin-left: 0;
        margin-top: 2rem;
    }

    .language-flags {
        justify-content: center;
        gap: 1rem;
    }

    .language-flag {
        width: 40px;
        height: 30px;
    }
}

/* Floating Services Button (removed - keeping for potential future use) */
.floating-services {
    background: var(--dark-green);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 4px 20px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    color: var(--white);
    animation: gentlePulse 3s ease-in-out infinite;
    min-width: 50px;
    min-height: 50px;
}

@keyframes gentlePulse {
    0%, 100% {
        box-shadow: 0 4px 20px var(--shadow);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px var(--shadow), 0 0 0 1px rgba(182, 191, 165, 0.3);
        transform: scale(1.02);
    }
}

.floating-services:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px var(--shadow), 0 0 0 2px var(--accent);
    background: var(--soft-green);
    animation: none;
}

.floating-services i {
    font-size: 1.4rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.floating-services:hover i {
    transform: scale(1.1);
    color: var(--white);
}

.floating-services span {
    font-size: 1rem;
    white-space: nowrap;
    font-weight: 600;
    display: none; /* Hide text on all screen sizes */
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 94, 78, 0.3);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, rgba(249, 248, 246, 0.95) 0%, rgba(231, 217, 196, 0.9) 100%);
    border-radius: 40px;
    max-width: 1000px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(107, 94, 78, 0.15), 0 0 0 1px rgba(182, 191, 165, 0.2);
    animation: modalSlideIn 0.4s ease;
    border: 1px solid rgba(182, 191, 165, 0.3);
    backdrop-filter: blur(10px);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem 1rem 2.5rem;
    border-bottom: 1px solid rgba(182, 191, 165, 0.2);
    background: linear-gradient(135deg, rgba(243, 227, 211, 0.8) 0%, rgba(231, 217, 196, 0.6) 100%);
    border-radius: 37px 37px 0 0;
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h3 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    margin: 0;
    font-size: 1.6rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.modal-close {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(182, 191, 165, 0.4);
    font-size: 1rem;
    color: var(--main);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(107, 94, 78, 0.1);
    backdrop-filter: blur(5px);
    margin-right: 0.7rem;
    margin-left: 1rem;
}

.modal-close:hover {
    background: rgba(182, 191, 165, 0.3);
    color: var(--text);
    transform: scale(1.05) rotate(90deg);
    box-shadow: 0 4px 20px rgba(107, 94, 78, 0.15);
}

.modal-body {
    padding: 2rem 3rem 2rem 3rem;
    background: transparent;
}

.hero {
    background: linear-gradient(rgba(107, 94, 78, 0.3), rgba(182, 191, 165, 0.4)), url('../images/landscape_veranaturae.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0 3rem 0;
    text-align: center;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 4px 32px var(--shadow);
    margin-bottom: 2rem;
    position: relative;
}

.hero-services-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--soft-green) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(107, 94, 78, 0.3);
    z-index: 10;
}

.hero-services-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 94, 78, 0.4);
    color: var(--white);
    text-decoration: none;
}

.hero-services-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .hero-services-btn {
        position: static;
        display: inline-flex;
        margin: 2rem auto 0;
        bottom: auto;
        right: auto;
    }
    
    .hero {
        text-align: center;
    }
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}
.hero h1 {
    color: #ffffff; /* white text for better contrast */
    text-shadow: 0 4px 12px rgba(0,0,0,0.6), 0 2px 4px rgba(0,0,0,0.8), 0 1px 2px rgba(0,0,0,0.9);
    background: rgba(0,0,0,0.25);
    padding: 0.4em 0.8em;
    border-radius: 25px;
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    margin-bottom: 0.35rem;
    letter-spacing: 2px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.subtitle {
    font-size: 1.5rem;
    color: #ffffff; /* white text for better contrast */
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: 0 3px 8px rgba(0,0,0,0.7), 0 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.2);
    padding: 0.6em 1em;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Mindfulness Section */
.mindfulness-section {
    padding: 4rem 0;
    background: var(--background);
}

.mindfulness-section h2 {
    text-align: center;
    color: var(--main);
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.mindfulness-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--soft-green) 100%);
    border-radius: 2px;
}

.mindfulness-intro,
.mindfulness-description,
.mindfulness-benefits {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.mindfulness-intro p,
.mindfulness-description p,
.mindfulness-benefits p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

.mindfulness-benefits ul {
    text-align: left;
    max-width: 600px;
    margin: 1.5rem auto 0 auto;
    padding-left: 2rem;
}

.mindfulness-benefits li {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0.8rem;
    list-style-type: disc;
}

.mindfulness-benefits li:last-child {
    margin-bottom: 0;
}

.icon-divider {
    text-align: center;
    margin: 3rem 0;
}

.icon-divider i {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.7;
    animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(231, 217, 196, 0.3) 0%, rgba(191, 207, 178, 0.2) 100%);
}

.about-section h2 {
    text-align: center;
    color: var(--main);
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

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

.about-image {
    text-align: center;
}

.about-image h3 {
    color: var(--main);
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(107, 94, 78, 0.15);
    transition: transform 0.3s ease;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact {
    padding: 4rem 0;
    background: var(--background);
    text-align: center;
}

.contact h2 {
    color: var(--main);
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--soft-green) 100%);
    color: var(--main);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(107, 94, 78, 0.1);
    border: 1px solid rgba(182, 191, 165, 0.3);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(107, 94, 78, 0.15);
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--accent) 100%);
    color: var(--text);
}

footer {
    background: linear-gradient(135deg, var(--main) 0%, var(--dark-green) 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.yoga-alliance-logo {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yoga-alliance-logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.yoga-alliance-logo a:hover {
    opacity: 0.8;
}

.yoga-alliance-img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Mobile Navigation */
.burger-menu {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    background: transparent;
    border: none;
    outline: none;
    z-index: 1001;
}

.burger-menu:hover {
    background: rgba(182, 191, 165, 0.2);
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(249, 248, 246, 0.98) 0%, rgba(231, 217, 196, 0.95) 100%);
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(182, 191, 165, 0.3);
    padding-top: 120px; /* Add padding to account for header height */
    box-shadow: 0 4px 20px rgba(107, 94, 78, 0.1);
    display: none; /* Hidden by default, shown on mobile */
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav a {
    display: block;
    color: var(--main);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 15px;
    transition: background 0.3s ease;
    margin-bottom: 0.5rem;
}

.mobile-nav a:hover {
    background: var(--soft-green);
    color: var(--text);
}

/* Responsive Design - Consolidated into comprehensive media queries above */
/* This section is now handled by the comprehensive responsive design below */
    
    .modal-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-item {
        padding: 1.2rem;
    }
    
    .pricing-item h5 {
        font-size: 1.1rem;
    }
    
    .pricing-item .price {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
    
    .modal-features {
        padding: 1.2rem;
    }
    
    .modal-features h5 {
        font-size: 1rem;
    }
    
    .modal-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-pricing {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-item {
        padding: 1.2rem;
    }
    
    .pricing-item h5 {
        font-size: 1.1rem;
    }
    
    .pricing-item .price {
        font-size: 1.2rem;
    }
    
    .modal-features {
        padding: 1.2rem;
    }
    
    .modal-features h5 {
        font-size: 1rem;
    }
    
    .modal-features li {
        font-size: 0.9rem;
    }
    
    /* Name explanation modal responsive */
    .name-breakdown {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .name-part {
        padding: 1.2rem;
    }
    
    .name-part h4 {
        font-size: 1.1rem;
    }
    
    .name-meaning {
        padding: 1.5rem;
    }
    
    .name-meaning h4 {
        font-size: 1.2rem;
    }
    
    .name-meaning p {
        font-size: 1rem;
    }
    
    /* Add mobile-specific pulse animation */
    @keyframes mobilePulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 6px 25px rgba(107, 94, 78, 0.3), 0 0 0 2px var(--accent);
        }
        50% {
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(107, 94, 78, 0.4), 0 0 0 3px var(--accent), 0 0 20px rgba(182, 191, 165, 0.6);
        }
    }

@media (max-width: 600px) {
    header {
        padding: 1rem 0;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .logo-link {
        margin-right: 1rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .burger-menu span {
        width: 20px;
        height: 2px;
    }
    
    .mobile-nav {
        padding: 1.5rem;
    }
    
    .mobile-nav a {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        padding: 0.25em 0.5em;
        max-width: 95%;
        margin: 0 auto 0.35rem auto;
        word-wrap: break-word;
        hyphens: auto;
        letter-spacing: 1px;
    }
    
    .subtitle {
        font-size: 1.1rem;
        padding: 0.4em 0.7em;
        max-width: 95%;
        margin: 0 auto;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .services h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card::before {
        display: none;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    footer {
        padding: 1.5rem 0;
    }
    
    .service-image {
        height: auto;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--background);
    }
    
    .service-img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
    
    .mindfulness-intro p,
    .mindfulness-description p,
    .mindfulness-benefits p {
        font-size: 1.1rem;
    }
    
    .mindfulness-benefits li {
        font-size: 1.1rem;
    }
    
    .about-section h2 {
        font-size: 2.2rem;
    }
    
    /* Further adjust floating services button for smaller screens */
    .floating-services-container {
        top: 85%;
        left: 0.5rem;
        z-index: 999;
    }
    
    .floating-services {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        /* Enhanced visibility for small screens */
        background: linear-gradient(135deg, var(--dark-green) 0%, var(--accent) 100%);
        box-shadow: 0 8px 30px rgba(107, 94, 78, 0.4), 0 0 0 3px var(--white), 0 0 25px rgba(182, 191, 165, 0.7);
        animation: smallMobilePulse 1.5s ease-in-out infinite;
        border: 3px solid var(--white);
        position: relative;
    }
    
    .floating-services::before {
        content: "💡";
        position: absolute;
        top: -15px;
        right: -10px;
        font-size: 1.2rem;
        animation: sparkle 2s ease-in-out infinite;
    }
    
    /* Enhanced pulse animation for small screens */
    @keyframes smallMobilePulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 8px 30px rgba(107, 94, 78, 0.4), 0 0 0 3px var(--white), 0 0 25px rgba(182, 191, 165, 0.7);
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 12px 40px rgba(107, 94, 78, 0.5), 0 0 0 4px var(--white), 0 0 35px rgba(182, 191, 165, 0.9);
        }
    }
    
    @keyframes sparkle {
        0%, 100% {
            opacity: 0.7;
            transform: scale(1) rotate(0deg);
        }
        50% {
            opacity: 1;
            transform: scale(1.2) rotate(180deg);
        }
    }
    
    /* Italian language specific adjustments for mobile */
    html[lang="it"] .mobile-nav a {
        font-size: 1rem;
        padding: 0.7rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    html[lang="it"] .mindfulness-section h2 {
        font-size: 2.4rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    html[lang="it"] nav a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Coming Soon Tag Styles */
.coming-soon-tag {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--soft-orange);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    box-shadow: 0 2px 8px rgba(107, 94, 78, 0.15);
    border: 1px solid rgba(182, 191, 165, 0.3);
    z-index: 10;
    animation: gentleGlow 2s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
    0% {
        box-shadow: 0 2px 8px rgba(107, 94, 78, 0.15);
    }
    100% {
        box-shadow: 0 4px 12px rgba(107, 94, 78, 0.25), 0 0 0 1px rgba(182, 191, 165, 0.4);
    }
}

/* Services Section */

.services-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(182, 191, 165, 0.3);
    box-shadow: 0 2px 8px rgba(107, 94, 78, 0.1);
    position: sticky;
    top: 30px;
    z-index: 5;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.info-item span {
    font-weight: 500;
    line-height: 1.4;
}

/* Mobile-specific fixes for flip cards */

@media (max-width: 600px) {
    
    /* Services responsive for small screens */
    .services h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        border-radius: 15px;
    }
    
    .service-image {
        height: auto;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--background);
    }
    
    .service-img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
    
    .service-content {
        padding: 1.2rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-teaser {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Modal responsive for small screens */
    .service-modal .modal-content {
        width: 98%;
        margin: 0.5rem;
        border-radius: 20px;
    }
    
    .service-modal .modal-body {
        padding: 0;
    }
    
    .modal-content-wrapper {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .modal-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-item {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .pricing-item h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .pricing-item p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .pricing-item .price {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }
    
    .modal-features {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .modal-features h5 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Name explanation modal responsive for small screens */
    .name-explanation-content {
        padding: 0 0.5rem;
    }
    
    .name-explanation-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .name-explanation-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
} 

/* Services Section */
.services {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(231, 217, 196, 0.2) 0%, rgba(191, 207, 178, 0.1) 100%);
}

.services h2 {
    text-align: center;
    color: var(--main);
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.services-grid-center {
    grid-template-columns: repeat(2, minmax(300px, 400px));
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(249, 248, 246, 0.9) 0%, rgba(231, 217, 196, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(182, 191, 165, 0.2);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--soft-green) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 94, 78, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 94, 78, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.expand-icon {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-card:hover .expand-icon {
    transform: scale(1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-teaser {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-status {
    margin-top: 1rem;
}

.coming-soon {
    background: var(--soft-orange);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    display: inline-block;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 94, 78, 0.8);
    backdrop-filter: blur(10px);
}

.service-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(249, 248, 246, 0.95) 0%, rgba(231, 217, 196, 0.9) 100%);
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(107, 94, 78, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(182, 191, 165, 0.3);
}

.service-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.service-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(107, 94, 78, 0.8);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-modal .modal-close:hover {
    background: var(--main);
    transform: scale(1.1);
}

.service-modal .modal-body {
    padding: 0;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    background: transparent;
}

.service-modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.service-modal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.service-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* Modal Content Styles */
.modal-content-wrapper {
    padding: 2rem;
    border-radius: 20px;
    color: var(--text);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

@media (max-width: 768px) {
    .modal-content-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--main);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.modal-description-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    text-align: left;
    flex: 1;
    margin: 0;
    opacity: 0.9;
}

.modal-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(107, 94, 78, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--soft-green) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-item:hover::before {
    transform: scaleX(1);
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 94, 78, 0.15);
    border-color: rgba(107, 94, 78, 0.2);
}

.pricing-item h5 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-item h5 i {
    color: var(--accent);
    font-size: 1.1rem;
}

.pricing-item p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.pricing-item .price {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--main);
    background: linear-gradient(135deg, rgba(107, 94, 78, 0.1), rgba(182, 191, 165, 0.1));
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.modal-features {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(182, 191, 165, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    height: fit-content;
}

.modal-features h5 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    padding: 0.5rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.modal-features li:hover {
    transform: translateX(5px);
}

.modal-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}

.modal-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--soft-green) 100%);
    color: var(--main);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(107, 94, 78, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 94, 78, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Flyer Download Button Styles */
.modal-flyer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(182, 191, 165, 0.2);
}

.modal-partner-logo {
    margin: 0;
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    align-self: flex-start;
}

.modal-partner-logo p {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.partner-logo-link {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.85;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.partner-logo-link:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.partner-logo-img {
    max-width: 120px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Modal Optimizations */
@media (max-width: 768px) {
    .service-modal .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .service-modal .modal-body {
        padding: 0;
        max-height: calc(90vh - 60px);
        overflow-y: auto;
    }
    
    .modal-content-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .modal-content-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .modal-description-wrapper {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 0;
    }
    
    .modal-pricing {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .pricing-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
        border-radius: 12px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .pricing-item:last-child {
        margin-bottom: 0;
    }
    
    .pricing-item h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    
    .pricing-item .price {
        font-size: 1.2rem;
        padding: 0.7rem 1rem;
        border-radius: 10px;
    }
    
    .modal-features {
        order: 2;
        padding: 1.2rem;
        margin: 0 auto;
        border-radius: 12px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .modal-features h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .modal-features ul {
        margin: 0;
        padding: 0;
    }
    
    .modal-features li {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0.5rem 0;
        margin-bottom: 0.3rem;
    }
    
    .modal-features li:last-child {
        margin-bottom: 0;
    }
    
    .modal-flyer {
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .modal-partner-logo {
        margin: 0;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(3px);
        align-self: center;
        width: 100%;
        max-width: 200px;
    }
    
    .modal-partner-logo p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .partner-logo-img {
        max-width: 100px;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.12);
        padding: 6px;
        background: rgba(255, 255, 255, 0.08);
    }
    
    .partner-logo-link {
        opacity: 0.8;
    }
    
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
    }
    
    .modal-cta {
        order: 4;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(182, 191, 165, 0.2);
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
}

.btn-secondary {
    background: linear-gradient(135deg, var(--highlight) 0%, var(--soft-pink) 100%);
    color: var(--main);
    border: 2px solid var(--accent);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 12px rgba(107, 94, 78, 0.15);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 94, 78, 0.25);
    background: linear-gradient(135deg, var(--accent) 0%, var(--soft-green) 100%);
    color: var(--white);
    border-color: var(--dark-green);
}

.btn-secondary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateY(-1px);
}

/* Name Explanation Modal Styles */
.name-explanation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.name-explanation-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 1.8rem;
    margin: 1rem 0 1.5rem 0;
    letter-spacing: 1px;
    font-weight: 600;
}

.name-explanation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: left;
}

.name-explanation-content p:last-child {
    margin-bottom: 1rem;
}

.name-explanation-content strong {
    color: var(--main);
    font-weight: 600;
}

.name-explanation-content em {
    font-style: italic;
    color: var(--accent);
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    background: var(--background);
}

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

/* Veranaturae Introduction Section */
.veranaturae-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(231, 217, 196, 0.2) 0%, rgba(191, 207, 178, 0.15) 100%);
}

.veranaturae-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.veranaturae-image {
    flex: 0 0 350px;
    max-width: 350px;
}

.vero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    object-fit: cover;
}

.veranaturae-text {
    flex: 1;
    text-align: left;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-family: 'Quicksand', sans-serif;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

.intro-paragraph strong {
    color: var(--main);
    font-weight: 600;
}

.intro-paragraph em {
    font-style: italic;
    color: var(--accent);
}

.intro-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(107, 94, 78, 0.2);
    text-decoration: none;
    color: inherit;
}

.intro-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.intro-card h2 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    text-align: left;
}

/* Flyers Toggle Button */
.flyers-toggle-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: var(--accent);
    border: 2px solid var(--main);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 101;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    color: var(--main);
    font-size: 1rem;
}

.flyers-toggle-btn:hover {
    background: var(--soft-green);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(107, 94, 78, 0.25);
}

.flyers-toggle-btn i {
    font-size: 1.2rem;
}

/* Flyers Sidebar */
.flyers-sidebar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    transform: translateX(calc(100% + 20px));
    width: 280px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow);
    padding: 1.5rem;
    z-index: 100;
    max-height: 80vh;
    overflow-y: auto;
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

/* Flyers Modal (for smaller screens) */
.flyers-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 94, 78, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flyers-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.flyers-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(107, 94, 78, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.flyers-modal-overlay.active .flyers-modal-content {
    transform: scale(1);
}

.flyers-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(107, 94, 78, 0.2);
}

.flyers-modal-close:hover {
    background: var(--dark-green);
    transform: rotate(90deg);
}

.flyers-modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
}

.flyers-modal-header h3 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 1.8rem;
    margin: 0;
    text-align: center;
}

.flyers-modal-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flyer-modal-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.flyer-modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flyer-modal-info h4 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.flyer-modal-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: background 0.3s ease;
    font-weight: 600;
}

.flyer-modal-download:hover {
    background: var(--main);
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 600px) {
    .flyers-modal-content {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .flyers-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .flyer-modal-info h4 {
        font-size: 1.1rem;
    }
}

.flyers-sidebar.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.flyers-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    position: relative;
}

.flyers-sidebar-close-top {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--accent);
    border: 2px solid var(--main);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 102;
    box-shadow: 0 2px 8px rgba(107, 94, 78, 0.2);
    color: var(--main);
    font-size: 1rem;
    pointer-events: all;
}

.flyers-sidebar-close-top:hover {
    background: var(--soft-green);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(107, 94, 78, 0.3);
    color: var(--white);
}

.flyers-sidebar-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 1.5rem;
    margin: 0;
    text-align: left;
}

.flyers-close-btn {
    background: transparent;
    border: none;
    color: var(--main);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flyers-close-btn:hover {
    background: var(--highlight);
    color: var(--text);
}

.flyers-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flyer-sidebar-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.flyer-sidebar-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flyer-sidebar-info {
    text-align: center;
}

.flyer-sidebar-info h4 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.flyer-sidebar-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.flyer-sidebar-download:hover {
    background: var(--main);
    color: var(--white);
    text-decoration: none;
}

/* Show flyers button on all screens, but use modal on smaller screens */
@media (max-width: 1200px) {
    .flyers-sidebar {
        display: none; /* Hide sidebar on smaller screens */
    }
    
    .flyers-toggle-btn {
        display: flex !important; /* Show button on smaller screens */
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        z-index: 999;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        box-shadow: 0 4px 20px rgba(107, 94, 78, 0.3);
        background: var(--accent);
        border: 2px solid var(--main);
    }
    
    .flyers-toggle-btn:hover {
        background: var(--soft-green);
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(107, 94, 78, 0.4);
    }
}

@media (max-width: 600px) {
    .flyers-toggle-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .flyers-toggle-btn span {
        display: inline; /* Show text on mobile too */
    }
}

/* Flyers Section */
.flyers-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(231, 217, 196, 0.3) 0%, rgba(191, 207, 178, 0.2) 100%);
}

.flyers-section h2 {
    text-align: center;
    color: var(--main);
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.flyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.flyer-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.flyer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 94, 78, 0.25);
}

.flyer-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.flyer-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    padding: 0 1rem;
}

.flyer-download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--soft-green) 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin: 0 1rem 1.5rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(107, 94, 78, 0.15);
}

.flyer-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 94, 78, 0.25);
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-green) 100%);
}

.flyer-download-btn i {
    margin-right: 0.5rem;
}

/* Calendar Section */
.calendar-section {
    padding: 4rem 0;
    background: var(--background);
}

.calendar-section h2 {
    text-align: center;
    color: var(--main);
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.calendar-wrapper {
    max-width: 900px;
    margin: 2rem auto 0;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.calendly-inline-widget {
    border-radius: 10px;
    overflow: hidden;
}

.calendar-fallback {
    text-align: center;
    padding: 2rem;
}

.calendar-fallback p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Calendar Service Buttons */
.calendar-service-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.calendar-service-btn {
    background: var(--white);
    color: var(--main);
    border: 2px solid var(--accent);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.calendar-service-btn:hover {
    background: var(--soft-green);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.calendar-service-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(107, 94, 78, 0.2);
}

/* Science Facts Section */
.science-facts {
    margin: 3rem 0;
}

.science-facts h2 {
    text-align: center;
    color: var(--main);
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 94, 78, 0.25);
}

.fact-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.fact-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.fact-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    text-align: left;
}

/* Service Book Button */
.service-book-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--soft-green) 100%);
    color: var(--white);
    padding: 0.7rem 1.3rem;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(107, 94, 78, 0.15);
}

.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 94, 78, 0.25);
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-green) 100%);
}

.service-book-btn i {
    margin-right: 0.5rem;
}

/* Coming Soon Button - Orange and Attention-Grabbing */
span.service-book-btn {
    background: linear-gradient(135deg, #ffd4a3 0%, #ffC067 100%) !important;
    color: var(--white) !important;
    border: 1px solid #ffC067;
    box-shadow: 0 3px 10px rgba(255, 192, 103, 0.25);
    opacity: 1 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

span.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 192, 103, 0.3);
    background: linear-gradient(135deg, #ffC067 0%, #ffd4a3 100%) !important;
}

/* About Page Specific Styles */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.tag {
    background: linear-gradient(135deg, var(--highlight) 0%, var(--soft-pink) 100%);
    color: var(--main);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--accent);
}

.about-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent);
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(182, 191, 165, 0.1) 0%, rgba(191, 207, 178, 0.1) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    font-family: 'Cinzel', serif;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .veranaturae-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .veranaturae-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        max-width: 500px;
    }
    
    .veranaturae-text {
        text-align: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-card {
        padding: 2rem;
    }
    
    .flyers-grid {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-wrapper {
        padding: 1rem;
    }
    
    .calendly-inline-widget {
        min-width: 100% !important;
    }
    
    .about-tags {
        justify-content: center;
    }
}

/* ========== FLYER MODAL ========== */
.flyer-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 58, 52, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flyer-modal-overlay.active {
    opacity: 1;
}

.flyer-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.flyer-modal-overlay.active .flyer-modal-content {
    transform: scale(1);
}

.flyer-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.flyer-modal-close:hover {
    background: var(--dark-green);
    transform: rotate(90deg);
}

.flyer-modal-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--main);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.flyer-modal-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

.flyer-modal-actions {
    text-align: center;
    margin-top: 1.5rem;
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--soft-green) 100%);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(182, 191, 165, 0.5);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--soft-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(107, 94, 78, 0.3);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--dark-green) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(107, 94, 78, 0.4);
}

/* ========== PAGE LOADER ========== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
}

.loader-spinner {
    font-size: 3rem;
    color: var(--accent);
    animation: spin 2s linear infinite, pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========== MODAL ANIMATIONS ========== */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    animation: none;
}

/* ========== ENHANCED CARD INTERACTIONS ========== */
.intro-card,
.flyer-card,
.fact-card,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* ========== ACTIVE NAVIGATION LINK ========== */
nav a.active {
    background: var(--soft-green);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(182, 191, 165, 0.3);
}

/* ========== SMOOTH PAGE TRANSITIONS ========== */
body {
    transition: opacity 0.3s ease;
}

/* ========== ENHANCED FLOATING BUTTON ========== */
.floating-services {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* ========== IMAGE FADE IN ========== */
img {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* ========== ENHANCED SERVICE CARD OVERLAY ========== */
.service-overlay {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ========== COMPREHENSIVE RESPONSIVE DESIGN ========== */

/* Mobile First - Base styles are for mobile */

/* Extra Small Devices (phones, 320px and up) */
@media (min-width: 320px) {
    .container {
        padding: 0 1rem;
    }
    
    body {
        padding-top: 100px;
        font-size: 16px;
    }
    
    .logo {
        width: 70px;
        height: 70px;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .floating-services-container {
        left: 0.5rem;
        top: 85%;
    }
    
    .floating-services {
        width: 50px;
        height: 50px;
        padding: 0;
        min-width: 50px;
        min-height: 50px;
    }
    
    .floating-services i {
        font-size: 1.2rem;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    body {
        padding-top: 110px;
    }
    
    .logo {
        width: 85px;
        height: 85px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .intro-grid,
    .flyers-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }
}

/* Medium Devices (tablets, 768px and up) - iPad */
@media (min-width: 768px) {
    body {
        padding-top: 120px;
        font-size: 17px;
    }
    
    .logo {
        width: 95px;
        height: 95px;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .flyers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-services-container {
        left: 1rem;
        top: 70%;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .flyer-modal-content {
        padding: 2rem;
        max-width: 90%;
    }
    
    .flyer-modal-image {
        max-height: 70vh;
        object-fit: contain;
        width: 100%;
        height: auto;
    }
    
    .flyer-sidebar-image {
        object-fit: contain;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    body {
        padding-top: 130px;
        font-size: 18px;
    }
    
    .logo {
        width: 110px;
        height: 110px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    nav {
        display: flex;
    }
    
    .burger-menu {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .intro-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .flyers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .floating-services-container {
        left: 2rem;
        top: 60%;
    }
    
    .floating-services {
        padding: 0.8rem 1.2rem;
        min-width: auto;
    }
    
    .floating-services span {
        display: inline;
        margin-left: 0.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* XXL Devices (extra large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* ========== MOBILE SPECIFIC ENHANCEMENTS ========== */
@media (max-width: 991px) {
    /* Hide desktop nav, show burger */
    nav {
        display: none !important;
    }
    
    .burger-menu {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .mobile-nav {
        display: block !important;
    }
    
    /* Touch-friendly buttons */
    .button,
    .flyer-download-btn,
    .service-book-btn,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        min-width: 44px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Better spacing for mobile */
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 3rem 0 2rem 0;
        min-height: 50vh;
    }
    
    /* Stack all grids on mobile */
    .intro-grid,
    .flyers-grid,
    .facts-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Adjust modal for mobile */
    .modal-content {
        margin: 1rem;
        max-height: 90vh;
        border-radius: 20px;
        padding: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    /* Better text sizing */
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Floating button adjustments */
    .floating-services {
        transform: none !important;
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        top: auto;
    }
    
    .floating-services-container {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        top: auto;
        transform: none;
    }
    
    /* Calendar adjustments */
    .calendar-wrapper {
        padding: 1rem;
    }
    
    .calendly-inline-widget {
        min-width: 100% !important;
        height: 600px !important;
    }
    
    /* Image optimizations */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .service-img {
        width: 100%;
        height: auto;
        min-height: 250px;
        object-fit: contain;
    }
    
    .flyer-image {
        width: 100%;
        height: auto;
        min-height: 300px;
        object-fit: contain;
    }
    
    .vero-image {
        object-fit: contain;
    }
    
    .about-image img {
        object-fit: contain;
        aspect-ratio: auto;
    }
    
    /* About section mobile */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .about-image img {
        object-fit: contain;
        aspect-ratio: auto;
        max-height: 500px;
    }
    
    /* Veranaturae intro section mobile */
    .veranaturae-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .vero-image {
        object-fit: contain;
        max-height: 500px;
    }
    
    /* Section headings */
    .mindfulness-section h2,
    .about-section h2,
    .services h2,
    .flyers-section h2,
    .calendar-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Better list spacing */
    .mindfulness-benefits ul,
    .modal-features ul {
        padding-left: 1.5rem;
    }
    
    /* Card padding adjustments */
    .intro-card,
    .flyer-card,
    .fact-card {
        padding: 1.5rem;
    }
    
    /* Services info items */
    .services-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-item {
        text-align: center;
    }
}

/* ========== TABLET SPECIFIC (iPad Portrait/Landscape) ========== */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flyers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

/* ========== LANDSCAPE ORIENTATION ========== */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        padding: 2rem 0;
        min-height: 40vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .floating-services-container {
        top: 75%;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    header,
    .floating-services-container,
    .back-to-top,
    .burger-menu,
    .mobile-nav {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
    
    .hero {
        page-break-after: always;
    }
}

/* ========== ACCESSIBILITY - REDUCE MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-services {
        animation: none;
    }
}

/* ========== HIGH CONTRAST MODE ========== */
@media (prefers-contrast: high) {
    :root {
        --shadow: rgba(107, 94, 78, 0.3);
    }
    
    .button,
    .btn-primary,
    .btn-secondary {
        border: 2px solid var(--main);
    }
}

/* ========== DARK MODE SUPPORT (Future Enhancement) ========== */
@media (prefers-color-scheme: dark) {
    /* Can be implemented later if needed */
}
