* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.5;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: #3b82f6;
}

.logo span {
    color: #3b82f6;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #3b82f6;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: white;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-image {
    flex: 1;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-title .accent {
    color: #3b82f6;
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

/* Catalog Filters */
.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 40px;
    background: #f1f5f9;
    border: none;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: #334155;
}

.filter-btn:hover {
    background: #e2e8f0;
}

.filter-btn.active {
    background: #3b82f6;
    color: white;
}

/* Catalog Grid */
.catalog-section {
    padding: 80px 0;
    background: white;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.125rem;
    margin-bottom: 6px;
}

.product-category {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #3b82f6;
}

.product-price-hour {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
}

.product-price span, .product-price-hour span {
    font-size: 0.8rem;
    font-weight: 400;
}

/* Prices Section */
.prices {
    padding: 80px 0;
    background: #f9fafb;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.price-card {
    background: white;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-card h3 i {
    color: #3b82f6;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0 4px;
}

.price-value.small {
    font-size: 1.3rem;
}

.price-value-hour {
    font-size: 1rem;
    color: #475569;
    margin-top: 8px;
}

.price-value span, .price-value-hour span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #64748b;
}

.price-note {
    font-size: 0.8rem;
    margin-top: 12px;
    color: #64748b;
}

.discount-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
}

.discount-card h3 {
    color: white;
}

.discount-card h3 i {
    color: #f59e0b;
}

.discount-item {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 16px 0;
    color: #f59e0b;
}

.discount-item span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #cbd5e1;
}

.price-note-bottom {
    margin-top: 32px;
    padding: 16px;
    background: #eef2ff;
    border-radius: 12px;
    text-align: center;
    font-size: 0.85rem;
    color: #1e40af;
}

/* Locations */
.locations {
    padding: 80px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.location-card {
    background: #f9fafb;
    padding: 28px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.2s;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -10px rgba(0,0,0,0.1);
}

.location-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 16px;
}

.location-card h3 {
    margin-bottom: 12px;
}

.location-card p {
    color: #475569;
    margin-bottom: 16px;
}

.work-time {
    display: inline-block;
    background: #e6f0ff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #2563eb;
    margin: 4px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    padding: 32px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-large {
    max-width: 650px;
}

.close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
}

.close:hover {
    color: #1e293b;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

.tab-btn.active {
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
    margin-bottom: -2px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-footer {
    text-align: center;
    margin-top: 16px;
}

.form-footer a {
    color: #3b82f6;
    text-decoration: none;
}

/* Booking Modal */
.booking-summary {
    background: #f1f5f9;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.booking-summary h3 {
    margin-bottom: 8px;
    color: #1e293b;
}

.booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #eef2ff;
    border-radius: 12px;
    margin: 20px 0;
    font-weight: 600;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
}

.booking-deposit {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 20px;
    padding: 12px;
    background: #fef3c7;
    border-radius: 12px;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1100;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    background: #ef4444;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 48px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    color: white;
    margin-bottom: 12px;
    display: inline-block;
}

.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #3b82f6;
}

.footer-col p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: #1e293b;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .nav {
        display: none;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .catalog-filters {
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}