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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #8B5FBF 0%, #A855F7 100%);
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 95, 191, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #1f2937;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(139, 95, 191, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    background-size: 400px 400px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 95, 191, 0.1);
    color: #8B5FBF;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(139, 95, 191, 0.2);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1f2937;
}

.hero-content h2 .highlight {
    color: #8B5FBF;
    position: relative;
}

.hero-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5FBF, #A855F7);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 95, 191, 0.1);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 95, 191, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5FBF, #A855F7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-text {
    text-align: left;
}

.feature-text strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.feature-text span {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8B5FBF, #A855F7);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 95, 191, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 95, 191, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #8B5FBF;
    border-color: #8B5FBF;
    box-shadow: 0 4px 15px rgba(139, 95, 191, 0.1);
}

.cta-button.secondary:hover {
    background: #8B5FBF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 95, 191, 0.3);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #8B5FBF;
}

.locations {
    padding: 80px 0;
    background: #f8fafc;
}

/* Horizontal Accordion */
.horizontal-accordion-container {
    display: flex;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
}

.horizontal-accordion-item {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    min-width: 120px;
    flex: 0 0 120px;
}

.horizontal-accordion-item.active {
    flex: 1;
    min-width: 400px;
}

.accordion-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(135deg, #8B5FBF 0%, #A855F7 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateX(0);
}

.horizontal-accordion-item.active .accordion-tab {
    opacity: 0;
    transform: translateX(-120px);
    pointer-events: none;
}

.horizontal-accordion-item:not(.active):hover .accordion-tab {
    background: linear-gradient(135deg, #A855F7 0%, #D946EF 100%);
    transform: scale(1.02);
}

.tab-image {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tab-image.coming-soon-thumb {
    background: linear-gradient(135deg, #8B5FBF, #A855F7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-icon {
    color: white;
    font-size: 2rem;
    opacity: 0.8;
}

.location-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #10B981;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 600;
}

.location-badge.coming-soon {
    background: #F59E0B;
}

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

.tab-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.tab-content p {
    font-size: 0.7rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.accordion-expanded-content {
    position: absolute;
    top: 0;
    left: 120px;
    right: 0;
    height: 100%;
    background: white;
    display: flex;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.horizontal-accordion-item.active .accordion-expanded-content {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    left: 0;
}

.expanded-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.expanded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expanded-image:hover .image-overlay {
    opacity: 1;
}

.view-gallery-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #8B5FBF;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-gallery-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.coming-soon-overlay {
    background: rgba(139, 95, 191, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
}

.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.coming-soon-text i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.expanded-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expanded-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B5FBF;
    margin-bottom: 10px;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 1rem;
}

.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag {
    background: #E0E7FF;
    color: #8B5FBF;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-tag.coming-soon-tag {
    background: #FEF3C7;
    color: #92400E;
}

.location-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.location-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    color: #8B5FBF;
    font-size: 1.2rem;
    width: 20px;
}

.info-item div strong {
    display: block;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.info-item div span {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Services */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5FBF, #A855F7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B5FBF;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Availability */
.availability {
    padding: 80px 0;
    background: #f8fafc;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.time-slot {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.time-slot h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8B5FBF;
    margin-bottom: 10px;
}

.time-slot p {
    color: #6b7280;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status.available {
    background: #D1FAE5;
    color: #065F46;
}

.status.limited {
    background: #FEF3C7;
    color: #92400E;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B5FBF;
    width: 30px;
}

.contact-item h4 {
    font-weight: 600;
    color: #8B5FBF;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6b7280;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B5FBF;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B5FBF;
}

.submit-btn {
    background: linear-gradient(135deg, #8B5FBF, #A855F7);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 95, 191, 0.4);
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background: white;
}

.instagram-embed {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.instagram-embed iframe {
    border-radius: 20px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #8B5FBF;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #8B5FBF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #8B5FBF 0%, #A855F7 100%);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        padding-left: 10px;
        opacity: 0.8;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Mobile Carousel - Complete redesign */
    .horizontal-accordion-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
        border-radius: 15px;
        padding: 20px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .horizontal-accordion-item {
        width: 100%;
        min-width: auto;
        flex: none;
        height: auto;
        border-radius: 15px;
        overflow: hidden;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }
    
    .horizontal-accordion-item.active {
        min-width: auto;
        box-shadow: 0 8px 25px rgba(139, 95, 191, 0.15);
    }
    
    .accordion-tab {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 80px;
        flex-direction: row;
        padding: 15px 20px;
        left: 0;
        background: linear-gradient(135deg, #8B5FBF 0%, #A855F7 100%);
        border-radius: 15px;
        align-items: center;
        cursor: pointer;
    }
    
    .horizontal-accordion-item.active .accordion-tab {
        opacity: 1;
        transform: none;
        pointer-events: all;
        border-radius: 15px 15px 0 0;
    }
    
    .tab-image {
        width: 60px;
        height: 45px;
        margin-bottom: 0;
        margin-right: 15px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .tab-content {
        text-align: left;
        flex: 1;
        color: white;
    }
    
    .tab-content h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .tab-content p {
        font-size: 0.85rem;
        opacity: 0.9;
        margin: 0;
    }
    
    .accordion-expanded-content {
        position: relative;
        left: 0;
        top: 0;
        flex-direction: column;
        height: auto;
        background: white;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: all 0.4s ease;
        border-radius: 0 0 15px 15px;
    }
    
    .horizontal-accordion-item.active .accordion-expanded-content {
        opacity: 1;
        max-height: 700px;
        transform: none;
    }
    
    .expanded-image {
        height: 350px;
        min-height: 350px;
        width: 100%;
        position: relative;
    }
    
    .expanded-image img {
        border-radius: 0;
        object-position: center top;
    }
    
    .expanded-details {
        padding: 15px 20px;
    }
    
    .expanded-details h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .availability-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Responsive Design - Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .nav {
        width: 250px;
    }
    
    .horizontal-accordion-container {
        padding: 15px;
        gap: 10px;
    }
    
    .accordion-tab {
        min-height: 70px;
        padding: 12px 15px;
    }
    
    .tab-image {
        width: 50px;
        height: 38px;
        margin-right: 12px;
    }
    
    .tab-content h3 {
        font-size: 1rem;
    }
    
    .tab-content p {
        font-size: 0.8rem;
    }
    
    .expanded-image {
        height: 240px;
        min-height: 240px;
    }
    
    .horizontal-accordion-item.active .accordion-expanded-content {
        max-height: 600px;
    }
    
    .expanded-details {
        padding: 15px;
    }
    
    .expanded-details h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .location-services {
        margin-bottom: 15px;
    }
    
    .service-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .location-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .horizontal-accordion-container {
        height: 450px;
    }
    
    .horizontal-accordion-item {
        min-width: 100px;
        flex: 0 0 100px;
    }
    
    .horizontal-accordion-item.active {
        min-width: 350px;
    }
    
    .accordion-tab {
        width: 100px;
    }
    
    .tab-image {
        width: 70px;
        height: 50px;
    }
    
    .tab-content h3 {
        font-size: 0.85rem;
    }
    
    .tab-content p {
        font-size: 0.65rem;
    }
    
    .expanded-details {
        padding: 30px;
    }
    
    .expanded-details h3 {
        font-size: 1.6rem;
    }
}

/* Responsive Design - Extra Small Mobile */
@media (max-width: 360px) {
    .accordion-tab {
        height: 70px;
        padding: 10px;
    }
    
    .tab-image {
        width: 50px;
        height: 40px;
        margin-right: 10px;
    }
    
    .tab-content h3 {
        font-size: 0.9rem;
    }
    
    .tab-content p {
        font-size: 0.75rem;
    }
    
    .expanded-image {
        height: 200px;
        min-height: 200px;
    }
    
    .horizontal-accordion-item.active .accordion-expanded-content {
        max-height: 500px;
    }
    
    .expanded-details {
        padding: 10px 15px;
    }
    
    .expanded-details h3 {
        font-size: 1.2rem;
    }
    
    .location-description {
        font-size: 0.85rem;
    }
    
    .service-tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}