/* KANE-NECT Design System V2 - Complete CSS */

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #F8F4ED 0%, #F0E8DC 100%);
    color: #2C2C2C;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header - Design System V2 Compliant */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(193, 155, 92, 0.1);
    transition: all 0.3s ease;
    height: 72px;
}

.header.scrolled {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.98);
}

/* Enhanced Logo with 3D Ribbons - Design System V2 */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.k-letter-3d {
    display: none; /* Hidden when using actual logo */
}

/* Additional logo effects removed - using actual logo.png */

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #C19B5C;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.logo-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #C19B5C;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-top: -2px;
}

/* Enhanced Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-selector {
    position: relative;
}

.language-dropdown {
    background: #F8F4ED;
    border: none;
    color: #2C2C2C;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.language-dropdown:hover {
    background: #C19B5C;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    font-size: 16px;
}

.nav-link:hover {
    color: #C19B5C;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #C19B5C;
    transition: width 0.3s ease;
}

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

.nav-link.cta {
    background: #C19B5C;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(193, 155, 92, 0.3);
    transition: all 0.3s ease;
}

.nav-link.cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(193, 155, 92, 0.4);
    color: white;
}

.nav-link.cta::after {
    display: none;
}

/* Enhanced Login Button */
.login-btn {
    background: transparent;
    border: 2px solid #C19B5C;
    color: #C19B5C;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.login-btn:hover {
    background: #C19B5C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 155, 92, 0.3);
}

/* Profile dropdown for logged in users */
.profile-dropdown {
    position: relative;
}

.profile-btn {
    background: #C19B5C;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(193, 155, 92, 0.3);
}

.profile-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    z-index: 1001;
}

.profile-menu a {
    display: block;
    padding: 12px 20px;
    color: #2C2C2C;
    text-decoration: none;
    transition: background 0.2s ease;
}

.profile-menu a:hover {
    background: #F8F4ED;
}

.profile-menu hr {
    border: none;
    border-top: 1px solid #E5E5E5;
    margin: 8px 0;
}

/* Mobile Menu Enhancement */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2C2C2C;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #F8F4ED;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #F8F4ED;
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #2C2C2C;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links .nav-link {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(193, 155, 92, 0.2);
}

/* Main Content - Enhanced Layout */
.main-content {
    padding-top: 120px;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 100vh;
}

/* Enhanced Search Bar - Design System V2 */

.search-bar {
    background: white;
    border-radius: 50px;
    padding: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(193, 155, 92, 0.2);
    transition: all 0.3s ease;
}

.search-bar:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(193, 155, 92, 0.4);
}

.search-field {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #2C2C2C;
    border-right: 1px solid #E5E5E5;
    transition: all 0.2s ease;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field::placeholder {
    color: #8B8B8B;
    font-weight: 300;
}

.search-field:focus {
    outline: none;
    background: #F8F4ED;
}

.search-button {
    background: #C19B5C;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.search-button:hover {
    background: #D4AF37;
    transform: scale(1.05);
}

/* Hero Section - Typography System V2 */
.hero-section {
    text-align: center;
    margin: 80px 0 100px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #2C2C2C;
    letter-spacing: 0.15em;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #C19B5C;
    letter-spacing: 0.2em;
    animation: fadeInUp 1.2s ease-out;
}

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

/* Enhanced Studios Section */
.studios-section {
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.3;
}

.section-title::after {
    content: '›';
    color: #C19B5C;
    font-size: 36px;
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Enhanced Studio Cards - Design System V2 */
.studio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.studio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #F5F0E8, #E8DCC6);
    overflow: hidden;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #2C2C2C;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 155, 92, 0.2);
}

.card-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.card-favorite:hover {
    background: white;
    transform: scale(1.2);
}

.card-favorite.active {
    color: #FF6B6B;
    animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}


.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.card-details {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
}

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

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #C19B5C;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666666;
}

.stars {
    color: #C19B5C;
    font-size: 12px;
}

/* View All Button */
.view-all-section {
    text-align: center;
    margin: 40px 0 60px;
}

.view-all-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #C19B5C;
    color: #C19B5C;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #C19B5C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 155, 92, 0.3);
}

/* Categories Section */
.categories-section {
    max-width: 1440px;
    margin: 0 auto 80px;
}

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

.category-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.category-card p {
    color: #666666;
    font-size: 14px;
}

/* Enhanced Login Modal - Design System V2 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

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

.login-modal {
    background: #FFFFFF;
    max-width: 480px;
    width: 90%;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 16px 64px rgba(193, 155, 92, 0.15);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #C19B5C;
}

.modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 30px;
    text-align: center;
}

/* Enhanced Account Type Selector */
.account-type-selector {
    display: flex;
    background: #F8F4ED;
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 30px;
}

.account-type-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 20px;
    border-radius: 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #666666;
    font-size: 14px;
}

.account-type-btn.active {
    background: #C19B5C;
    color: white;
    box-shadow: 0 2px 8px rgba(193, 155, 92, 0.3);
}

/* Enhanced Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2C2C2C;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border: 2px solid #C19B5C;
}

.form-input::placeholder {
    color: #8B8B8B;
}

.login-submit {
    width: 100%;
    background: #C19B5C;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-submit:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

/* Enhanced Booking Modal */
.booking-modal {
    background: #FFFFFF;
    max-width: 900px;
    width: 95%;
    border-radius: 24px;
    box-shadow: 0 16px 64px rgba(193, 155, 92, 0.15);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    overflow: hidden;
}

.booking-left {
    flex: 0 0 40%;
    padding: 40px;
    background: #F8F4ED;
}

.booking-right {
    flex: 1;
    padding: 40px;
}

.calendar-widget {
    margin-bottom: 20px;
}

.time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 12px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.time-slot:hover,
.time-slot.active {
    border-color: #C19B5C;
    background: #F8F4ED;
}

/* Pricing Tooltip */
.pricing-tooltip {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 320px;
    z-index: 100;
    display: none;
    border: 1px solid rgba(193, 155, 92, 0.2);
}

.pricing-tooltip.active {
    display: block;
}

.pricing-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 4px 0;
}

.pricing-divider {
    border-top: 1px solid #E5E5E5;
    margin: 12px 0;
}

.pricing-total {
    font-weight: 700;
    color: #C19B5C;
    font-size: 16px;
}

/* Enhanced Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
}

.toast {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    border-left: 4px solid;
    max-width: 400px;
    animation: toastSlideIn 0.3s ease-out;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-left-color: #28A745;
    background: #F8FFF8;
}

.toast.warning {
    border-left-color: #FF8C00;
    background: #FFF8F0;
}

.toast.error {
    border-left-color: #DC3545;
    background: #FFF8F8;
}

/* Loading States Enhancement */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #C19B5C;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.p-20 { padding: 20px; }

/* Page-specific styles */
.page-header {
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters and Search */
.filters-section {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.filter-select {
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    background: white;
}

.filter-select:focus {
    outline: none;
    border-color: #C19B5C;
}

/* Responsive Enhancements - Design System V2 */
/* Tablet optimizations - Hide logo text/slogan, show only on hover as tooltip */
@media (max-width: 1024px) and (min-width: 769px) {
    .header {
        padding: 15px 20px;
        height: 64px;
    }
    
    .logo-container {
        position: relative;
    }
    
    /* Hide logo text and slogan on tablet to save space */
    .logo-text,
    .logo-subtext {
        display: none;
    }
    
    /* Show full logo info as tooltip on hover */
    .logo-container:hover::after {
        content: "KANE-NECT\ABRIDGING CREATIVITY & OPPORTUNITY";
        white-space: pre-line;
        position: absolute;
        bottom: -60px;
        left: 0;
        background: rgba(44, 44, 44, 0.95);
        color: #F5F0E8;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 1.4;
        z-index: 1001;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(193, 155, 92, 0.3);
        min-width: 200px;
        text-align: center;
    }
    
    /* Tooltip arrow */
    .logo-container:hover::before {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 20px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid rgba(44, 44, 44, 0.95);
        z-index: 1002;
    }

    .main-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .studios-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .booking-modal {
        flex-direction: column;
        max-width: 500px;
    }

    .booking-left {
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }


    .search-field {
        border-right: none;
        border-bottom: 1px solid #E5E5E5;
    }

    .search-field:last-of-type {
        border-bottom: none;
    }

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

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .login-modal,
    .booking-modal {
        margin: 20px;
        padding: 30px 20px;
    }

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

/* Mobile and Small Tablet Styles - Hide Logo Text for all devices up to tablet */
@media (max-width: 768px) {
    .logo-container {
        position: relative;
        gap: 10px;
        flex: 1;
        min-width: 0; /* Allow shrinking */
    }
    
    /* Hide logo text/slogan on all mobile and small tablet sizes */
    .logo-text,
    .logo-subtext {
        display: none !important;
    }
    
    /* Show full logo info as tooltip on hover/tap */
    .logo-container:hover::after,
    .logo-container:active::after {
        content: "KANE-NECT\ABRIDGING CREATIVITY & OPPORTUNITY";
        white-space: pre-line;
        position: absolute;
        bottom: -60px;
        left: 0;
        background: rgba(44, 44, 44, 0.95);
        color: #F5F0E8;
        padding: 10px 14px;
        border-radius: 6px;
        font-size: 11px;
        line-height: 1.3;
        z-index: 1001;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(193, 155, 92, 0.3);
        min-width: 160px;
        text-align: center;
    }
    
    /* Tooltip arrow */
    .logo-container:hover::before,
    .logo-container:active::before {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 15px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid rgba(44, 44, 44, 0.95);
        z-index: 1002;
    }
}

/* Specific mobile styling adjustments */
@media (max-width: 414px) {
    .header {
        padding: 8px 12px;
        height: 60px;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .language-dropdown {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 375px) {
    .header {
        padding: 10px 15px;
        height: 56px;
    }

    .main-content {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

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

@media (max-width: 320px) {
    .header {
        padding: 8px 10px;
        height: 52px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .language-dropdown {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .login-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Global Container and Section Spacing */
:root {
  --container-pad: clamp(16px, 4vw, 32px);
}

.section-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(24px, 5vw, 64px);
}

@media (max-width: 768px) {
  .section-inner {
    padding-inline: 16px;
  }
}

/* Footer Styles - Design System V2 Compliant */
.footer {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: #F5F0E8;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #C19B5C;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #F5F0E8;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-section h5 {
    font-size: 14px;
    font-weight: 600;
    color: #C19B5C;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #C19B5C;
}

.footer-contact {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #CCCCCC;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(193, 155, 92, 0.1);
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #C19B5C;
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(193, 155, 92, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #F5F0E8;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form button {
    padding: 12px 16px;
    background: #C19B5C;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid rgba(193, 155, 92, 0.2);
    padding-top: 30px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

.footer-languages {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(193, 155, 92, 0.3);
    border-radius: 6px;
    color: #CCCCCC;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background: #C19B5C;
    color: white;
    border-color: #C19B5C;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Enhanced Focus Indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #C19B5C;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced Search & Filter UX */
.active-filters {
    background: #F8F4ED;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(193, 155, 92, 0.2);
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    background: #C19B5C;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.filter-tag .remove-filter {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}

.filter-tag .remove-filter:hover {
    background: rgba(255, 255, 255, 0.5);
}

.clear-filters-btn {
    background: transparent;
    border: 2px solid #C19B5C;
    color: #C19B5C;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #C19B5C;
    color: white;
}

.search-field:focus,
.filter-select:focus {
    border-color: #C19B5C;
    box-shadow: 0 0 0 3px rgba(193, 155, 92, 0.1);
}

.results-count {
    font-weight: 600;
    color: #2C2C2C;
    font-size: 16px;
}

.results-filter-summary {
    color: #666;
    font-size: 14px;
    margin-left: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Better Social Links with Screen Reader Support */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(193, 155, 92, 0.1);
    border-radius: 50%;
    color: #C19B5C;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: #C19B5C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 155, 92, 0.3);
}

.social-links a:hover::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2C2C2C;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Enhanced Mobile Typography & UX Improvements */
    .hero-title {
        font-size: 42px !important;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 32px !important;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
        line-height: 1.4;
        opacity: 0.9;
    }
    
    /* Mobile Header Improvements */
    .header {
        padding: 15px 20px;
        height: 64px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtext {
        font-size: 8px;
    }
    
    /* Better Mobile Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Enhanced Newsletter Form for Mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form input {
        min-width: 200px;
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .newsletter-form button {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px; /* Better touch target */
    }
    
    /* Mobile Card & Content Improvements */
    .studio-card {
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 18px !important;
        line-height: 1.3;
    }
    
    .card-details {
        font-size: 14px !important;
    }
    
    /* Better Mobile Spacing */
    .container {
        padding: 0 20px;
    }
    
}

/* Enhanced Pagination Styles */
.view-all-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-all-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    color: inherit;
    font-size: 14px;
}

.pagination-info {
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.studio-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Load More Button Enhanced States */
.view-all-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 155, 92, 0.3);
}

.view-all-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.btn-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Enhanced CTA Styles */
.btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #D4AF37 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(193, 155, 92, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    transition: all 0.3s ease;
    position: relative;
}

.btn-secondary:hover {
    background: #F8F4ED !important;
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

.card-actions {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.studio-card:hover .card-actions {
    opacity: 1;
    transform: translateY(0);
}

/* View Toggle Buttons */
.view-btn {
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
    transform: translateY(-1px);
}

/* Quick Preview Modal */
.modal-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.quick-preview-modal {
    animation: slideIn 0.3s ease;
}

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

/* Trust Signals */
.trust-signals {
    animation: fadeIn 0.8s ease 0.5s both;
}

.trust-item {
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    color: #C19B5C !important;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Company Logos */
.company-logos div {
    transition: all 0.3s ease;
}

.company-logos div:hover {
    color: #C19B5C !important;
    opacity: 1 !important;
    transform: scale(1.05);
}

/* Category Icon Images */
.category-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-img {
    transform: scale(1.1);
}

/* Search Pill Widget */
.search-pill-section {
    background: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.search-pill-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.search-pill {
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(229, 229, 229, 0.5);
    display: flex;
    align-items: center;
    padding: 6px;
    max-width: 800px;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.search-pill:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(193, 155, 92, 0.3);
}

.search-segment {
    padding: 18px 24px;
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 40px;
    transition: all 0.3s ease;
    min-height: 68px;
    justify-content: center;
}

.search-segment:hover {
    background: rgba(193, 155, 92, 0.08);
}

.search-segment label {
    font-size: 11px;
    font-weight: 500;
    color: #8B8B8B;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-segment span {
    font-size: 15px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    line-height: 1.2;
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #2C2C2C;
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

.search-input::placeholder {
    color: #8B8B8B;
    font-weight: 400;
}

.search-divider {
    width: 1px;
    height: 36px;
    background: #E8E8E8;
    margin: 0 6px;
    opacity: 0.7;
}

.search-submit-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #C19B5C;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(193, 155, 92, 0.25);
}

.search-submit-btn:hover {
    background: #D4AF37;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(193, 155, 92, 0.4);
}

/* Mobile responsiveness for search pill */
@media (max-width: 768px) {
    .search-pill-container {
        padding: 0 20px;
    }
    
    .search-pill {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
        gap: 12px;
    }
    
    .search-segment {
        border-radius: 12px;
        width: 100%;
        min-height: 50px;
    }
    
    .search-divider {
        display: none;
    }
    
    .search-submit-btn {
        width: 100%;
        border-radius: 12px;
        height: 48px;
        margin-left: 0;
    }
}

/* List Your Studio CTA Section */
.list-your-studio-section {
    background: linear-gradient(135deg, #F8F4ED 0%, #F0E8DC 100%);
    padding: 80px 0;
    margin: 60px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

.cta-content {
    padding: 0 40px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2C2C2C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-list {
    list-style: none;
    margin: 30px 0;
}

.cta-list li {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.cta-list li:before {
    content: '✓';
    color: #C19B5C;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.primary-button {
    background: #C19B5C;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 155, 92, 0.3);
}

.host-interest-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.host-interest-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.host-interest-form input[type="email"]:focus {
    border-color: #C19B5C;
    box-shadow: 0 0 0 3px rgba(193, 155, 92, 0.1);
    outline: none;
}

.host-interest-form button {
    background: #C19B5C;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.host-interest-form button:hover {
    background: #D4AF37;
}

.cta-image {
    padding: 0 40px;
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
    .list-your-studio-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
        margin: 40px 20px 0 20px;
    }
    
    .cta-content, .cta-image {
        padding: 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .host-interest-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-image img {
        height: 300px;
    }
}



.footer {
    padding: 60px 40px 30px;
}

.calendar-key {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.key-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.key-color.green {
    background-color: #28a745;
}

.key-color.orange {
    background-color: #ffc107;
}

.key-label {
    font-size: 14px;
}