/* Reset et variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f6fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header et Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/satyaweb.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Buttons group in hero */
.button-group {
    display: inline-flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-button.cta-whatsapp {
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.cta-button.cta-whatsapp:hover {
    background: #1ebe57;
}
.hero-note {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    opacity: 0.9;
}
@media (max-width: 600px) {
    .button-group { gap: 0.6rem; }
}

/* Sections */
.section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Calendar */
.calendar-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.equipment-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--light-bg);
    padding-bottom: 3rem; /* conserve un peu d'air à l'intérieur */
    margin-bottom: 2rem;  /* espace blanc entre la section et le footer */
    border-bottom: 1px solid #e6e8ee; /* délimitation subtile */
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden; /* pour que le rayon s'applique aussi au contenu */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.opening-hours p {
    margin-bottom: 0.5rem;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 1rem 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    width: 16px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-map {
    margin-top: 1rem;
}

.footer-map iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

/* Courses Grid */
.courses-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 2rem;
    overflow: visible;
    justify-content: space-between;
}

.course-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem 1rem 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 calc((100% - 4rem) / 5); /* 5 cards per row, 4 gaps of 1rem */
    max-width: calc((100% - 4rem) / 5);
    scroll-snap-align: start;
}

.course-card img {
    width: 100%;
    max-width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.9rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}

.course-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.course-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.course-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 24px rgba(44,62,80,0.13);
}

/* Premium Courses Grid */
.courses-grid.premium {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 2rem;
    overflow: visible;
    justify-content: space-between;
}

.course-card.premium {
    background: rgba(255,255,255,0.7);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(44,62,80,0.18);
    padding: 1.6rem 1rem 1rem 1rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(44,62,80,0.08);
    backdrop-filter: blur(2px);
    flex: 0 0 calc((100% - 4rem) / 5);
    max-width: calc((100% - 4rem) / 5);
}

.course-img-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.8rem auto;
    box-shadow: 0 2px 12px rgba(44,62,80,0.13);
    border: 3px solid var(--primary-color);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 1.3rem;
    color: var(--secondary-color);
    opacity: 0.18;
    pointer-events: none;
}

/* Desktop breakpoint ensures 5 in a row */
@media (min-width: 1100px) {
    .courses-grid, .courses-grid.premium {
        flex-wrap: nowrap;
    }
}

/* Tablet/Mobile: allow wrapping */
@media (max-width: 900px) {
    .courses-grid, .courses-grid.premium {
        flex-wrap: wrap;
        justify-content: center;
    }
    .course-card, .course-card.premium {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 600px) {
    .courses-grid, .courses-grid.premium {
        gap: 0.8rem;
    }
    .course-card, .course-card.premium {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1.2rem 0.8rem 1rem 0.8rem;
    }
    .course-card img {
        max-width: 120px;
        height: 90px;
    }
    .course-img-circle {
        width: 70px;
        height: 70px;
    }
}

/* Gym, Sauna & Musculation Page */
.gym-section {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3rem 1.5rem 2.5rem 1.5rem;
}
.gym-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.gym-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.gym-header .subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
}
.gym-content {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gym-description {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 480px;
}
.gym-description h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}
.gym-advantages {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem 0;
}
.gym-advantages li {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.gym-advantages i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.gym-horaires {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
    box-shadow: 0 1px 6px rgba(44,62,80,0.07);
}
.gym-horaires h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.gym-gallery {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gym-gallery h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 0.7rem;
}
.gallery-item {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-note {
    color: #888;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 0.5rem;
}
@media (max-width: 900px) {
    .gym-content {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .gym-description, .gym-gallery {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .gym-section {
        padding: 1.2rem 0.3rem 1.2rem 0.3rem;
    }
    .gym-header h1 {
        font-size: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .gallery-item {
        height: 80px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Menu mobile ouvert */
    .nav-container { position: relative; }
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        background: var(--white);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        z-index: 1001;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section li {
        justify-content: center;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
}

@media (max-width: 600px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .course-card img {
        max-width: 100%;
        height: 100px;
    }
    .course-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .courses-grid.premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .course-img-circle {
        width: 70px;
        height: 70px;
    }
    .course-icon {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }
    .course-card.premium {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
} 

.gallery-section {
    margin-bottom: 2.2rem;
}
.gallery-section h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.gallery-item {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.18s;
}
.gallery-item:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 6px 24px rgba(44,62,80,0.16);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
@media (max-width: 600px) {
    .gallery-section {
        margin-bottom: 1.2rem;
    }
    .gallery-item {
        height: 80px;
    }
} 

.premium-gym {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(44,62,80,0.13);
    padding: 3.5rem 2rem 2.5rem 2rem;
    margin-bottom: 2rem;
}
.premium-gym-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}
.premium-gym-block {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 370px;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.premium-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.premium-desc {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
}
.premium-list {
    margin-bottom: 1.1rem;
    padding-left: 1.2rem;
}
.premium-list li {
    margin-bottom: 0.4rem;
    color: #555;
    font-size: 1rem;
}
.premium-link {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 1.2rem;
    display: inline-block;
}
.premium-tarifs {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    margin-top: 2.5rem;
}
.premium-tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.premium-tarif-block {
    background: var(--light-bg);
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(44,62,80,0.07);
    padding: 1.2rem 1rem 1rem 1rem;
    margin-bottom: 0.5rem;
}
.premium-tarif-block h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.premium-tarif-block ul {
    margin-bottom: 0.5rem;
    padding-left: 1.1rem;
}
.premium-tarif-block li {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.premium-tarif-note {
    color: #888;
    font-size: 0.97rem;
    margin-top: 0.3rem;
}
@media (max-width: 1100px) {
    .premium-gym-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .premium-gym-block {
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .premium-gym {
        padding: 1.2rem 0.3rem 1.2rem 0.3rem;
    }
    .premium-tarifs {
        padding: 1.2rem 0.3rem 1.2rem 0.3rem;
    }
    .premium-title {
        font-size: 1.15rem;
    }
    .premium-gym-block {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .premium-tarifs-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
} 

/* Gym rectangular banners */
.gym-banner {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    margin: 0 0 1rem 0;
}
.gym-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 700px) {
    .gym-banner {
        height: 140px;
        border-radius: 10px;
    }
} 

/* Feature/Services grid */
.features-section {
    background: var(--light-bg);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    padding: 2rem 1.5rem;
    margin: 2rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}
.feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(44,62,80,0.08);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}
.feature-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 0.1rem;
}
.feature-item h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}
.feature-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Offer cards */
.offers-section {
    margin-top: 2.5rem;
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}
.offer-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    padding: 1.4rem 1.2rem 1.2rem 1.2rem;
    border: 1px solid rgba(44,62,80,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.offer-card.highlight {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 24px rgba(231,76,60,0.18);
}
.offer-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
}
.offer-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}
.offer-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}
.offer-list {
    margin: 0.2rem 0 0.7rem 1rem;
}
.offer-cta {
    margin-top: auto;
    align-self: flex-start;
}
@media (max-width: 700px) {
    .features-section { padding: 1.2rem 0.8rem; }
    .offer-card { padding: 1.1rem 0.9rem; }
} 

/* Price toggle */
.price-toggle {
    display: inline-flex;
    background: #fff;
    border: 1px solid rgba(44,62,80,0.12);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(44,62,80,0.06);
    margin: 0 0 1rem 0;
}
.price-toggle button {
    background: transparent;
    border: none;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
}
.price-toggle button.active {
    background: var(--secondary-color);
    color: #fff;
} 

/* Planning / Calendar */
.calendar-section {
    background: var(--light-bg);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1.2rem;
}
.calendar-desktop { display: block; }
.calendar-mobile { display: none; }
.calendar-wrap {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.calendar-embed {
    width: 100%;
    height: 100%;
    border: 0;
}
.calendar-note {
    text-align: center;
    color: #666;
    margin-top: 0.8rem;
}
/* Suppression des contrôles mobiles jour par jour */
.day-controls { display: none; }
.day-btn { display: none; }
.day-date { display: none; }
/* Planning page extras */
.planning-hero {
    text-align: center;
    margin-bottom: 1.5rem;
}
.planning-hero i {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin: 0 0.2rem;
    opacity: 0.9;
}
.planning-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1rem 0 1.6rem 0;
}
.planning-feature {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 1rem;
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.planning-feature i { color: var(--secondary-color); font-size: 1.2rem; margin-top: 0.15rem; }
@media (max-width: 700px) {
    .calendar-wrap { height: 80vh; }
    .calendar-desktop { display: none; }
    .calendar-mobile { display: block; }
}