:root {
    --white: #ffffff;
    --bg-light: #f8fbff;
    --bg-section: #f0f6ff;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-blue: 0 8px 30px rgba(59,130,246,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
}

.logo-khente { color: var(--white); font-weight: 900; }
.logo-homie { color: var(--blue-400); font-weight: 800; }
.logo-records { color: var(--white); font-weight: 800; }
.navbar.scrolled .logo-khente { color: var(--text-dark); }
.navbar.scrolled .logo-homie { color: var(--blue-600); }
.navbar.scrolled .logo-records { color: var(--text-dark); }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-400);
    transition: width 0.3s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover { color: var(--blue-600); }
.navbar.scrolled .nav-links a::after { background: var(--blue-600); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--text-dark); }


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0a0e27;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
    transition: opacity 1.2s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(10, 14, 39, 0.7) 0%,
            rgba(13, 27, 62, 0.45) 40%,
            rgba(13, 27, 62, 0.5) 60%,
            rgba(10, 14, 39, 0.85) 100%
        ),
        radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-title {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title-line {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1.1;
}

.hero-title-line.accent {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    letter-spacing: 4px;
}
.hero-title-line .hero-homie { color: var(--blue-400); }
.hero-title-line .hero-records { color: #fff; }

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta-btn {
    opacity: 0;
    transform: translateY(30px);
}


.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

body.hero-animate .hero-title {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
body.hero-animate .hero-subtitle {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}
body.hero-animate .hero-cta-btn {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}
body.hero-animate .hero-scroll-indicator {
    animation: fadeIn 1s ease 0.8s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59,130,246,0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
    box-shadow: var(--shadow-blue);
    border-radius: var(--radius-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59,130,246,0.35);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}



.nav-cta-btn {
    padding: 8px 22px !important;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59,130,246,0.4);
}

.nav-cta-btn::after { display: none !important; }

.navbar.scrolled .nav-cta-btn {
    color: #fff !important;
}

.section-cta {
    background: linear-gradient(135deg, #0d1b3e, #132f5e);
    padding: 100px 0;
}

.cta-wrapper {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--blue-300);
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 16px 0 20px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 36px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(59,130,246,0.3);
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(59,130,246,0.45);
}

.featured-paket {
    font-weight: 400;
    font-size: 16px;
    opacity: 0.7;
}

.section {
    padding: 100px 0;
}

.section-about { background: var(--white); }
.section-equipment { background: #fafcff; }
.section-room { background: var(--white); }
.section-services { background: #fafcff; }
.section-booking { background: var(--white); }
.section-referral { background: #fafcff; }
.section-contact { background: #fafcff; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
    margin: 20px auto 0;
    border-radius: 3px;
}


.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-600);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.equipment-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.equipment-image {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b3e, #1a2744);
}

.equipment-image img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 360px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.equipment-info {
    padding: 28px;
}

.equipment-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.equipment-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}


.room-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.room-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.room-image img {
    width: 100%;
    display: block;
}

.room-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.room-feature:hover {
    background: var(--blue-50);
    transform: translateX(4px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    border-radius: var(--radius-sm);
    color: #fff;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.room-feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.room-feature p {
    font-size: 13px;
    color: var(--text-muted);
}

.room-description {
    margin-top: 40px;
    text-align: center;
}

.room-description p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 24px;
    background: var(--blue-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--blue-500);
}


.pricing-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pricing-top-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-amount {
    margin-bottom: 20px;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-600);
}

.currency {
    font-size: 15px;
    font-weight: 600;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    padding-left: 18px;
}

.pricing-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--blue-400);
    font-weight: 600;
}

.pricing-featured-row {
    margin-top: 4px;
}

.pricing-card-featured {
    background: linear-gradient(135deg, #0d1b3e, #132f5e);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transition: var(--transition);
}

.pricing-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 27, 62, 0.3);
}

.featured-left {
    flex: 1;
}

.featured-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.pricing-card-featured h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.featured-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 480px;
}

.featured-right {
    text-align: right;
    flex-shrink: 0;
}

.featured-price-old {
    font-size: 16px;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-card-featured .price {
    color: var(--blue-300);
    font-size: 42px;
}

.pricing-card-featured .currency {
    color: rgba(255,255,255,0.6);
}


.booking-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.required { color: #ef4444; }
.optional { color: var(--text-light); font-weight: 400; font-size: 12px; }

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    min-height: 16px;
}

.form-success {
    font-size: 12px;
    color: #10b981;
    margin-top: 4px;
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    cursor: pointer;
}

.custom-select::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
}

.form-row-full {
    grid-template-columns: 1fr;
}

.form-group-full {
    grid-column: 1 / -1;
}

.service-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.service-checkbox:hover {
    border-color: var(--blue-300);
    background: var(--blue-50);
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
    background: var(--white);
}

.service-checkbox input:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    border-color: var(--blue-600);
}

.service-checkbox input:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.service-checkbox input:checked ~ .checkbox-label .checkbox-service-name {
    color: var(--blue-700);
    font-weight: 600;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 8px;
}

.checkbox-service-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.checkbox-service-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-600);
    white-space: nowrap;
}

.checkbox-service-price s,
.checkbox-price-old {
    color: var(--text-light);
    font-weight: 400;
    margin-right: 6px;
    text-decoration: line-through;
}

.combo-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.featured-paket-label {
    width: 100%;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue-700);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    text-decoration: underline;
}

.service-checkbox-featured .checkbox-label {
    flex-wrap: wrap;
}

.service-checkbox-featured {
    border-color: #fdba74;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.service-checkbox-featured:hover {
    border-color: #fb923c;
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

.service-checkbox-featured:has(input:checked) {
    border-color: #ea580c;
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.service-checkbox-featured input:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: #ea580c;
}

.service-checkbox-featured input:checked ~ .checkbox-label .checkbox-service-name {
    color: #c2410c;
}

.service-checkbox-featured .checkbox-service-price {
    color: var(--blue-600);
    font-weight: 700;
}

.service-checkbox-featured .checkbox-price-old {
    color: #ea580c;
    font-weight: 500;
}

.service-checkbox input:checked ~ .checkbox-label {
    opacity: 1;
}

.service-checkbox:has(input:checked) {
    border-color: var(--blue-400);
    background: var(--blue-50);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.08);
}

.date-picker-wrapper {
    position: relative;
}

.date-picker-wrapper input {
    cursor: pointer;
    padding-right: 44px;
}

.date-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

.calendar-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 100;
    display: none;
    overflow: hidden;
}

.calendar-dropdown.open {
    display: block;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
}

.calendar-nav {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.calendar-nav:hover { background: rgba(255,255,255,0.15); }

.calendar-month-year {
    font-weight: 600;
    font-size: 15px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 12px;
    background: var(--blue-50);
}

.calendar-weekday {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-600);
    padding: 6px 0;
    text-transform: uppercase;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 12px 12px;
    gap: 2px;
}

.calendar-day {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-body);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--blue-100);
    color: var(--blue-700);
}

.calendar-day.today {
    border: 2px solid var(--blue-400);
    font-weight: 600;
}

.calendar-day.selected {
    background: var(--blue-600);
    color: #fff;
    font-weight: 600;
}

.calendar-day.disabled {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.4;
}

.calendar-day.empty {
    cursor: default;
}

.timeslot-options {
    display: flex;
    gap: 10px;
}

.timeslot-option {
    flex: 1;
    cursor: pointer;
}

.timeslot-option input {
    display: none;
}

.timeslot-label {
    display: block;
    padding: 12px;
    text-align: center;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition);
}

.timeslot-option:hover .timeslot-label {
    border-color: var(--blue-300);
    background: var(--blue-50);
}

.timeslot-option input:checked + .timeslot-label {
    border-color: var(--blue-500);
    background: var(--blue-50);
    color: var(--blue-700);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.08);
}

.timeslot-option {
    position: relative;
}

.timeslot-block-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--text-body, #374151);
    opacity: 0.9;
    pointer-events: none;
}

.timeslot-option.timeslot-taken {
    cursor: not-allowed;
}

.timeslot-option.timeslot-taken .timeslot-label {
    opacity: 0.55;
    background: var(--bg-light, #f3f4f6);
}

.timeslot-option.timeslot-taken .timeslot-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeslot-option.timeslot-taken:hover .timeslot-label {
    border-color: var(--border);
    background: var(--bg-light, #f3f4f6);
}

.referral-input-group {
    display: flex;
    gap: 8px;
}

.referral-input-group input {
    flex: 1;
    text-transform: uppercase;
}

.btn-validate {
    padding: 14px 20px;
    background: var(--blue-50);
    border: 1.5px solid var(--blue-200);
    border-radius: var(--radius-md);
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-validate:hover {
    background: var(--blue-100);
    border-color: var(--blue-400);
}

.price-summary {
    background: var(--blue-50);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--blue-100);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.discount-row {
    color: #10b981;
    font-weight: 500;
}

.total-row {
    border-top: 1px solid var(--blue-200);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-text, .btn-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.booking-success {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.booking-success h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.booking-success p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
}


.referral-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.referral-progress-line {
    position: absolute;
    top: 50%;
    left: -24px;
    right: -24px;
    height: 0;
    transform: translateY(-50%);
    z-index: 0;
    border-top: 3px dashed #a1a1aa;
    border-radius: 2px;
    overflow: visible;
}

.referral-progress-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, transparent 3.5%, rgba(147, 197, 253, 0.95) 3.5%, rgba(147, 197, 253, 0.95) 5%, transparent 5%, transparent 100%);
    background-size: 2000% 100%;
    animation: referralDashStep 20s steps(24) infinite;
    pointer-events: none;
}

@keyframes referralDashStep {
    0% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 0% 0; }
}

.referral-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    z-index: 1;
}

.referral-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.referral-step {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.referral-connector {
    display: none;
}

.referral-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.referral-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.referral-card ul {
    list-style: none;
    margin-top: 8px;
}

.referral-card ul li {
    padding: 4px 0;
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    padding-left: 16px;
}

.referral-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue-500);
    font-weight: 700;
}

.referral-example {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--blue-700);
    border: 1px dashed var(--blue-300);
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--blue-50);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    border-radius: var(--radius-sm);
    color: #fff;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover { color: var(--blue-600); }

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}


.footer {
    background: linear-gradient(160deg, #0a0e27, #0d1b3e);
    color: #fff;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-cycle {
    width: 56px;
    height: 56px;
    position: relative;
    flex-shrink: 0;
}

.footer-cycle-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 1.5s ease;
}

.footer-cycle-a {
    animation: footerFadeA 6s ease-in-out infinite;
}

.footer-cycle-b {
    animation: footerFadeB 6s ease-in-out infinite;
}

@keyframes footerFadeA {
    0%, 40% { opacity: 1; }
    50%, 90% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes footerFadeB {
    0%, 40% { opacity: 0; }
    50%, 90% { opacity: 1; }
    100% { opacity: 0; }
}

.footer-brand .logo-khente,
.footer-brand .logo-homie,
.footer-brand .logo-records {
    display: inline;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-brand .logo-khente { font-weight: 900; color: var(--white); }
.footer-brand .logo-homie { font-weight: 800; color: var(--blue-400); }
.footer-brand .logo-records { font-weight: 800; color: var(--white); }

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--blue-400); }

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--blue-400); }

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.footer-since {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    margin-top: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


body.intro-active {
    overflow: hidden;
}

.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.video-intro video {
    max-width: 280px;
    max-height: 200px;
    min-width: 200px;
    min-height: 112px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.video-intro.fade-out {
    opacity: 0;
    pointer-events: none;
}


.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

@keyframes particleRise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-100vh) translateX(var(--drift)) scale(0.3);
        opacity: 0;
    }
}


.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 60%);
    z-index: 0;
    animation: heroGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}


.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(15px);
    transition: opacity 0.9s ease, filter 0.9s ease, transform 0.9s ease;
    will-change: opacity, filter, transform;
}

.reveal-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}


.stagger-1 { transition-delay: 0ms !important; }
.stagger-2 { transition-delay: 120ms !important; }
.stagger-3 { transition-delay: 240ms !important; }
.stagger-4 { transition-delay: 360ms !important; }
.stagger-5 { transition-delay: 480ms !important; }
.stagger-6 { transition-delay: 600ms !important; }


.reveal .section-divider,
.reveal-blur .section-divider {
    width: 0;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.reveal.visible .section-divider,
.reveal-blur.visible .section-divider {
    width: 60px;
}


.hero-cta-btn,
.btn-cta {
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::before,
.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.hero-cta-btn:hover::before,
.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}


.page-enter > *:not(.navbar):not(.footer) {
    animation: pageEnterUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageEnterUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}


.footer-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


.faq-item-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-animate.visible {
    opacity: 1;
    transform: translateY(0);
}


.about-hero .hero-title {
    opacity: 0;
    transform: translateY(30px);
}

.about-hero .about-hero-sub {
    opacity: 0;
    transform: translateY(20px);
}

.about-hero .about-hero-year {
    opacity: 0;
    transform: translateY(15px);
}

body.hero-animate .about-hero .hero-title {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

body.hero-animate .about-hero .about-hero-sub {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

body.hero-animate .about-hero .about-hero-year {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}


@media (prefers-reduced-motion: reduce) {
    .video-intro { display: none !important; }
    .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur, .footer-reveal, .faq-item-animate {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
    .hero-title, .hero-subtitle, .hero-cta-btn, .hero-scroll-indicator,
    .about-hero .hero-title, .about-hero .about-hero-sub, .about-hero .about-hero-year {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    .hero-particle, .hero-glow { display: none !important; }
    .page-enter > * { animation: none !important; opacity: 1 !important; transform: none !important; }
}


@media (max-width: 1024px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }


    .room-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(13, 27, 62, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        color: rgba(255,255,255,0.8) !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }

    .pricing-top-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pricing-card-featured {
        flex-direction: column;
        padding: 28px 24px;
        text-align: center;
        gap: 20px;
    }

    .featured-right {
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 8px;
    }

    .stat-number {
        font-size: 22px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .calendar-dropdown {
        width: 280px;
    }

    .hero-title-line {
        letter-spacing: 2px;
    }

    .referral-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .referral-progress-line {
        display: none;
    }
}
