@media (max-width: 768px) {
    .showcase-image {
        border-radius: 20px !important;
        box-shadow: 0 10px 25px rgba(255, 51, 51, 0.18);
        border: 2px solid rgba(255, 51, 51, 0.2);
        object-fit: cover;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}
@media (max-width: 768px) {
    .hero-studio-img {
        border-radius: 20px !important;
        box-shadow: 0 10px 25px rgba(255, 51, 51, 0.18);
        border: 2px solid rgba(255, 51, 51, 0.2);
        object-fit: cover;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}
/* Dimension Icons for Studio Specifications */
.dimension-value {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1em;
}
.dimension-separator {
    margin-left: 16px;
}
.dimension-icon {
    margin-right: 6px;
    font-size: 1.25em;
}
.dimension-width {
    color: #FF3333;
}
.dimension-length {
    color: #3399ff;
}
.dimension-height {
    color: #25d366;
}
/* Infinity Studio Styles */

/* Studio-specific color variables */
:root {
    --studio-bg: #1a1a1a;
    --studio-text: #ffffff;
    --studio-text-light: #b3b3b3;
    --studio-accent: #FF3333;
    --studio-accent-dark: #CC0000;
    --studio-section-bg: #2a2a2a;
    --studio-card-bg: #333333;
}

/* Studio Hero Section */
.studio-hero {
    background: linear-gradient(135deg, var(--studio-bg) 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.studio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 51, 51, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.studio-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.studio-hero-text {
    color: var(--studio-text);
}

.studio-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--studio-text) 0%, var(--studio-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.studio-subtitle {
    font-size: 1.25rem;
    color: var(--studio-text-light);
    font-weight: 400;
    line-height: 1.6;
}

.studio-hero-image {
    position: relative;
}

.hero-studio-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 51, 51, 0.2);
}

/* Studio Content Sections */
.studio-content {
    background: var(--studio-bg);
    color: var(--studio-text);
    padding: 80px 0;
}

/* Forms Section */
.forms-section {
    margin-bottom: 100px;
    text-align: center;
    position: relative;
}

.forms-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--studio-accent) 50%, transparent 100%);
}

.forms-container {
    max-width: 800px;
    margin: 0 auto;
}

.forms-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--studio-text);
    background: linear-gradient(135deg, var(--studio-text) 0%, var(--studio-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forms-description {
    font-size: 1.125rem;
    color: var(--studio-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Booking Instructions */
.booking-instructions {
    margin-top: 3rem;
}

.instruction-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.instruction-card:hover {
    border-color: var(--studio-accent);
    background: rgba(255, 51, 51, 0.05);
}

.instruction-icon {
    font-size: 2rem;
    color: var(--studio-accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.instruction-content {
    flex: 1;
}

.instruction-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--studio-text);
    margin-bottom: 0.5rem;
}

.instruction-text {
    font-size: 1rem;
    color: var(--studio-text-light);
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-option {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-option:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateX(5px);
}

.email-option {
    background: rgba(255, 51, 51, 0.1);
    color: var(--studio-accent);
    border-color: rgba(255, 51, 51, 0.2);
}

.email-option:hover {
    background: rgba(255, 51, 51, 0.2);
    transform: translateX(5px);
}

.contact-option i {
    font-size: 1.125rem;
}

/* Specifications Grid */
.specifications-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
    transition: left 0.6s ease;
}

.spec-card:hover::before {
    left: 100%;
}

.spec-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--studio-accent);
    background: rgba(255, 51, 51, 0.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 51, 51, 0.2);
}

.spec-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--studio-accent) 0%, var(--studio-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.spec-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--studio-accent), transparent, var(--studio-accent));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

.spec-card:hover .spec-icon-wrapper::before {
    opacity: 1;
}

.spec-card:hover .spec-icon-wrapper {
    transform: scale(1.1);
}

.spec-card .spec-icon {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.spec-card:hover .spec-icon {
    transform: rotate(5deg) scale(1.1);
}

.spec-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--studio-text);
    margin-bottom: 0.5rem;
}

.spec-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--studio-accent);
    margin-bottom: 1rem;
}

.spec-description {
    font-size: 0.95rem;
    color: var(--studio-text-light);
    line-height: 1.5;
}

/* Rotate animation for icon borders */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spec-card:nth-child(1) {
    animation-delay: 0.1s;
}

.spec-card:nth-child(2) {
    animation-delay: 0.2s;
}

.spec-card:nth-child(3) {
    animation-delay: 0.3s;
}

.spec-card:nth-child(4) {
    animation-delay: 0.4s;
}

.forms-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Glass Effect Buttons */
.form-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    text-decoration: none;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateY(0);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

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

.form-btn:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--studio-accent);
}

.booking-btn:hover {
    background: rgba(255, 51, 51, 0.1);
}

.modeling-btn:hover {
    background: rgba(51, 153, 255, 0.1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-icon {
    font-size: 2rem;
    color: var(--studio-accent);
    transition: all 0.3s ease;
}

.modeling-btn .btn-icon {
    color: #3399ff;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.btn-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--studio-text);
    transition: color 0.3s ease;
}

.btn-subtitle {
    font-size: 0.875rem;
    color: var(--studio-text-light);
    transition: color 0.3s ease;
}

.download-icon {
    font-size: 1.5rem;
    color: var(--studio-text-light);
    transition: all 0.3s ease;
}

.form-btn:hover .btn-icon {
    transform: scale(1.1);
}

.form-btn:hover .download-icon {
    color: var(--studio-accent);
    transform: translateX(5px);
}

.studio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.studio-section {
    margin-bottom: 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important; /* Force visibility */
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    min-height: 300px;
}

.section-content.single-column {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
}

/* Alternate layout for visual variety */
.studio-section:nth-child(even) .section-content {
    direction: rtl;
}

.studio-section:nth-child(even) .section-content > * {
    direction: ltr;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--studio-text);
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--studio-text-light);
}

/* Features List */
.features-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--studio-accent);
    font-size: 1.25rem;
    min-width: 20px;
}

/* Specifications List */
.specs-list {
    list-style: none;
    margin-top: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-icon {
    color: var(--studio-accent);
    font-size: 1.25rem;
    min-width: 20px;
}

/* Services List */
.services-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--studio-card-bg);
    border-radius: 15px;
    font-size: 1.125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 51, 51, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--studio-accent);
    transform: translateY(-2px);
}

.service-icon {
    color: var(--studio-accent);
    font-size: 1.5rem;
    min-width: 24px;
}

/* Studio Showcase */
.section-image {
    position: relative;
}

.studio-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Book Studio Section */
.book-studio-section {
    background: linear-gradient(135deg, var(--studio-section-bg) 0%, #3d3d3d 100%);
    padding: 80px 0;
    margin-top: 80px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.book-studio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.book-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.book-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--studio-text);
}

.book-description {
    font-size: 1.25rem;
    color: var(--studio-text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.book-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.book-btn.primary {
    background: var(--studio-accent);
    color: white;
}

.book-btn.primary:hover {
    background: var(--studio-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.3);
}

.book-btn.secondary {
    background: transparent;
    color: var(--studio-text);
    border-color: rgba(255, 255, 255, 0.3);
}

.book-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--studio-accent);
}

.book-btn.whatsapp {
    background: #25d366;
    color: white;
}

.book-btn.whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Active navigation state for studio page */
.nav-link.active {
    color: var(--studio-accent) !important;
    font-weight: 600;
}

/* Footer adjustments for studio page */
.footer {
    background: #0d0d0d;
    color: var(--studio-text);
}

.footer-links a:hover {
    color: var(--studio-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .studio-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .studio-title {
        font-size: 2.5rem;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content.single-column {
        text-align: left;
    }

    .forms-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .form-btn {
        padding: 1.5rem;
    }

    .btn-content {
        gap: 1rem;
    }

    .btn-icon {
        font-size: 1.5rem;
    }

    .instruction-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .instruction-icon {
        font-size: 1.75rem;
    }

    .contact-options {
        gap: 0.5rem;
    }

    .contact-option {
        justify-content: center;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .book-actions {
        flex-direction: column;
        align-items: center;
    }

    .book-btn {
        min-width: 200px;
        justify-content: center;
    }

    .hero-studio-img {
        max-height: 350px;
    }

    .showcase-image {
        max-height: 300px;
    }

    /* Case Study Grid - Mobile Fix */
    .case-study-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    
        .team-profile-grid {
            grid-template-columns: 1fr !important;
            text-align: center;
        }
    
        .team-profile-grid > div:first-child {
            margin: 0 auto;
        }
    
        .event-services-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    
        .events-team-card {
            padding: 1.5rem !important;
        }
    }
}

@media (max-width: 480px) {
    .studio-hero {
        padding: 100px 0 60px;
    }

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

    .studio-subtitle {
        font-size: 1rem;
    }

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

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

    .spec-item,
    .service-item {
        font-size: 1rem;
    }

    .forms-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-title {
        font-size: 1.125rem;
    }

    .btn-subtitle {
        font-size: 0.8rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spec-card {
        padding: 2rem 1.5rem;
    }

    .spec-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .spec-card .spec-icon {
        font-size: 1.75rem;
    }

    .spec-title {
        font-size: 1.25rem;
    }
}

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

.studio-section {
    animation: fadeInUp 0.8s ease-out;
    opacity: 1; /* Ensure visibility */
}

.studio-section:nth-child(even) {
    animation-delay: 0.2s;
}

/* Calendar Modal Styles */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

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

.calendar-modal-content {
    background: var(--studio-section-bg);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--studio-text);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--studio-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--studio-accent);
    background: rgba(255, 51, 51, 0.1);
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--studio-text);
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--studio-accent);
    color: var(--studio-accent);
}

.current-month {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--studio-text);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--studio-text-light);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.calendar-day.current-month {
    color: var(--studio-text);
    background: rgba(255, 255, 255, 0.03);
}

.calendar-day.other-month {
    color: var(--studio-text-light);
    opacity: 0.5;
}

.calendar-day.today {
    background: rgba(255, 51, 51, 0.2);
    border-color: var(--studio-accent);
    color: var(--studio-accent);
    font-weight: 700;
}

.calendar-day:hover:not(.other-month) {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--studio-accent);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--studio-accent);
    color: white;
    font-weight: 700;
}

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

.calendar-note {
    color: var(--studio-text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calendar-note i {
    color: var(--studio-accent);
}

/* Responsive Calendar */
@media (max-width: 480px) {
    .calendar-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .calendar-title {
        font-size: 1.25rem;
    }

    .current-month {
        font-size: 1.125rem;
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .calendar-day {
        font-size: 0.875rem;
    }
}

/* Removed problematic scroll animations that were hiding content */