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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #ff007f;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #9d00ff;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 0, 127, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
}

.logo-link {
    color: #fff;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e0e0e0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff007f;
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e0e0e0;
    transition: all 0.3s;
}

.nav-close {
    display: none;
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
    padding: 4px;
}

.nav-close:hover {
    color: #ff007f;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(157, 0, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 0, 127, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(2%, 2%) rotate(3deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 127, 0.03) 2px,
        rgba(255, 0, 127, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: clamp(48px, 12vw, 96px);
    font-weight: 800;
    letter-spacing: clamp(6px, 1.5vw, 12px);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(255, 0, 127, 0.3);
}

.hero-subtitle {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(14px, 2vw, 18px);
    color: #ff007f;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #888;
    margin-bottom: 40px;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #ff007f;
    animation: bounce 2s infinite;
    font-family: 'Roboto Mono', monospace;
}

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

.section {
    padding: 80px 0;
}

.section-dark {
    background: #12121a;
    border-top: 1px solid rgba(255, 0, 127, 0.1);
}

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff007f, #9d00ff);
}

.main-offset {
    padding-top: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.service-group {
    margin-bottom: 40px;
}

.service-group:last-child {
    margin-bottom: 0;
}

.service-group-title {
    font-size: 18px;
    font-weight: 700;
    color: #9d00ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(157, 0, 255, 0.2);
}

.service-item {
    background: #12121a;
    border: 1px solid rgba(255, 0, 127, 0.15);
    padding: 20px 24px;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.service-item:hover {
    border-color: #ff007f;
}

.service-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.service-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.service-item-price {
    font-family: 'Roboto Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #ff007f;
    white-space: nowrap;
}

.service-item-includes {
    list-style: none;
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.service-item-includes li {
    font-size: 13px;
    color: #888;
    position: relative;
    padding-left: 14px;
}

.service-item-includes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #555;
}

.service-card {
    background: #12121a;
    border: 1px solid rgba(255, 0, 127, 0.2);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    border-color: #ff007f;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.15);
}

.service-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.5;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 0, 127, 0.1);
}

.service-price {
    font-family: 'Roboto Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: #ff007f;
}

.service-duration {
    font-size: 12px;
    color: #666;
    font-family: 'Roboto Mono', monospace;
}

.service-category {
    font-size: 11px;
    color: #9d00ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: #ff007f;
    color: #fff;
}

.btn-primary:hover {
    background: #cc0066;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid rgba(255, 0, 127, 0.3);
}

.btn-secondary:hover {
    border-color: #ff007f;
    color: #fff;
}

.btn-block {
    width: 100%;
}

.btn-small {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    color: #e0e0e0;
    border: 1px solid rgba(255, 0, 127, 0.3);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-small:hover {
    border-color: #ff007f;
    color: #fff;
}

.btn-danger {
    border-color: rgba(255, 51, 51, 0.4);
    color: #ff3333;
}

.btn-danger:hover {
    border-color: #ff3333;
    background: rgba(255, 51, 51, 0.1);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.contact-card {
    background: #0a0a0f;
    border: 1px solid rgba(157, 0, 255, 0.2);
    padding: 24px;
    transition: border-color 0.3s;
}

.contact-card:hover {
    border-color: #9d00ff;
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
}

.contact-route {
    display: inline-block;
    font-size: 12px;
    color: #ff007f;
    margin-top: 8px;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-route:hover {
    color: #9d00ff;
}

.route-wrapper {
    text-align: center;
    margin-top: 32px;
}

.route-btn {
    display: inline-block;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background: #12121a;
    border: 1px solid rgba(255, 0, 127, 0.3);
    width: 92%;
    max-width: 460px;
    padding: 32px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #666;
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
}

.form-label.required::after {
    content: ' *';
    color: #ff007f;
}

.optional-badge {
    color: #666;
    font-size: 11px;
    font-style: italic;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-input:focus {
    outline: none;
    border-color: #ff007f;
}

.form-input::placeholder {
    color: #444;
}

select.form-input {
    cursor: pointer;
}

select.form-input option {
    background: #12121a;
    color: #e0e0e0;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.form-error {
    display: block;
    font-size: 12px;
    color: #ff3333;
    margin-top: 4px;
    min-height: 16px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #888;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #ff007f;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    font-size: 13px;
    text-align: center;
}

.form-message.success {
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: #00ff9d;
}

.form-message.error {
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: #ff3333;
}

.address-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.address-option {
    display: flex;
    flex-direction: column;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.address-option:hover {
    border-color: rgba(255, 0, 127, 0.4);
}

.address-option.active {
    border-color: #ff007f;
    background: rgba(255, 0, 127, 0.08);
}

.address-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.address-option.active .address-name {
    color: #ff007f;
}

.address-detail {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

.contact-phone {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-phone {
    background: #ff007f;
    animation: pulseFab 2s infinite;
}

@keyframes pulseFab {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0); }
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    .fab {
        width: 50px;
        height: 50px;
    }
}

.footer {
    border-top: 1px solid rgba(255, 0, 127, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: #444;
}

.profile-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.profile-desc {
    color: #888;
    margin-bottom: 32px;
}

.profile-form {
    width: 100%;
    max-width: 360px;
}

.profile-info {
    background: #12121a;
    border: 1px solid rgba(255, 0, 127, 0.15);
    padding: 20px;
    margin-bottom: 32px;
    font-size: 14px;
}

.profile-info p {
    margin-bottom: 4px;
}

.profile-empty {
    text-align: center;
    color: #666;
    padding: 60px 0;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.profile-header .section-title {
    margin-bottom: 0;
}

.btn-profile-add {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #ff007f;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-profile-add:hover {
    background: #cc0066;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    transform: scale(1.05);
    color: #fff;
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-card {
    background: #12121a;
    border: 1px solid rgba(255, 0, 127, 0.15);
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.booking-service {
    font-weight: 700;
    color: #fff;
    min-width: 200px;
}

.booking-time {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    color: #888;
}

.booking-address {
    font-size: 12px;
    color: #9d00ff;
    background: rgba(157, 0, 255, 0.1);
    padding: 2px 8px;
    display: inline-block;
}

.booking-status {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 0, 127, 0.3);
    color: #ff007f;
}

.booking-rate {
    margin-left: auto;
    font-size: 13px;
    color: #888;
}

.stars {
    display: inline-flex;
    gap: 4px;
    margin-left: 8px;
}

.star {
    font-size: 20px;
    color: #444;
    cursor: pointer;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.star:hover,
.star.active {
    color: #ff007f;
}

.admin-body {
    background: #0a0a0f;
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-box {
    background: #12121a;
    border: 1px solid rgba(255, 0, 127, 0.2);
    padding: 48px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-box h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 8px;
}

.admin-login-sub {
    color: #666;
    margin-bottom: 32px;
    font-size: 14px;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    background: #12121a;
    border-right: 1px solid rgba(255, 0, 127, 0.15);
    padding: 32px 24px;
    flex-shrink: 0;
}

.admin-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-nav a {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    transition: all 0.2s;
}

.admin-nav a:hover {
    color: #fff;
    background: rgba(255, 0, 127, 0.1);
}

.admin-main {
    flex: 1;
    padding: 40px;
    min-width: 0;
}

.admin-main h1 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
}

.admin-main h2 {
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 20px;
    margin-top: 32px;
}

.admin-note {
    color: #888;
    margin-bottom: 20px;
    font-size: 14px;
}

.settings-guide {
    background: #0a0a0f;
    border: 1px solid rgba(255, 0, 127, 0.15);
    padding: 24px;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.7;
}

.settings-guide h3 {
    color: #ff007f;
    font-size: 16px;
    margin-bottom: 12px;
}

.settings-guide ol {
    padding-left: 20px;
    color: #ccc;
}

.settings-guide li {
    margin-bottom: 8px;
}

.settings-guide code {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    color: #9d00ff;
    background: rgba(157, 0, 255, 0.1);
    padding: 1px 6px;
}

.admin-form {
    max-width: 600px;
}

.admin-form .form-group {
    margin-bottom: 16px;
}

.admin-search {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    max-width: 600px;
}

.admin-search .form-input {
    flex: 1;
}

.admin-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    border-bottom: 1px solid rgba(255, 0, 127, 0.15);
    font-weight: 700;
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table tr:hover td {
    background: rgba(255, 0, 127, 0.03);
}

.admin-table .actions {
    display: flex;
    gap: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: #12121a;
    border: 1px solid rgba(255, 0, 127, 0.15);
    padding: 28px;
    text-align: center;
}

.stat-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 40px;
    font-weight: 800;
    color: #ff007f;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-top: 6px;
}

.flash {
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    text-align: center;
}

.flash-success {
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: #00ff9d;
}

.flash-error {
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: #ff3333;
}

.user-detail {
    background: #12121a;
    border: 1px solid rgba(255, 0, 127, 0.15);
    padding: 24px;
    margin-bottom: 32px;
}

.user-detail p {
    margin-bottom: 8px;
    font-size: 14px;
}

.user-detail strong {
    color: #888;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        background: #12121a;
        padding: 80px 24px 24px;
        gap: 8px;
        transition: right 0.3s ease;
        z-index: 99;
        border-left: 1px solid rgba(255, 0, 127, 0.15);
    }

    .nav-close {
        display: block;
    }

    .nav.nav-open {
        right: 0;
    }

    .nav a {
        font-size: 14px;
        padding: 12px 14px;
    }

    .nav a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-open ~ .nav-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-open ~ .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open ~ .nav-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .address-selector {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 24px 20px;
        width: 95%;
    }

    .admin-sidebar {
        width: 200px;
        padding: 24px 16px;
    }

    .admin-main {
        padding: 24px;
    }

    .booking-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .booking-service {
        min-width: 0;
        width: 100%;
    }

    .booking-rate {
        margin-left: 0;
        width: 100%;
    }

    .admin-login-box {
        padding: 32px 24px;
    }

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

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

    .btn {
        padding: 14px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 12px 16px;
    }

    .logo {
        font-size: 22px;
    }

    .section {
        padding: 40px 0;
    }

    .modal-content {
        padding: 20px 16px;
    }

    .service-item {
        padding: 16px;
    }

    .service-item-name {
        font-size: 14px;
    }

    .service-item-price {
        font-size: 18px;
    }

    .admin-main {
        padding: 16px;
    }

    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        padding: 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 0, 127, 0.15);
    }

    .admin-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .admin-nav a {
        font-size: 11px;
        padding: 6px 10px;
    }

    .admin-logo {
        margin-bottom: 16px;
        font-size: 20px;
    }

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

    .stat-value {
        font-size: 32px;
    }

    .contact-card {
        padding: 16px;
    }
}
