@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #c5a880; /* Elegant light bronze-gold */
    --primary-dark: #a68962;
    --primary-light: #f7f4ef;
    --dark-neutral: #1a1715; /* Deep warm charcoal */
    --dark-muted: #2d2824;
    --light-neutral: #faf8f5; /* Warm soft cream background */
    --white: #ffffff;
    --text-main: #332d29;
    --text-muted: #7d736a;
    --accent-red: #c2410c;
    --accent-green: #15803d;
    --shadow-sm: 0 2px 4px rgba(26, 23, 21, 0.05);
    --shadow-md: 0 10px 25px rgba(26, 23, 21, 0.08);
    --shadow-lg: 0 20px 40px rgba(26, 23, 21, 0.12);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--light-neutral);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--dark-neutral);
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

/* Header */
.site-header {
    background-color: rgba(26, 23, 21, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    transition: var(--transition);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark-neutral);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--dark-neutral);
}

.btn-dark {
    background-color: var(--dark-neutral);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #000;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--dark-neutral);
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 23, 21, 0.95) 40%, rgba(26, 23, 21, 0.4) 100%);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    animation: zoomHero 20s infinite alternate;
}

@keyframes zoomHero {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 500px;
}

/* Glassmorphism Booking Widget */
.booking-widget-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.booking-widget-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.widget-form-group {
    margin-bottom: 20px;
}

.widget-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-input-wrapper {
    position: relative;
}

.widget-input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1rem;
    pointer-events: none;
}

.widget-control {
    width: 100%;
    background-color: rgba(26, 23, 21, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px 12px 42px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.widget-control:focus {
    border-color: var(--primary);
    background-color: rgba(26, 23, 21, 0.8);
}

.widget-control option {
    background-color: var(--dark-neutral);
    color: var(--white);
}

.widget-submit-btn {
    width: 100%;
    margin-top: 12px;
}

/* Alert inside form */
.form-alert {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: none;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.form-alert-error {
    background-color: #fdf2f2 !important;
    border: 1px solid #f8b4b4 !important;
    color: #9b1c1c !important;
}

.form-alert-error i {
    color: #9b1c1c !important;
    font-size: 1.05rem;
}

.form-alert-success {
    background-color: #f4faf7 !important;
    border: 1px solid #c3edd9 !important;
    color: #0c5132 !important;
}

.form-alert-success i {
    color: #0c5132 !important;
    font-size: 1.05rem;
}

/* Advantages / Introduction Section */
.section-padding {
    padding: 96px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.advantage-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(26, 23, 21, 0.03);
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.advantage-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon-box {
    background-color: var(--primary);
    color: var(--dark-neutral);
}

.advantage-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--dark-neutral);
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Rooms Grid & Gallery styling */
.bg-light {
    background-color: var(--primary-light);
}

.rooms-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.room-showcase-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 23, 21, 0.04);
    transition: var(--transition);
}

.room-showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.room-showcase-item:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.room-showcase-item:nth-child(even) .room-gallery-panel {
    order: 2;
}

/* Room Slider/Gallery Panel */
.room-gallery-panel {
    position: relative;
    height: 400px;
    background-color: #e5e5e5;
    overflow: hidden;
}

.room-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-slide.active {
    opacity: 1;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(26, 23, 21, 0.7);
    border-radius: 50%;
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 10;
    transition: var(--transition);
}

.slide-btn:hover {
    background-color: var(--primary);
    color: var(--dark-neutral);
}

.slide-btn-prev { left: 16px; }
.slide-btn-next { right: 16px; }

/* Room Info Detail Panel */
.room-info-panel {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-badge {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.room-info-panel h3 {
    font-size: 2rem;
    color: var(--dark-neutral);
    margin-bottom: 16px;
}

.room-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.room-pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    border-top: 1px solid rgba(26, 23, 21, 0.08);
    border-bottom: 1px solid rgba(26, 23, 21, 0.08);
    padding: 16px 0;
}

.pricing-box {
    text-align: center;
}

.pricing-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.pricing-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-neutral);
}

.pricing-value span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.room-actions {
    display: flex;
    gap: 16px;
}

/* Live Booking Drawer Modal (Full page overlay) */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 23, 21, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-body {
    background-color: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 580px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 23, 21, 0.05);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
}

.booking-modal.active .booking-modal-body {
    transform: scale(1);
}

.booking-modal-header {
    background-color: var(--dark-neutral);
    color: var(--white);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h3 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal-btn:hover {
    color: var(--primary);
}

.booking-modal-form {
    padding: 32px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-form-full {
    grid-column: span 2;
}

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

.modal-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-neutral);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-input {
    width: 100%;
    border: 1.5px solid rgba(26, 23, 21, 0.1);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.95rem;
    background-color: var(--white);
    transition: var(--transition);
    color: var(--text-main);
}

.modal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.modal-input-icon {
    position: relative;
}

.modal-input-icon i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.booking-modal-form .btn-submit {
    width: 100%;
    padding: 14px;
    margin-top: 16px;
    font-size: 1rem;
}

/* Contact Footer Section */
.footer-contact {
    background-color: var(--dark-neutral);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-info-col h3, .footer-links-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 24px;
    font-size: 1.4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-info-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 24px;
    font-size: 1.4rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

.contact-item h5 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* Floating Actions Widgets: Hotline and Zalo Quick Connect */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    font-size: 1.4rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn-zalo {
    background-color: #0068ff;
}

.floating-btn-phone {
    background-color: #22c55e;
    animation: pulsePhone 2s infinite;
}

@keyframes pulsePhone {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.floating-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-neutral);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--dark-neutral);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
}

/* Success View page */
.success-hero {
    min-height: 85vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background-color: var(--light-neutral);
}

.success-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 23, 21, 0.04);
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.success-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #dcfce7;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px auto;
}

.success-container h2 {
    font-size: 2.2rem;
    color: var(--dark-neutral);
    margin-bottom: 12px;
}

.success-message {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.booking-summary-box {
    background-color: var(--light-neutral);
    border-radius: 6px;
    padding: 24px;
    border: 1px dashed rgba(197, 168, 128, 0.4);
    text-align: left;
    margin-bottom: 36px;
}

.booking-summary-box h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--dark-neutral);
    border-bottom: 1px solid rgba(26, 23, 21, 0.08);
    padding-bottom: 12px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

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

.summary-value {
    color: var(--dark-neutral);
    font-weight: 600;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Global Alert styling for messages */
.global-alert {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 1001;
    background-color: var(--white);
    border-radius: 6px;
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInAlert 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--accent-red);
}

@keyframes slideInAlert {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.global-alert-error {
    border-left-color: var(--accent-red);
}

.global-alert-success {
    border-left-color: var(--accent-green);
}

/* Responsive queries */
@media (max-width: 991px) {
    .hero {
        height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .room-showcase-item, .room-showcase-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .room-showcase-item:nth-child(even) .room-gallery-panel {
        order: 0;
    }
    .room-gallery-panel {
        height: 300px;
    }
    .room-info-panel {
        padding: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 0;
    }
    .nav-menu {
        display: none; /* simple hidden mobile nav menu, user can scroll to book */
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .booking-modal-body {
        max-width: 95%;
    }
    .booking-modal-form {
        padding: 24px;
    }
    .modal-form-grid {
        grid-template-columns: 1fr;
    }
    .modal-form-full {
        grid-column: span 1;
    }
    .success-container {
        padding: 32px 24px;
    }
    .success-actions {
        flex-direction: column;
        gap: 12px;
    }
    .success-actions .btn {
        width: 100%;
    }
}

body, p, span, td, th, input, select, textarea, button {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .logo-text, .section-title {
  font-family: 'Playfair Display', Georgia, serif !important;
}

/* Kendo UI DateTimePicker Custom Implementation */
.k-widget.k-datetimepicker {
    display: block;
    width: 100%;
}

.k-widget.k-datepicker {
    display: inline-block;
    width: 170px;
}

.k-widget.k-datepicker .k-input {
    padding-right: 45px !important;
}

.k-picker-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background-color: #fff;
    transition: var(--transition);
    position: relative;
    width: 100%;
    height: 42px; /* standard input height */
    box-sizing: border-box;
}

.k-picker-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.k-picker-wrap .k-input {
    width: 100%;
    height: 100%;
    border: none !important;
    outline: none !important;
    padding: 10px 85px 10px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-main);
    background: transparent;
    cursor: pointer;
    box-sizing: border-box;
}

.k-picker-wrap .k-select {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    border-left: 1px solid #e5e7eb;
    background-color: #f9fafb;
    pointer-events: auto; /* Enable click capture on icon buttons */
    z-index: 2;
    height: 100%;
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
}

.k-picker-wrap .k-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 100%;
    color: #6b7280;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer;
    transition: var(--transition);
}

.k-picker-wrap .k-link:hover {
    background-color: #f3f4f6;
    color: var(--primary);
}

.k-picker-wrap .k-link-date {
    border-right: 1px solid #e5e7eb;
}

/* Hide default browser indicator completely */
.k-picker-wrap .k-input::-webkit-calendar-picker-indicator {
    display: none !important;
}

/* Custom Kendo UI Date & Time Popups */
.k-calendar-container, .k-time-container {
    font-family: 'Be Vietnam Pro', 'Inter', sans-serif !important;
    animation: fadeInKendo 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInKendo {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
