* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, rgba(34,211,238,0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(168,85,247,0.25), #020617 65%);
    color: #E5E7EB;
}

.app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(2,6,23,0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(30,64,175,0.8);
    box-shadow: 0 12px 30px rgba(15,23,42,0.95);
}

.navbar-brand {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #22D3EE;
    text-shadow: 0 0 10px rgba(34,211,238,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-links-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-links-mobile {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0 4px 0;
}

.navbar-links-mobile.active {
    display: flex;
}

.navbar-link {
    font-size: 14px;
    font-weight: 500;
    color: #9CA3AF;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.navbar-link:hover {
    color: #E5E7EB;
    background: rgba(15,23,42,0.9);
    box-shadow: 0 0 12px rgba(15,23,42,0.9);
}

.navbar-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #020617, 0 0 0 3px #22D3EE;
}

.menu-toggle {
    display: none;
}

.main-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 0 40px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.6s ease-out;
}

.hero-heading {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #F9FAFB;
    margin: 0 0 16px 0;
    text-shadow: 0 0 18px rgba(34,211,238,0.8);
}

.hero-subheading {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #9CA3AF;
    margin: 0 0 24px 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-meta {
    max-width: 420px;
}

.body-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #E5E7EB;
    margin: 0;
}

.body-text-muted {
    color: #9CA3AF;
}

.btn-primary {
    padding: 12px 24px;
    min-height: 44px;
    background: transparent;
    color: #22D3EE;
    border: 1px solid rgba(34,211,238,0.7);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 0 12px rgba(34,211,238,0.45);
    background-image: linear-gradient(135deg, rgba(34,211,238,0.18), rgba(168,85,247,0.18));
    transition: all 0.25s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-shadow: 0 0 6px rgba(34,211,238,0.7);
    border-width: 1px;
}

.btn-primary:hover {
    background: rgba(15,23,42,0.95);
    background-image: linear-gradient(135deg, rgba(34,211,238,0.35), rgba(168,85,247,0.35));
    border-color: #22D3EE;
    box-shadow: 0 0 18px rgba(34,211,238,0.8);
    transform: translateY(-2px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 0 8px rgba(34,211,238,0.5);
    background-image: linear-gradient(135deg, rgba(34,211,238,0.45), rgba(168,85,247,0.45));
}

.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #020617, 0 0 0 3px #22D3EE;
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
    background-image: none;
}

.btn-secondary {
    padding: 10px 20px;
    min-height: 40px;
    background: rgba(15,23,42,0.8);
    color: #E5E7EB;
    border: 1px solid rgba(148,163,184,0.6);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px rgba(15,23,42,0.7);
}

.btn-secondary:hover {
    background: rgba(30,64,175,0.6);
    border-color: #22D3EE;
    box-shadow: 0 0 12px rgba(34,211,238,0.5);
    transform: translateY(-1px);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 0 4px rgba(15,23,42,0.8);
}

.btn-secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #020617, 0 0 0 3px #A855F7;
}

.btn-secondary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary-sm {
    padding: 8px 16px;
    min-height: 36px;
    font-size: 13px;
}

.modern-ghost-btn {
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    background: transparent;
    color: #A855F7;
    border: 1px solid rgba(148,163,184,0.5);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 6px rgba(15,23,42,0.9);
}

.modern-ghost-btn:hover {
    border-color: #A855F7;
    box-shadow: 0 0 12px rgba(168,85,247,0.7);
    background: rgba(15,23,42,0.95);
    transform: translateY(-1px);
}

.modern-ghost-btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 0 4px rgba(15,23,42,0.9);
}

.modern-ghost-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #020617, 0 0 0 3px #A855F7;
}

.modern-ghost-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.menu-toggle-bar {
    width: 18px;
    height: 2px;
    background: #E5E7EB;
    border-radius: 999px;
}

.section-heading {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #F9FAFB;
    margin: 0 0 12px 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(168,85,247,0.7);
}

.section-subheading {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #9CA3AF;
    margin: 0 0 16px 0;
}

.section-header {
    max-width: 640px;
}

.style-slider {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(30,64,175,0.9);
    box-shadow: 0 20px 50px rgba(15,23,42,1), 0 0 24px rgba(34,211,238,0.4);
    background: radial-gradient(circle at top, rgba(34,211,238,0.2), transparent 60%),
    radial-gradient(circle at bottom, rgba(15,23,42,0.9), #020617 70%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    min-height: 320px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.style-slider:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(15,23,42,1), 0 0 30px rgba(34,211,238,0.6);
}

.style-slider-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 260px;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.style-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.style-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.style-slide-image:hover {
    transform: scale(1.05);
}

.style-slider-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(2,6,23,0.96), rgba(2,6,23,0.2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #E5E7EB;
    font-size: 13px;
}

.style-overlay-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.style-name {
    font-weight: 600;
}

.style-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #A855F7;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.7);
    background: rgba(2,6,23,0.9);
    color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(15,23,42,0.95);
}

.slider-arrow-left {
    left: 12px;
}

.slider-arrow-right {
    right: 12px;
}

.slider-arrow:hover {
    border-color: #22D3EE;
    color: #22D3EE;
    box-shadow: 0 0 18px rgba(34,211,238,0.7);
    transform: translateY(-50%) translateY(-2px);
}

.slider-arrow:active {
    transform: translateY(-50%) translateY(0);
    box-shadow: 0 6px 16px rgba(15,23,42,0.9);
}

.slider-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.style-slider-footer {
    padding: 8px 16px 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.style-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.style-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(148,163,184,0.5);
    transition: all 0.2s ease;
    cursor: pointer;
}

.style-slider-dot-active {
    width: 18px;
    background: #22D3EE;
    box-shadow: 0 0 10px rgba(34,211,238,0.8);
}

.style-slider-caption {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.style-caption-name {
    font-size: 13px;
    font-weight: 500;
}

.style-caption-meta {
    font-size: 12px;
    color: #9CA3AF;
}

.booking-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 16px 0;
}

.booking-step {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(51,65,85,0.9);
    background: rgba(15,23,42,0.9);
    font-size: 11px;
    font-weight: 500;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
}

.booking-step-active {
    border-color: #22D3EE;
    color: #22D3EE;
    box-shadow: 0 0 14px rgba(34,211,238,0.9);
    background: rgba(15,23,42,1);
}

.booking-step-completed {
    border-color: #22C55E;
    color: #22C55E;
    box-shadow: 0 0 14px rgba(34,197,94,0.9);
    background: rgba(15,23,42,1);
}

.booking-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.card {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    padding: 20px;
    background: rgba(15,23,42,0.92);
    border-radius: 16px;
    border: 1px solid rgba(30,64,175,0.7);
    box-shadow: 0 18px 45px rgba(15,23,42,0.95), 0 0 24px rgba(15,23,42,0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #E5E7EB;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
    background-image: radial-gradient(circle at top left, rgba(34,211,238,0.14), transparent 55%),
    radial-gradient(circle at bottom right, rgba(168,85,247,0.14), transparent 55%);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15,23,42,1), 0 0 32px rgba(34,211,238,0.35);
    border-color: rgba(34,211,238,0.8);
}

.card-header {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.card-footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.booking-card {
    min-height: 260px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 12px;
    align-items: stretch;
    width: 100%;
    margin-top: 8px;
}

.slot-pill {
    padding: 10px 16px;
    min-height: 36px;
    min-width: 72px;
    background: rgba(15,23,42,0.9);
    color: #E5E7EB;
    border: 1px solid rgba(148,163,184,0.7);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 10px 25px rgba(15,23,42,0.9);
    background-image: radial-gradient(circle at top, rgba(34,211,238,0.18), transparent 55%);
}

.slot-pill:hover {
    border-color: #22D3EE;
    box-shadow: 0 16px 35px rgba(15,23,42,0.95), 0 0 16px rgba(34,211,238,0.6);
    transform: translateY(-3px);
}

.slot-pill:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 20px rgba(15,23,42,0.9);
    background-image: radial-gradient(circle at top, rgba(34,211,238,0.28), transparent 60%);
}

.slot-pill:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #020617, 0 0 0 3px #22D3EE;
}

.slot-pill[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

.slot-pill-selected {
    background: rgba(15,23,42,1);
    border-color: #22D3EE;
    color: #22D3EE;
    box-shadow: 0 0 20px rgba(34,211,238,0.85);
    text-shadow: 0 0 8px rgba(34,211,238,0.9);
    transform: translateY(-4px);
}

.booking-form-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 20px;
    background: rgba(15,23,42,0.96);
    border-radius: 16px;
    border: 1px solid rgba(30,64,175,0.8);
    box-shadow: 0 18px 45px rgba(15,23,42,1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #E5E7EB;
    gap: 16px;
}

.form-header {
    font-size: 16px;
    font-weight: 600;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}

.form-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: #CBD5F5;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.input-text {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    background: rgba(15,23,42,0.9);
    color: #E5E7EB;
    border: 1px solid rgba(51,65,85,0.9);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    outline: none;
    caret-color: #22D3EE;
}

.input-text::placeholder {
    color: #64748B;
}

.input-text:hover {
    border-color: rgba(148,163,184,0.9);
    box-shadow: 0 0 0 1px rgba(148,163,184,0.4);
}

.input-text:focus-visible {
    border-color: #22D3EE;
    box-shadow: 0 0 0 1px rgba(34,211,238,0.6), 0 0 16px rgba(34,211,238,0.35);
}

.input-text:disabled {
    background: rgba(15,23,42,0.7);
    color: #6B7280;
    border-color: rgba(55,65,81,0.9);
    cursor: not-allowed;
    box-shadow: none;
}

.textarea {
    width: 100%;
    min-height: 96px;
    padding: 10px 14px;
    background: rgba(15,23,42,0.9);
    color: #E5E7EB;
    border: 1px solid rgba(51,65,85,0.9);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    resize: vertical;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    outline: none;
    caret-color: #22D3EE;
}

.textarea::placeholder {
    color: #64748B;
}

.textarea:hover {
    border-color: rgba(148,163,184,0.9);
    box-shadow: 0 0 0 1px rgba(148,163,184,0.4);
}

.textarea:focus-visible {
    border-color: #22D3EE;
    box-shadow: 0 0 0 1px rgba(34,211,238,0.6), 0 0 16px rgba(34,211,238,0.35);
}

.textarea:disabled {
    background: rgba(15,23,42,0.7);
    color: #6B7280;
    border-color: rgba(55,65,81,0.9);
    cursor: not-allowed;
    box-shadow: none;
}

.input-error {
    border-color: #F97373 !important;
    box-shadow: 0 0 0 1px rgba(249,115,115,0.7) !important;
    animation: shake 0.25s ease-in-out;
}

.field-error {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #F97373;
    margin-top: 2px;
    min-height: 16px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.summary-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
    align-items: stretch;
}

.summary-card {
    display: flex;
    flex-direction: column;
    min-height: 160px;
    padding: 16px;
    background: rgba(15,23,42,0.96);
    border-radius: 16px;
    border: 1px dashed rgba(34,211,238,0.7);
    box-shadow: 0 14px 35px rgba(15,23,42,1);
    color: #E5E7EB;
    gap: 8px;
    position: relative;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.summary-label {
    color: #9CA3AF;
}

.summary-value {
    text-align: right;
}

.summary-footer {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.history-table-wrapper {
    width: 100%;
}

.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 13px;
    color: #E5E7EB;
    background: rgba(15,23,42,0.96);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(15,23,42,1);
    min-width: 100%;
}

.table th {
    padding: 10px 12px;
    background: rgba(15,23,42,1);
    border-bottom: 1px solid rgba(30,64,175,0.8);
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: #9CA3AF;
}

.table tr {
    transition: background 0.2s ease;
}

.table tr:hover {
    background: rgba(15,23,42,0.9);
}

.table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(31,41,55,0.9);
    font-size: 13px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.modal-backdrop[hidden] {
    display: none;
}

.modal-dialog {
    width: 100%;
    max-width: 420px;
    margin: 16px;
    background: rgba(15,23,42,0.98);
    border-radius: 20px;
    border: 1px solid rgba(34,211,238,0.8);
    box-shadow: 0 24px 70px rgba(15,23,42,1), 0 0 30px rgba(34,211,238,0.7);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideInUp 0.35s ease-out;
}

.modal-header {
    margin-bottom: 4px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed rgba(148,163,184,0.7);
    background: rgba(15,23,42,0.96);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.site-footer {
    width: 100%;
    border-top: 1px solid rgba(30,64,175,0.8);
    margin-top: 40px;
    padding: 16px 20px;
    background: rgba(2,6,23,0.98);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #6B7280;
    z-index: 10;
}

.footer-text {
    font-size: 12px;
    color: #6B7280;
}

.footer-created {
    font-size: 12px;
    color: #9CA3AF;
}

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

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

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 72px 0 32px 0;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .navbar-links-desktop {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
    }

    .hero-heading {
        font-size: 30px;
    }

    .main-content {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 64px;
    }

    .card, .booking-form-card {
        padding: 16px;
    }

    .style-slider-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .style-slider-caption {
        align-items: flex-start;
    }

    .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
}
