:root {
    --primary-color: #B85C3A;
    --primary-light: #D4876B;
    --primary-dark: #8B4230;
    --secondary-color: #7B6E64;
    --accent-gold: #E8B860;
    --accent-gold-light: rgba(232, 184, 96, 0.18);
    --accent-warm: #C8956C;
    --accent-warm-light: rgba(200, 149, 108, 0.12);
    --bg-cream: #FFFBF4;
    --bg-warm: #FFF3E8;
    --bg-gradient-start: #FFFBF4;
    --bg-gradient-end: #FDF0E5;
    --bg-card: #FFFFFF;
    --text-primary: #2D2420;
    --text-secondary: #7B6E64;
    --text-muted: #A89880;
    --border-light: #E8E2DA;
    --border-gold: rgba(232, 184, 96, 0.4);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(232, 184, 96, 0.2);
    --shadow-warm: 0 4px 20px rgba(200, 149, 108, 0.2);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 15px;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    animation: pageFadeIn 1s ease-out;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 92, 58, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    border-bottom-color: rgba(184, 92, 58, 0.15);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 16px;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold), var(--primary-color));
    border-radius: 1px;
}

.logo-main {
    font-size: 23px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.3px;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 1px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.35s ease;
    position: relative;
    padding: 8px 14px;
    font-size: 13.5px;
    letter-spacing: 0.4px;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-admin {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(184, 92, 58, 0.1);
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.35s ease;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.btn-admin:hover {
    opacity: 1;
    border-color: rgba(184, 92, 58, 0.25);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-lang {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(184, 92, 58, 0.15);
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
    font-size: 12.5px;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.btn-lang:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(184, 92, 58, 0.03);
}

.btn-primary, .btn-secondary {
    padding: 10px 22px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 2px 10px rgba(184, 92, 58, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 92, 58, 0.3);
}

.btn-primary:active, .btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(184, 92, 58, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(184, 92, 58, 0.04);
    transform: translateY(-2px);
}

.btn-primary.small {
    padding: 9px 18px;
    font-size: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    min-height: 100vh;
    background: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=luxury%20spa%20massage%20treatment%20room%20interior%20warm%20ambient%20lighting%20candles%20massage%20table%20beige%20linen%20towel%20round%20mirror%20wooden%20furniture%20potted%20plants%20zen%20atmosphere%20professional%20wellness%20center&image_size=landscape_16_9') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.4) 0%, rgba(200, 149, 108, 0.2) 50%, rgba(232, 184, 96, 0.1) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-top-title {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.hero-top-title span {
    font-size: 11px;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-weight: 400;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-main-title {
    font-size: 56px;
    font-weight: 600;
    color: white;
    font-family: 'Noto Serif SC', 'Playfair Display', serif;
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.9;
    letter-spacing: 0.2px;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.hero-buttons .btn-primary {
    animation: float 3s ease-in-out infinite;
}

.hero-buttons .btn-secondary {
    animation: float 3s ease-in-out 0.5s infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FFFDF8' fill-opacity='1' d='M0,64L60,69.3C120,75,240,85,360,80C480,75,600,53,720,48C840,43,960,53,1080,58.7C1200,64,1320,64,1380,64L1440,64L1440,100L1380,100C1320,100,1200,100,1080,100C960,100,840,100,720,100C600,100,480,100,360,100C240,100,120,100,60,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.1), rgba(210, 105, 30, 0.1));
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border: 1px solid rgba(184, 92, 58, 0.1);
    font-weight: 500;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.section-description {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.services {
    padding: 100px 20px;
    background: var(--bg-cream);
}

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

.service-card {
    background: var(--bg-card);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1).animate-in { animation-delay: 0.1s; }
.service-card:nth-child(2).animate-in { animation-delay: 0.2s; }
.service-card:nth-child(3).animate-in { animation-delay: 0.3s; }
.service-card:nth-child(4).animate-in { animation-delay: 0.4s; }
.service-card:nth-child(5).animate-in { animation-delay: 0.5s; }
.service-card:nth-child(6).animate-in { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--accent-warm));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(184, 92, 58, 0.3);
}

.service-card:hover .service-duration {
    animation: bounceIn 0.4s ease;
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(184, 92, 58, 0.1));
    pointer-events: none;
}

.service-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    white-space: normal;
    line-height: 1.3;
}

.service-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.tag {
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.08), rgba(200, 149, 108, 0.08));
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid rgba(184, 92, 58, 0.12);
    transition: all 0.3s ease;
}

.service-card:hover .tag {
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.15), rgba(200, 149, 108, 0.1));
    border-color: rgba(184, 92, 58, 0.2);
}

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

.price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.booking {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.booking-steps {
    max-width: 800px;
    margin: 0 auto;
}

.booking-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

.booking-step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.step-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
}

.booking-services, .booking-therapists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.booking-service, .therapist-card, .time-slot, .payment-option {
    padding: 22px;
    background: white;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.booking-service::before, .therapist-card::before, .time-slot::before, .payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(232, 184, 96, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-service:hover, .therapist-card:hover, .time-slot:hover, .payment-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.booking-service:hover::before, .therapist-card:hover::before, .time-slot:hover::before, .payment-option:hover::before {
    opacity: 1;
}

.booking-service.selected, .therapist-card.selected, .time-slot.selected, .payment-option.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.05), rgba(232, 184, 96, 0.05));
}

.service-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 15px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.therapist-card {
    display: flex;
    align-items: center;
    gap: 18px;
}

.therapist-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.therapist-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.therapist-title {
    font-size: 13px;
    color: var(--text-muted);
}

.date-input {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    font-size: 16px;
    margin-bottom: 25px;
    background: white;
    transition: all 0.3s ease;
}

.date-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 92, 58, 0.1);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}

.time-slot {
    text-align: center;
    padding: 18px;
    font-weight: 600;
}

.booking-form input, .booking-form textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
}

.booking-form input:focus, .booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 92, 58, 0.1);
}

.booking-form textarea {
    min-height: 120px;
    resize: vertical;
}

.order-summary {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.order-summary h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.order-item span:first-child {
    color: var(--text-muted);
}

.order-item span:last-child {
    font-weight: 500;
}

.order-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--border-light), var(--accent-gold), var(--border-light));
    margin: 20px 0;
    border-radius: 2px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icon {
    font-size: 28px;
}

.payment-label {
    font-weight: 600;
}

.booking-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.booking-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.promotions {
    padding: 100px 20px;
    background: var(--bg-cream);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.promotion-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(30px);
}

.promotion-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 92, 58, 0.2);
}

.promotion-card:hover::before {
    transform: scale(1.5);
}

.promotion-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
}

.promotion-card.featured::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.promotion-card.featured h3,
.promotion-card.featured p {
    color: white;
}

.promotion-card.featured .btn-primary {
    background: white;
    color: var(--primary-color);
}

.promotion-card.featured .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.promotion-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 14px;
    background: var(--accent-gold);
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
}

.promotion-card.featured .promotion-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.promotion-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.promotion-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.promotion-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.05), rgba(232, 184, 96, 0.1));
    border: 1px solid var(--border-gold);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 50px;
    color: rgba(184, 92, 58, 0.1);
    font-family: 'Playfair Display', serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.client-info h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.client-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.client-rating {
    margin-left: auto;
    color: var(--accent-gold);
    font-size: 16px;
}

.testimonial-content {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}

.contact {
    padding: 100px 20px;
    background: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.1), rgba(210, 105, 30, 0.1));
    border-radius: 15px;
}

.info-content .info-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.info-content .info-value {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 15px;
}

.map-container {
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.08), rgba(210, 105, 30, 0.08));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.map-icon {
    font-size: 55px;
}

.map-text {
    font-weight: 600;
    color: var(--text-primary);
}

.footer {
    background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
    color: white;
    padding: 80px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 700;
    display: block;
    font-family: 'Playfair Display', serif;
}

.footer-logo p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    margin-top: 5px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

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

.modal {
    background: white;
    border-radius: 25px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.payment-info {
    margin-bottom: 25px;
}

.payment-info p {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.qrcode-placeholder {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-warm), var(--bg-cream));
    border-radius: 20px;
    margin-bottom: 25px;
}

.qrcode-placeholder span {
    font-size: 70px;
    display: block;
    margin-bottom: 20px;
}

.qrcode-placeholder p {
    color: var(--text-secondary);
    font-weight: 500;
}

#cardForm {
    margin-bottom: 25px;
}

.card-type-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.05), rgba(232, 184, 96, 0.05));
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.card-type-indicator span:first-child {
    font-size: 24px;
}

#cardForm input {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    font-size: 16px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    background: white;
}

#cardForm input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 92, 58, 0.1);
}

.card-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.payment-status {
    text-align: center;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    background: rgba(255, 253, 248, 0.8);
}

.status-pending {
    color: var(--text-muted);
}

.status-success {
    color: #2ECC71;
    font-weight: 600;
    font-size: 18px;
}

.status-error {
    color: #E74C3C;
    font-weight: 600;
}

.status-verifying {
    color: #3498DB;
    font-weight: 600;
    animation: pulse 1s infinite;
}

.status-approved {
    color: #F39C12;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#paymentReview {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.review-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
    text-align: center;
}

.review-details {
    margin-bottom: 20px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.review-item:last-child {
    border-bottom: none;
}

.review-item .label {
    color: var(--text-muted);
    font-weight: 500;
}

.review-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

.review-item.total {
    background: linear-gradient(135deg, rgba(184, 92, 58, 0.05), rgba(232, 184, 96, 0.05));
    padding: 15px;
    margin-top: 10px;
    border-radius: 12px;
    border-bottom: none;
}

.review-item.total .label {
    color: var(--primary-color);
    font-weight: 600;
}

.review-item.total .value {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.review-actions {
    display: flex;
    gap: 15px;
}

.review-actions button {
    flex: 1;
    padding: 15px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 253, 248, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        flex-direction: column;
        gap: 8px;
        border-bottom: 1px solid rgba(184, 92, 58, 0.08);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 10px 16px;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hero-top-title {
        top: 105px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-main-title {
        font-size: 42px;
        line-height: 1.25;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 440px;
        line-height: 1.7;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 30px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 15px;
        max-width: 480px;
    }

    .services, .booking, .promotions, .testimonials, .contact {
        padding: 80px 16px;
    }

    .section-header {
        margin-bottom: 48px;
    }

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

    .service-card {
        border-radius: 20px;
    }

    .booking-nav {
        flex-direction: column;
    }

    .booking-nav button {
        width: 100%;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-item {
        padding: 20px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer {
        padding: 60px 16px;
    }

    .footer-logo span {
        font-size: 26px;
    }

    .footer-section h4 {
        font-size: 15px;
    }

}

@media (max-width: 480px) {
    .hero {
        padding: 110px 20px 80px;
    }

    .hero-top-title {
        top: 95px;
    }

    .hero-main-title {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 340px;
        line-height: 1.7;
    }

    .services, .booking, .promotions, .testimonials, .contact {
        padding: 70px 14px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 26px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 14px;
        max-width: 400px;
    }

    .service-image {
        height: 180px;
    }

    .service-info {
        padding: 20px;
    }

    .service-info h3 {
        font-size: 18px;
    }

    .order-summary {
        padding: 25px;
    }

    .order-summary h4 {
        font-size: 18px;
    }

    .order-total {
        font-size: 20px;
    }

    .promotion-card {
        padding: 28px;
    }

    .promotion-card h3 {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .modal {
        margin: 20px;
        border-radius: 20px;
    }

    .modal-header {
        padding: 20px 24px;
    }

    .modal-body {
        padding: 24px;
    }

    .footer {
        padding: 60px 16px;
    }

    .footer-logo span {
        font-size: 24px;
    }
}
