/* ========================================
   Heaven Pilates - Premium Boutique Design
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    /* Colors - Soft, premium, natural palette */
    --color-sage: #9DAB97;
    --color-sage-soft: #B4C2AE; /* Softer sage for nav button */
    --color-sage-light: #C8D4C2;
    --color-sage-dark: #7A8B74;
    --color-cream: #FAF7F2;
    --color-warm-white: #FDFCFA;
    --color-beige: #E8E3D9;
    --color-stone: #D4CFC5;
    --color-text-dark: #2C2C2C;
    --color-text-medium: #5A5A5A;
    --color-text-light: #8A8A8A;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index layers */
    --z-navbar: 1000;
    --z-whatsapp-float: 999;
    --z-scroll-top: 998;
    --z-slider-controls: 10;
    --z-slider-overlay: 5;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== Container ========== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-sage-dark);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--color-sage), var(--color-sage-light));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: var(--z-navbar);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sage);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ========== Soft WhatsApp Nav Button ========== */
.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-sage-soft), var(--color-sage-light));
    color: white;
    font-weight: 500;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(157, 171, 151, 0.25);
    transition: var(--transition-smooth);
}

.btn-whatsapp-nav:hover {
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-soft));
    box-shadow: 0 6px 20px rgba(157, 171, 151, 0.35);
    transform: translateY(-2px);
}

.btn-whatsapp-nav i {
    font-size: 1.2rem;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text-dark);
    transition: var(--transition-smooth);
}

/* ========== Hero Slider ========== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.3) 0%,
        rgba(44, 44, 44, 0.5) 100%
    );
    z-index: var(--z-slider-overlay);
}

.slide-content {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}

.slide-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Slide Animations */
.slide.active [data-animate="fade-up"] {
    animation: fadeUp 0.8s ease-out forwards;
}

.slide.active [data-animate="fade-up"][data-delay="200"] {
    animation-delay: 0.2s;
    opacity: 0;
}

.slide.active [data-animate="fade-up"][data-delay="400"] {
    animation-delay: 0.4s;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: var(--z-slider-controls);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-slider-controls);
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.indicator.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* ========== Buttons ========== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(157, 171, 151, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(157, 171, 151, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ========== Sections ========== */
.section {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 3rem;
}

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

/* ========== Brand Introduction ========== */
.section-intro {
    background: var(--color-cream);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
}

/* ========== Services Grid ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(157, 171, 151, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-sage-dark);
}

.service-description {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--color-sage);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--color-sage-dark);
    gap: 0.8rem;
}

/* ========== Why Choose Us ========== */
.section-why {
    background: var(--color-warm-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cream), var(--color-beige));
    border-radius: 15px;
    font-size: 1.8rem;
    color: var(--color-sage);
}

.why-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.why-description {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.7;
}

/* ========== CTA Section ========== */
.section-cta {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-cta .btn-primary {
    background: white;
    color: var(--color-sage-dark);
}

.section-cta .btn-primary:hover {
    background: var(--color-warm-white);
}

.section-cta .btn-secondary {
    border-color: white;
    color: white;
}

/* ========== Footer ========== */
.footer {
    background: var(--color-text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-sage-light);
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--color-sage);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-sage-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--color-sage-light);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--color-sage-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========== Fixed WhatsApp Float Button (Bottom Right with Logo) ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-whatsapp-float);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(157, 171, 151, 0.4);
    transition: var(--transition-smooth);
    color: white;
    font-weight: 500;
    animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(157, 171, 151, 0.5);
    animation: none;
}

.whatsapp-float-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-float-text {
    font-size: 1rem;
    white-space: nowrap;
}

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

/* ========== Scroll to Top Button ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-scroll-top);
    width: 50px;
    height: 50px;
    background: var(--color-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(157, 171, 151, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-sage-dark);
    transform: translateY(-5px);
}

/* Position adjustment when WhatsApp float is visible */
body:has(.whatsapp-float) .scroll-top.visible {
    bottom: 100px;
}

/* ========== Responsive Design ========== */

/* Tablet */
@media (max-width: 968px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-warm-white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-slider {
        margin-top: 70px;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
    
    .slider-indicators {
        bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    /* WhatsApp Float - Mobile Optimization */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.6rem 1rem;
    }
    
    .whatsapp-float-text {
        font-size: 0.9rem;
    }
    
    .whatsapp-float-icon {
        width: 35px;
        height: 35px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    body:has(.whatsapp-float) .scroll-top.visible {
        bottom: 85px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .whatsapp-float-text {
        display: none;
    }
    
    .whatsapp-float {
        padding: 0.75rem;
        border-radius: 50%;
    }
}

/* ========== Additional Pages Styles ========== */

/* Page Header */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 100%);
    text-align: center;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    color: var(--color-sage-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Alt Background */
.alt-bg {
    background: var(--color-cream);
}

/* ========== Services Page Styles ========== */

.service-detail {
    padding: 4rem 0;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 5px 20px rgba(157, 171, 151, 0.3);
}

.service-detail-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-sage-dark);
    margin-bottom: 1.5rem;
}

.service-detail-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text-medium);
    text-align: center;
    margin-bottom: 3rem;
}

.service-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--color-sage);
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--color-text-medium);
    line-height: 1.7;
}

.service-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-beige);
}

.service-note {
    background: rgba(157, 171, 151, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-sage);
}

.service-note p {
    color: var(--color-text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-note strong {
    color: var(--color-sage-dark);
}

/* ========== About Page Styles ========== */

.about-story,
.about-philosophy,
.about-values,
.about-space {
    padding: 4rem 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.philosophy-title {
    font-size: 1.5rem;
    color: var(--color-sage-dark);
    margin-bottom: 1rem;
}

.philosophy-text {
    color: var(--color-text-medium);
    line-height: 1.7;
}

/* Values List */
.values-list {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-sage-light);
    line-height: 1;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.5rem;
    color: var(--color-sage-dark);
    margin-bottom: 0.75rem;
}

.value-text {
    color: var(--color-text-medium);
    line-height: 1.8;
}

/* Space Features */
.space-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.space-feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.space-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(157, 171, 151, 0.15);
}

.space-feature i {
    font-size: 2.5rem;
    color: var(--color-sage);
    margin-bottom: 1rem;
}

.space-feature h4 {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.space-feature p {
    color: var(--color-text-medium);
    font-size: 0.9rem;
}

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

.contact-info {
    padding: 4rem 0 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(157, 171, 151, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.contact-card-title {
    font-size: 1.5rem;
    color: var(--color-sage-dark);
    margin-bottom: 0.75rem;
}

.contact-card-text {
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-sage);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-card-link:hover {
    background: var(--color-sage-dark);
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper,
.contact-map-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-description {
    color: var(--color-text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.form-label i {
    color: var(--color-sage);
}

.form-input,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-beige);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(157, 171, 151, 0.1);
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    color: white;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(157, 171, 151, 0.3);
}

.btn-submit:hover {
    box-shadow: 0 6px 30px rgba(157, 171, 151, 0.4);
    transform: translateY(-3px);
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.form-note i {
    color: var(--color-sage);
    margin-top: 3px;
}

/* Contact Map */
.contact-map {
    position: relative;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.9), transparent);
    padding: 2rem;
}

.map-info {
    color: white;
}

.map-info h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.map-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--color-sage-dark);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-map:hover {
    background: var(--color-sage);
    color: white;
}

/* Opening Hours */
.opening-hours {
    padding: 4rem 0;
}

.hours-content {
    max-width: 800px;
    margin: 0 auto;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.hours-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hours-item h4 {
    font-size: 1.3rem;
    color: var(--color-sage-dark);
    margin-bottom: 0.75rem;
}

.hours-item p {
    font-size: 1.1rem;
    color: var(--color-text-medium);
}

.hours-note {
    text-align: center;
    color: var(--color-text-medium);
    padding: 1.5rem;
    background: rgba(157, 171, 151, 0.1);
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hours-note i {
    color: var(--color-sage);
}

.hours-cta {
    text-align: center;
}

/* ========== Responsive Adjustments for Additional Pages ========== */

@media (max-width: 968px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 7rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .service-detail-title,
    .section-title {
        font-size: 2rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
    
    .space-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 2rem;
    }
}