/* Events Page - Matching Main Site Aesthetic */

/* Events Page Specific Styles */
.events-page {
    background-color: var(--warm-white);
    color: var(--deep-moss);
}

/* Events Hero Section */
.events-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 152, 118, 0.05) 0%, rgba(229, 189, 170, 0.05) 100%);
    margin-top: 80px;
    overflow: hidden;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 189, 170, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.events-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 152, 118, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-family: var(--secondary-font);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-moss);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line.accent {
    color: var(--sage-green);
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--deep-moss);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.cta-button.primary {
    background: var(--sage-green);
    color: white;
}

.cta-button.primary:hover {
    background: var(--deep-moss);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--sage-green);
    color: var(--sage-green);
}

.cta-button.secondary:hover {
    background: var(--sage-green);
    color: white;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.scroll-text {
    display: block;
    font-size: 0.9rem;
    color: var(--sage-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-right: 2px solid var(--sage-green);
    border-bottom: 2px solid var(--sage-green);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Workshops Section */
.workshops-section {
    padding: 6rem 0;
    background: var(--warm-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--deep-moss);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Loading State */
.workshops-loading {
    text-align: center;
    padding: 4rem;
}

.loading-spinner,
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(138, 152, 118, 0.2);
    border-top-color: var(--sage-green);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Workshop Grid */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

/* Workshop Cards */
.workshop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(138, 152, 118, 0.1);
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--sage-green);
}

.workshop-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--sage-green), var(--blush-pink));
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.1);
}

.workshop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--rose-gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.workshop-content {
    padding: 2rem;
}

.workshop-title {
    font-family: var(--secondary-font);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--deep-moss);
}

.workshop-description {
    color: var(--deep-moss);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.workshop-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage-green);
    font-size: 0.95rem;
}

.workshop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(138, 152, 118, 0.1);
}

.workshop-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: var(--deep-moss);
    opacity: 0.7;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-green);
}

.workshop-cta {
    padding: 0.75rem 1.5rem;
    background: var(--sage-green);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.workshop-cta:hover {
    background: var(--deep-moss);
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(138, 152, 118, 0.05) 0%, rgba(229, 189, 170, 0.05) 100%);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--deep-moss);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--deep-moss);
    line-height: 1.6;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--warm-white);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 3rem auto 2rem;
    position: relative;
    min-height: 200px;
}

.testimonial-card {
    display: none;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(138, 152, 118, 0.1);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--rose-gold);
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--deep-moss);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--sage-green);
    font-size: 1rem;
    font-weight: 600;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(138, 152, 118, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--sage-green);
    transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(138, 152, 118, 0.05) 0%, rgba(229, 189, 170, 0.05) 100%);
}

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

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    color: var(--sage-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--deep-moss);
    line-height: 1.6;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--deep-moss) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--secondary-font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    background: white;
    color: var(--sage-green);
}

.cta-button.large:hover {
    background: var(--warm-white);
    transform: translateY(-2px);
}

/* Error State */
.workshops-error {
    text-align: center;
    padding: 4rem;
    background: rgba(138, 152, 118, 0.1);
    border-radius: 20px;
    border: 1px solid var(--sage-green);
}

.retry-button {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--sage-green);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-button:hover {
    background: var(--deep-moss);
    transform: translateY(-2px);
}

/* No workshops message */
.no-workshops {
    text-align: center;
    padding: 4rem;
    color: var(--deep-moss);
    font-size: 1.2rem;
}

/* Highlight nav link */
.nav-link.highlight {
    background: var(--sage-green);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link.highlight:hover {
    background: var(--deep-moss);
}

/* Workshop Modal Styles */
.workshop-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workshop-modal.modal-visible {
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    margin: 5vh auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.workshop-modal.modal-visible .modal-container {
    transform: translateY(0);
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(138, 152, 118, 0.1);
    background: linear-gradient(135deg, rgba(138, 152, 118, 0.05), rgba(229, 189, 170, 0.05));
}

.modal-title {
    font-family: var(--secondary-font);
    font-size: 2rem;
    color: var(--deep-moss);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--sage-green);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(138, 152, 118, 0.1);
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
    align-items: flex-start;
}

/* Left Column Container */
.modal-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Image Carousel Section */
.modal-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-carousel {
    position: relative;
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--sage-green);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    box-shadow: var(--shadow-medium);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.image-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(138, 152, 118, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--sage-green);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--sage-green);
    opacity: 0.8;
}

/* Workshop Information Section */
.modal-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.workshop-description-full h3 {
    color: var(--deep-moss);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.workshop-full-description {
    color: var(--deep-moss);
    line-height: 1.7;
    margin-bottom: 0;
}

.workshop-specs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(138, 152, 118, 0.05);
    border-radius: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--sage-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 1.1rem;
    color: var(--deep-moss);
    font-weight: 500;
}

.workshop-highlights h3 {
    color: var(--deep-moss);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--deep-moss);
}

.highlights-list li::before {
    content: '✨';
    font-size: 1.1rem;
    color: var(--rose-gold);
}

/* Additional Workshop Information Section */
.modal-additional-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(138, 152, 118, 0.1);
}

.workshop-preparation h3 {
    color: var(--deep-moss);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.prep-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prep-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(138, 152, 118, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(138, 152, 118, 0.08);
}

.prep-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.prep-details h4 {
    color: var(--sage-green);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.prep-details p {
    color: var(--deep-moss);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.workshop-special-features h3 {
    color: var(--deep-moss);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--deep-moss);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Modal Footer */
.modal-footer {
    padding: 2rem;
    border-top: 1px solid rgba(138, 152, 118, 0.1);
    background: rgba(138, 152, 118, 0.02);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-action {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-action.secondary {
    background: transparent;
    border: 2px solid var(--sage-green);
    color: var(--sage-green);
}

.modal-action.secondary:hover {
    background: var(--sage-green);
    color: white;
}

.modal-action.primary {
    background: var(--sage-green);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 152, 118, 0.3);
}

.modal-action.primary:hover {
    background: var(--deep-moss);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 152, 118, 0.4);
}

/* Gallery Indicator on Cards */
.gallery-indicator {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
}

/* Enhanced Card Hover Effects */
.workshop-card {
    cursor: pointer;
    transition: all 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(138, 152, 118, 0.2);
}

.workshop-card:hover .workshop-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 152, 118, 0.1), rgba(229, 189, 170, 0.1));
    border-radius: inherit;
}

/* Hide mobile duplicate by default */
.mobile-only {
    display: none;
}

/* Mobile Modal Styles */
@media (max-width: 968px) {
    .modal-body {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .modal-left-column {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .modal-image-section {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-info-section {
        order: 2; /* Main info comes after image */
    }
    
    /* Hide desktop additional info and show mobile duplicate */
    .modal-left-column .modal-additional-info {
        display: none;
    }
    
    .modal-additional-info.mobile-only {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        order: 3;
        border-top: 1px solid rgba(138, 152, 118, 0.1);
        padding-top: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-hero {
        min-height: 50vh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .workshop-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .workshop-content {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
    
    /* Mobile Modal Adjustments */
    .modal-container {
        width: 95%;
        margin: 2.5vh auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .modal-action {
        width: 100%;
        padding: 1rem;
        text-align: center;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
    
    /* Additional Info Section Mobile Adjustments */
    .modal-additional-info {
        gap: 1.5rem;
    }
    
    .prep-content {
        gap: 1rem;
    }
    
    .prep-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .prep-icon {
        font-size: 1.3rem;
    }
    
    .prep-details h4 {
        font-size: 0.9rem;
    }
    
    .prep-details p {
        font-size: 0.85rem;
    }
    
    .features-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
}