@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {
  --default-font: "Lato",  system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";
  --heading-font: "Lato",  sans-serif;
  --nav-font: "Lato",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #66FFFF; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, cards, etc. */
  --contrast-color: #ffffff; /* The contrast color is used for text when it's placed on a background that uses the accent color */
}

/* Navmenu Colors - The following color variables are used for the navigation menu */
:root {
  --nav-color: rgba(255, 255, 255, 0.7); /* The default color of the menu links */
  --nav-hover-color: #ffffff; /* The color of the menu links when hovered over */
  --nav-mobile-background-color: #ffffff; /* The background color of the mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* The background color of the dropdown menus */
  --nav-dropdown-color: #212529; /* The text color of the dropdown menu links */
  --nav-dropdown-hover-color: #66FFFF; /* The color of the dropdown menu links when hovered over */
}

/* Smooth scroll behavior - แต่อันนี้ถูกควบคุมและเสริมความนุ่มนวลอย่างสมบูรณ์แบบด้วย JS แล้ว */
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Premium Hero Section Card & Badges (จาก index.php)
--------------------------------------------------------------*/
.hero-content-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, rgba(102, 255, 255, 0.15), rgba(102, 255, 255, 0.02));
    border: 1px solid rgba(102, 255, 255, 0.3);
    color: #66FFFF;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    margin-top: 15px;
}

.btn-main-action {
    background: #66FFFF;
    color: #000000 !important;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(102, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-main-action:hover {
    background: #00FFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 255, 255, 0.5);
}

.btn-secondary-action {
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 14px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-secondary-action:hover {
    color: #66FFFF !important;
    transform: translateX(4px);
}

.hero-image-wrapper {
    position: relative;
    padding: 10px;
}

.image-bg-effect {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(102,255,255,0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-showcase-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.stat-badge-floating {
    position: absolute;
    bottom: -20px;
    left: 40px;
    background: rgba(10, 25, 25, 0.85);
    border: 1px solid rgba(102, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(102, 255, 255, 0.2);
    color: #66FFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.stat-text strong {
    color: #FFFFFF;
    font-size: 14px;
}

.stat-text small {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}

/*--------------------------------------------------------------
# Fleet Showroom Elements (จาก index.php)
--------------------------------------------------------------*/
.btn-book-now {
    width: 100%;
    background: transparent;
    border: 1px solid #66FFFF;
    color: #66FFFF;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: #66FFFF;
    color: #000000;
    box-shadow: 0 5px 15px rgba(102, 255, 255, 0.3);
}

/*--------------------------------------------------------------
# Car Detail Showcase Modal Styling (จาก index.php)
--------------------------------------------------------------*/
.car-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 8, 8, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.car-modal-overlay.active { display: flex; }

.car-modal-box {
    background: #0d1111;
    border: 1px solid rgba(102, 255, 255, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 980px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(102, 255, 255, 0.03);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow: hidden;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.car-modal-close {
    position: absolute;
    top: 18px; right: 22px;
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 38px; height: 38px;
    border-radius: 50%;
    color: rgba(255,255,255,0.6); 
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    transition: all 0.25s ease;
}

.car-modal-close:hover { 
    color: #000000; 
    background: #66FFFF; 
    border-color: #66FFFF;
    box-shadow: 0 0 15px rgba(102, 255, 255, 0.4);
}

.car-modal-body {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
}

@media(max-width: 992px) {
    .car-modal-body { grid-template-columns: 1fr; }
}

/* พื้นที่ฝั่งซ้าย - ระเบียงภาพรถยนต์ */
.car-modal-images {
    background: #060808;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(102, 255, 255, 0.08);
}

/* ⚡ ตัวปุ่มกดดูรูปภาพยาวขนาดเต็มตัวรถ */
.car-gallery-trigger-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    outline: none;
}

.car-main-img-container {
    width: 100%;
    overflow: hidden;
    background: #090c0c;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.car-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* เลเยอร์ Overlay แสดงปุ่มแว่นขยายตอนเอาเมาส์มาชี้ */
.gallery-action-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-action-badge {
    background: rgba(13, 21, 21, 0.85);
    border: 1px solid rgba(102, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 30px;
    color: #66FFFF;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(5px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* เอฟเฟกต์การชี้เมาส์ (Hover Effect บนภาพ) */
.car-gallery-trigger-btn:hover .gallery-action-overlay {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.car-gallery-trigger-btn:hover .car-main-img {
    transform: scale(1.05);
}

.car-gallery-trigger-btn:hover .gallery-action-badge {
    transform: translateY(0);
    background: #66FFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(102, 255, 255, 0.5);
    border-color: #66FFFF;
}

/* เอฟเฟกต์ Zoom ขนาดภาพเมื่อกดปุ่มค้างหรือสั่งขยาย */
.car-main-img-container.zoomed .car-main-img {
    transform: scale(1.3);
}

/* กล่องภาพย่อยด้านล่าง */
.car-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.thumb-img {
    width: 75px; height: 52px;
    object-fit: cover; border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    cursor: pointer;
    opacity: 0.5; transition: all 0.25s ease;
}

.thumb-img:hover, .thumb-img.active { 
    opacity: 1; 
    border-color: #66FFFF;
    box-shadow: 0 0 10px rgba(102, 255, 255, 0.2);
}

/* พื้นที่ฝั่งขวา - ข้อมูลรถยนต์ */
.car-modal-info {
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.01);
}

@media(max-width: 992px) {
    .car-modal-images { border-right: none; border-bottom: 1px solid rgba(102, 255, 255, 0.08); }
    .car-modal-info { padding: 30px; gap: 30px; }
}

.car-title { font-size: 26px; font-weight: 800; color: #ffffff; margin-bottom: 5px; letter-spacing: -0.5px; }
.car-tagline { font-size: 13.5px; color: #94a3b8; margin-bottom: 22px; }

.car-price-box {
    background: rgba(102, 255, 255, 0.04);
    border: 1px dashed rgba(102, 255, 255, 0.25);
    border-radius: 14px;
    padding: 14px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label { font-size: 12.5px; color: #94a3b8; font-weight: 500; }
.price-value { font-size: 26px; font-weight: 800; color: #66FFFF; text-shadow: 0 0 15px rgba(102, 255, 255, 0.1); }
.price-unit { font-size: 13.5px; color: rgba(255,255,255,0.4); }

.car-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-item i { color: #66FFFF; font-size: 16px; }

.car-features-section h4 { 
    font-size: 13px; font-weight: 800; color: #ffffff; 
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}

.features-list { list-style: none; padding: 0; margin: 0 0 30px 0; }
.features-list li { font-size: 13px; color: #94a3b8; margin-bottom: 8px; display: flex; align-items: center; gap: 8px;}
.features-list li i { color: #66FFFF; font-size: 14px; }

/* ปุ่มจอง */
.btn-proceed-booking {
    background: #66FFFF;
    color: #000000;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(102, 255, 255, 0.15);
}

.btn-proceed-booking:hover {
    background: #00FFFF;
    box-shadow: 0 6px 25px rgba(102, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-proceed-booking active {
    transform: translateY(0);
}

/*--------------------------------------------------------------
# Luxury Booking Form Modal Style (Updated Structural Layout)
--------------------------------------------------------------*/
.booking-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 7, 7, 0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-overlay.active { display: flex; }

.booking-modal-box {
    background: #0b0e0e;
    border: 1px solid rgba(102, 255, 255, 0.18);
    border-radius: 28px;
    width: 100%;
    max-width: 940px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.85), 0 0 50px rgba(102, 255, 255, 0.02);
    animation: modalSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow: hidden;
}

@keyframes modalSlideUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.booking-modal-close {
    position: absolute;
    top: 22px; right: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 36px; height: 36px;
    border-radius: 50%;
    color: rgba(255,255,255,0.5); 
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 12;
    transition: all 0.25s ease;
}

.booking-modal-close:hover { 
    color: #000000; 
    background: #66FFFF;
    border-color: #66FFFF;
    box-shadow: 0 0 15px rgba(102, 255, 255, 0.4);
}

.booking-modal-header {
    background: linear-gradient(135deg, #101515, #060909);
    padding: 25px 40px;
    border-bottom: 1px solid rgba(102, 255, 255, 0.08);
}

.header-main-content h3 { color: #ffffff; font-size: 21px; font-weight: 800; margin: 0 0 5px 0; display: flex; align-items: center; gap: 10px; letter-spacing: -0.3px;}
.header-main-content h3 i { color: #66FFFF; text-shadow: 0 0 10px rgba(102, 255, 255, 0.2); }
.header-main-content p { color: #94a3b8; font-size: 13px; margin: 0; }

.booking-modal-body {
    display: grid;
    grid-template-columns: 310px 1fr;
    height: 560px;
}

/* ด้านซ้าย - สรุปแพ็กเกจและการสลับภาษาแบบ Capsule */
.booking-summary-side {
    background: #050707;
    padding: 25px 25px 35px 25px;
    border-right: 1px solid rgba(102, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 🌐 กล่องกดสลับภาษาแบบ Capsule Badge ปรับตำแหน่งให้เด่นชัดที่ฝั่งซ้าย */
.modal-lang-switcher {
    background: rgba(20, 27, 27, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px;
    border-radius: 30px;
    display: flex;
    gap: 2px;
    align-self: center;
    width: fit-content;
}

.modal-lang-switcher .lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-lang-switcher .lang-btn:hover { color: #ffffff; }
.modal-lang-switcher .lang-btn.active {
    background: #66FFFF;
    color: #000000;
    box-shadow: 0 2px 10px rgba(102, 255, 255, 0.25);
}

.summary-card { text-align: center; }
.summary-card img {
    width: 100%; border-radius: 16px; margin-bottom: 15px; 
    border: 1px solid rgba(255,255,255,0.04); background: #0a0e0e;
    aspect-ratio: 16 / 10; object-fit: cover;
}
.summary-card h4 { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.summary-price { font-size: 24px; font-weight: 800; color: #66FFFF; margin-bottom: 20px; text-shadow: 0 0 15px rgba(102,255,255,0.1); }
.summary-price small { font-size: 13px; color: #64748b; font-weight: 400; margin-left: 3px;}

.summary-perks {
    display: flex; flex-direction: column; gap: 12px; text-align: left; 
    background: rgba(102, 255, 255, 0.02); padding: 18px; border-radius: 14px;
    border: 1px solid rgba(102, 255, 255, 0.04);
}
.perk-item { font-size: 12.5px; color: #cbd5e1; display: flex; align-items: center; gap: 10px;}
.perk-item i { color: #66FFFF; font-size: 14px; }

/* ด้านขวา - สกรอลล์คอนเทนต์สำหรับฟอร์ม */
.booking-form-side {
    padding: 30px 40px;
    overflow-y: auto;
}

/* ตกแต่งสกรอลบาร์ */
.booking-form-side::-webkit-scrollbar { width: 6px; }
.booking-form-side::-webkit-scrollbar-track { background: transparent; }
.booking-form-side::-webkit-scrollbar-thumb { background: rgba(102, 255, 255, 0.15); border-radius: 10px; }
.booking-form-side::-webkit-scrollbar-thumb:hover { background: #66FFFF; }

.form-section-title {
    font-size: 12px; font-weight: 800; color: #66FFFF;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 20px; margin-top: 5px;
    display: flex; align-items: center; gap: 8px;
}
.form-section-title::after {
    content: ''; flex: 1; height: 1px; background: rgba(102, 255, 255, 0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group-full { width: 100%; margin-bottom: 5px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 12.5px; color: #cbd5e1; font-weight: 600; display: flex; align-items: center; gap: 8px;}
.form-group label i { color: #66FFFF; font-size: 14px; }

.form-group input, .form-group select, .form-group textarea {
    background: #121717;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 11px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(85%) sepia(50%) saturate(1000%) hue-rotate(130deg);
    cursor: pointer;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; 
    border-color: #66FFFF; 
    background: #151d1d; 
    box-shadow: 0 0 15px rgba(102, 255, 255, 0.12);
}

.btn-confirm-booking {
    width: 100%;
    background: #66FFFF; color: #000000;
    border: none; padding: 15px; border-radius: 12px;
    font-weight: 800; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 15px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(102, 255, 255, 0.15);
}

.btn-confirm-booking:hover {
    background: #00FFFF; 
    box-shadow: 0 6px 28px rgba(102, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* 🔄 ส่วนควบคุมการทำงานระบบเปลี่ยนภาษาซ่อนข้อความ */
.booking-modal-box[data-lang="th"] .en-text { display: none !important; }
.booking-modal-box[data-lang="en"] .th-text { display: none !important; }

/* Responsive สำหรับอุปกรณ์หน้าจอเล็ก */
@media(max-width: 900px) {
    .booking-modal-body { grid-template-columns: 1fr; height: 500px; }
    .booking-summary-side { border-right: none; border-bottom: 1px solid rgba(102, 255, 255, 0.06); padding-bottom: 20px; }
    .summary-card img, .summary-card .summary-perks { display: none; }
    .summary-price { margin-bottom: 0; }
    .booking-form-side { padding: 25px 30px; }
}

@media(max-width: 576px) {
    .booking-modal-body { height: 440px; }
    .booking-form-side { padding: 20px 20px; }
}

/*--------------------------------------------------------------
# Security Authentication Gate Alert (จาก index.php)
--------------------------------------------------------------*/
.auth-gate-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-gate-overlay.active { display: flex; }

.auth-gate-box {
    background: #090c0c;
    border: 2px solid #66FFFF;
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 50px rgba(102, 255, 255, 0.2);
    animation: authGateBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes authGateBounce {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.auth-gate-icon-pulse {
    width: 70px; height: 70px;
    background: rgba(102, 255, 255, 0.1);
    border: 2px solid #66FFFF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #66FFFF;
    margin: 0 auto 20px auto;
    animation: luxuryPulse 2s infinite;
}

@keyframes luxuryPulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(102, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 255, 255, 0); }
}

.auth-gate-box h3 { color: #ffffff; font-size: 22px; font-weight: 800; letter-spacing: 2px; margin-bottom: 8px; }
.auth-gate-subtitle { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 25px; }

.auth-gate-countdown-wrapper {
    background: rgba(255,255,255,0.02); border-radius: 12px; padding: 15px; margin-bottom: 25px;
}

.auth-gate-progress-track {
    background: rgba(255,255,255,0.1); height: 4px; border-radius: 10px; overflow: hidden; margin-bottom: 10px;
}

.auth-gate-progress-bar {
    background: #66FFFF; height: 100%; width: 100%; transition: width 1s linear;
}

.auth-gate-timer-text { font-size: 12px; color: rgba(255,255,255,0.4); }
.auth-gate-timer-text span { color: #66FFFF; font-weight: 700; }

.btn-auth-gate-direct {
    display: block; background: transparent; border: 1px solid #66FFFF; color: #66FFFF;
    padding: 12px; border-radius: 10px; font-weight: 600; text-decoration: none; font-size: 14px;
    transition: all 0.2s;
}

.btn-auth-gate-direct:hover { background: #66FFFF; color: #000000; box-shadow: 0 5px 15px rgba(102,255,255,0.3); }

/*--------------------------------------------------------------
# Base Elements (Yummy Template ดั้งเดิม)
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #a3ffff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: rgba(27, 27, 30, 0.85);
  background: linear-gradient(180deg, rgba(10, 12, 12, 0.95) 0%, rgba(20, 24, 24, 0.85) 100%);
  border-bottom: 1px solid rgba(102, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.5s;
  padding: 15px 0;
}

.header .logo img {
  max-height: 45px;
  margin-right: 6px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #000000;
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 24px;
  margin: 0 0 0 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(102, 255, 255, 0.3);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #000000;
  background: #00FFFF;
  box-shadow: 0 6px 20px rgba(102, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul { margin: 0; padding: 0; display: flex; align-items: center; list-style: none; }
  .navmenu li { position: relative; }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 16px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.5px;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus { color: var(--nav-hover-color); }
  .navmenu .active::before {
    content: '';
    position: absolute;
    bottom: 8px; left: 16px; right: 16px;
    height: 2px; background-color: var(--accent-color);
    box-shadow: 0 0 8px #66FFFF;
  }
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  line-height: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: color 0.3s;
}

/*--------------------------------------------------------------
# Global Header Styling & Premium Dropdown (จาก index.php)
--------------------------------------------------------------*/
.user-profile-dropdown {
    position: relative;
    cursor: pointer;
    z-index: 1000;
    padding-bottom: 12px; /* เพิ่มพื้นที่ด้านล่างปุ่มเล็กน้อยเพื่อเป็นพื้นที่เชื่อมต่อ */
    margin-bottom: -12px; /* ดึง margin กลับเพื่อไม่ให้กระทบการจัดวางของ Header */
}

.profile-trigger {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(102, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-trigger:hover {
    background: rgba(102, 255, 255, 0.15);
    border-color: #66FFFF;
    box-shadow: 0 0 15px rgba(102, 255, 255, 0.3);
}

.avatar-wrapper {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #005555, #002222);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #66FFFF;
}

.user-meta {
    margin-left: 10px;
    line-height: 1.2;
}

.user-name {
    font-size: 13px;
    display: block;
    letter-spacing: 0.5px;
}

.user-role {
    font-size: 9px;
    color: #66FFFF;
    font-weight: 700;
    display: block;
    letter-spacing: 1px;
}

/* กล่องเมนู Dropdown หลัก (ทำหน้าที่เป็นสะพานล่องหนเชื่อมต่อระหว่างเมาส์กับตัวปุ่มโปรไฟล์) */
.dropdown-luxury-menu {
    position: absolute;
    right: 0;
    top: 100%; /* เปลี่ยนจากพิกัดตายตัวเป็น 100% เพื่อให้เกาะติดกับคอนเทนเนอร์หลัก */
    width: 220px;
    padding-top: 8px; /* สร้างสะพานโปร่งใสเชื่อมระหว่างปุ่มกดกับตัวเมนู เพื่อป้องกันเมาส์หลุด */
    display: none;
    flex-direction: column;
}

/* กล่องเนื้อหาภายในเมนู (ย้ายการตกแต่งสไตล์ หรูหรา พื้นหลัง และแอนิเมชันมาไว้ที่นี่) */
.dropdown-luxury-inner {
    background: rgba(10, 20, 20, 0.96);
    border: 1px solid rgba(102, 255, 255, 0.25);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    animation: luxuryFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ควบคุมการแสดงผลเมื่อเมาส์ชี้ */
.user-profile-dropdown:hover .dropdown-luxury-menu {
    display: flex;
}

@keyframes luxuryFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 800;
    color: #66FFFF;
    letter-spacing: 1.5px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #66FFFF;
    border-radius: 50%;
    box-shadow: 0 0 10px #66FFFF;
}

.divider-luxury {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 255, 255, 0.3), transparent);
    margin: 2px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.icon-box {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #66FFFF;
    font-size: 14px;
    transition: all 0.25s ease;
}

.menu-text {
    margin-left: 12px;
    font-size: 13px;
    color: #CCCCCC;
    font-weight: 500;
    transition: all 0.25s ease;
}

.menu-item:hover {
    background: rgba(102, 255, 255, 0.15);
}

.menu-item:hover .menu-text {
    color: #FFFFFF;
    transform: translateX(3px);
}

.menu-item:hover .icon-box {
    background: #66FFFF;
    color: #000000;
}

/* ดีไซน์พิเศษสไตล์สีแดงนีออนสำหรับปุ่มออกจากระบบ (Logout Item) */
.logout-item .icon-box {
    color: #ff5555;
    background: rgba(255, 85, 85, 0.05);
}

.logout-item .menu-text {
    color: #ffaa55;
}

.logout-item:hover {
    background: rgba(255, 85, 85, 0.15) !important;
}

.logout-item:hover .icon-box {
    background: #ff5555 !important;
    color: #000000 !important;
    box-shadow: 0 0 10px rgba(255, 85, 85, 0.5);
}

.logout-item:hover .menu-text {
    color: #ffffff !important;
}

/* ปรับปรุงโครงสร้างเมื่อรันบนหน้าจอมือถือ (Responsive Mobile Setup) */
@media (max-width: 767px) {
    .user-profile-dropdown {
        margin-left: 10px;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .profile-trigger {
        padding: 4px;
        background: transparent;
        border-color: transparent;
    }
    .profile-trigger:hover {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }
    .profile-trigger .bi-chevron-down {
        display: none; /* ซ่อนลูกศรลงเพื่อลดความแออัดของพื้นที่ */
    }
    .dropdown-luxury-menu {
        right: -10px; /* ขยับมาร์จินเพื่อหลบไม่ให้กล่องเด้งหลุดขอบจอมือถือ */
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 95vh;
  position: relative;
  padding: 140px 0 60px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #060808 0%, #121818 50%, #0b0f0f 100%);
  overflow: hidden;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--accent-color);
  text-shadow: 0 0 20px rgba(102, 255, 255, 0.4);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 80px; /* ขยับระยะเป้าหมายเวลา Scroll เพื่อหลบ Header เผื่อไว้ */
  overflow: hidden;
}

.light-background {
  background-color: #f8f9fa;
}

.dark-background {
  background-color: #0e1111;
  color: #ffffff;
}

/* Section Title */
.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: rgba(102, 255, 255, 0.1);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .book-a-table {
  background: #0e1111;
  border: 1px solid rgba(102, 255, 255, 0.2);
  padding: 30px;
  text-align: center;
}

.about .book-a-table h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about .book-a-table p {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about ul i {
  color: #00b3b3;
  font-size: 20px;
  padding-right: 10px;
  line-height: 1;
}

.about .pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#66FFFF 50%, rgba(102, 255, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  animation: animate-pulsate-btn 2s infinite;
  opacity: 1; border-radius: 50%;
  top: -13px; left: -13px;
  background: rgba(102, 255, 255, 0.3);
}

.about .pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #000000;
  z-index: 100;
  transition: all 400s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@keyframes animate-pulsate-btn {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1); opacity: 0; }
}

/*--------------------------------------------------------------
# Why Us Section (Premium Re-design)
--------------------------------------------------------------*/
.why-us {
  position: relative;
  overflow: hidden;
}

/* ส่วนของกล่องแนะนำหลักทางซ้าย */
.why-us .why-box {
  padding: 40px 35px;
  background: #0e1111;
  color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(102, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us .why-box h3 {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.why-us .why-box h3 .brand-highlight {
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(102, 255, 255, 0.4);
}

.why-us .why-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.why-us .why-box .more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--accent-color);
  padding: 10px 28px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 10px rgba(102, 255, 255, 0.1);
}

.why-us .why-box .more-btn:hover {
  background: var(--accent-color);
  color: #000000;
  box-shadow: 0 0 20px rgba(102, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* โครงสร้าง Premium Luxury Cards ด้านขวา */
.why-us .premium-card {
  position: relative;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ส่วนครอบไอคอน */
.why-us .premium-card .card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(102, 255, 255, 0.1);
  border: 1px solid rgba(0, 179, 179, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.why-us .premium-card .card-icon-wrapper i {
  color: #00b3b3;
  font-size: 28px;
  transition: all 0.4s ease;
}

.why-us .premium-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 15px 0;
  transition: all 0.4s ease;
}

.why-us .premium-card p {
  font-size: 14.5px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  transition: all 0.4s ease;
}

/* เอฟเฟกต์เรืองแสงซ่อนอยู่ด้านหลังการ์ด */
.why-us .premium-card .card-blur-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(102, 255, 255, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

/* ⚡ HOVER EFFECTS: แปลงร่างการ์ดเมื่อเมาส์ชี้ เป็นแนว Dark Luxury */
.why-us .premium-card:hover {
  transform: translateY(-8px);
  background: #0e1111; /* เปลี่ยนเป็นสีเข้มสุดหรู */
  border-color: rgba(102, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 212, 212, 0.15);
}

.why-us .premium-card:hover .card-icon-wrapper {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px rgba(102, 255, 255, 0.5);
}

.why-us .premium-card:hover .card-icon-wrapper i {
  color: #000000;
}

.why-us .premium-card:hover h4 {
  color: #ffffff;
}

.why-us .premium-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.why-us .premium-card:hover .card-blur-bg {
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .event-item {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  padding: 30px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.events .event-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.events .event-item h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: 26px;
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
}

.events .event-item .price {
  color: #66FFFF;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  border-bottom: 2px solid #66FFFF;
  padding-bottom: 5px;
}

.events .event-item .description {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d6;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 24px;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Menu Section (Hyper-Premium Fleet Cards)
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
  margin-bottom: 45px;
}

.menu .nav-link {
  border: 0;
  padding: 12px 30px;
  color: #6c757d;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu .nav-link h4 {
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  color: #111111;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu .nav-link.active h4 {
  color: #000000;
}

.menu .nav-link.active::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  box-shadow: 0 0 12px rgba(102, 255, 255, 0.8);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* โครงสร้างตัว Luxury Card รายคัน */
.menu .fleet-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* กล่องครอบรูปภาพรถยนต์ */
.menu .fleet-img-box {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  aspect-ratio: 16 / 10.5;
}

.menu .fleet-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ป้าย Badge บนรูปภาพ */
.menu .fleet-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0e1111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.menu .fleet-badge.premium {
  background: linear-gradient(135deg, #00b3b3, #008080);
}

.menu .fleet-badge.vip {
  background: linear-gradient(135deg, #0a1414, #1a2e2e);
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 0 10px rgba(102, 255, 255, 0.3);
}

/* กล่องข้อมูลภายในการ์ด */
.menu .fleet-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu .fleet-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

/* ระบบแถบ Badges สเปกรถย่อย */
.menu .fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.menu .fleet-specs span {
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.menu .fleet-specs span i {
  color: #00b3b3;
  font-size: 13px;
}

/* ส่วนท้ายการ์ด (ราคา + ปุ่ม) */
.menu .fleet-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* 💎 การจัดการโครงสร้างราคาเริ่มต้น (Premium Typography) */
.menu .fleet-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.1;
}

.menu .price-prefix {
  font-size: 0.75rem;
  color: #888888;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.menu .price-main-wrapper {
  display: flex;
  align-items: baseline;
}

.menu .fleet-price .currency {
  font-size: 15px;
  font-weight: 700;
  color: #008080;
  margin-right: 2px;
}

.menu .fleet-price .amount {
  font-size: 24px;
  font-weight: 800;
  color: #008080;
  letter-spacing: -0.5px;
}

.menu .fleet-price .per-day {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
  margin-left: 4px;
}

/* ปุ่มกดจองล้ำสมัยสไตล์ Sport Luxury */
.menu .btn-fleet-action {
  background: #0e1111;
  color: #ffffff;
  border: 1px solid rgba(102, 255, 255, 0.1);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu .btn-fleet-action i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* ⚡ EFFECTS ตอน HOVER ที่ดึงดูดสายตา */
.menu .fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(102, 255, 255, 0.5);
}

.menu .fleet-card:hover .fleet-img-box img {
  transform: scale(1.06);
}

.menu .btn-fleet-action:hover {
  background: var(--accent-color);
  color: #000000;
  box-shadow: 0 0 12px rgba(102, 255, 255, 0.5);
  border-color: var(--accent-color);
}

.menu .btn-fleet-action:hover i {
  transform: translateX(3px);
}

/* ไฮไลท์สำหรับคันที่เป็นเรือธงระดับสูง (Alphard) */
.menu .featured-vip {
  border: 1px solid rgba(102, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(102, 255, 255, 0.03);
}

.menu .featured-vip::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent-color);
  color: #000000;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 30px;
  transform: rotate(45deg);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
}

/* Responsive รองรับทุกหน้าจอ */
@media (max-width: 768px) {
  .menu .fleet-content {
    padding: 20px;
  }
  .menu .fleet-content h3 {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .menu .fleet-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .menu .btn-fleet-action {
    width: 100%;
    justify-content: center;
    padding: 11px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  width: 56px;
  height: 56px;
  font-size: 24px;
  color: #ffffff;
  background: #00b3b3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: #7d7d82;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #212529;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
  padding: 40px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .credits {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.footer .credits a {
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(102, 255, 255, 0.4);
}

.scroll-top i {
  font-size: 24px;
  color: #000000;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #00FFFF;
  color: #000000;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* ==============================================================
# Premium Custom Styling for SweetAlert2 (COU Thailand Cyber Neon UI)
# Theme Color: Sci-Fi Neon Blue (#66FFFF)
============================================================== */

/* ปรับฟอนต์และโครงสร้างกล่องข้อความภาพรวม (เพิ่มเงาเรืองแสงรอบกล่อง) */
.premium-swal-popup {
    font-family: 'Prompt', 'Kanit', sans-serif !important;
    background: #0d1117 !important; /* สีดำอมน้ำเงินลึก เพื่อขับสีฟ้าให้เด่นชัด */
    border: 1px solid rgba(102, 255, 255, 0.25) !important; /* เส้นขอบสีฟ้าจางๆ */
    border-radius: 16px !important;
    padding: 35px 24px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 
                0 0 25px rgba(102, 255, 255, 0.05),
                inset 0 0 15px rgba(102, 255, 255, 0.02) !important;
}

/* หัวข้อภาษาไทย-อังกฤษ (สีฟ้าพรีเมียมพร้อมเงาเรืองแสงจางๆ) */
.premium-swal-title {
    color: #66FFFF !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px;
    text-shadow: 0 0 10px rgba(102, 255, 255, 0.3);
}

/* ส่วนของเนื้อหาภายใน */
.premium-swal-body {
    text-align: left;
    color: #f0f5f5 !important; /* ขยับสีขาวธรรมดาใหอมฟ้าเล็กน้อยให้กลืนกับธีม */
    margin-top: 12px;
}

/* คำอธิบายสั้นด้านบนกล่อง */
.premium-swal-desc {
    text-align: center !important;
    font-size: 14px !important;
    color: #92a4a4 !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
}

/* กล่องสรุปรายละเอียด (เน้นแนวทาง Glassmorphism อมฟ้าอ่อนโยน) */
.premium-receipt-box {
    background: rgba(102, 255, 255, 0.02) !important;
    border: 1px solid rgba(102, 255, 255, 0.12) !important;
    padding: 20px !important;
    border-radius: 12px !important;
    backdrop-filter: blur(4px);
}

/* แถวข้อมูลแต่ละบรรทัด */
.receipt-row {
    font-size: 14px !important;
    margin-bottom: 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    line-height: 1.6 !important;
}

.receipt-row:last-of-type {
    margin-bottom: 0 !important;
}

.receipt-row strong {
    color: #ffffff !important;
    font-weight: 500 !important;
    min-width: 100px;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}

.receipt-row span {
    text-align: right !important;
    color: #e1e9e9 !important;
}

/* ข้อความตัวเชื่อมเส้นทาง "ไปยัง / To" */
.route-via {
    color: #516969 !important;
    font-size: 12px !important;
    display: block !important;
    margin-right: 6px !important;
    font-weight: 500 !important;
}

/* ไฮไลท์ข้อมูลสีฟ้าดิจิทัล (เช่น รหัสการจอง) */
.highlight-gold {
    color: #66FFFF !important;
    font-weight: 600 !important;
    font-family: 'Fira Code', monospace, sans-serif !important; 
    text-shadow: 0 0 6px rgba(102, 255, 255, 0.2);
}

/* เส้นคั่นรูปแบบล้ำสมัย */
.receipt-divider {
    border-top: 1px dashed rgba(102, 255, 255, 0.15) !important;
    margin: 16px 0 !important;
}

/* แถวรวมราคาสุทธิ */
.receipt-row.total strong {
    font-size: 15px !important;
    color: #66FFFF !important;
    text-shadow: 0 0 5px rgba(102, 255, 255, 0.15);
}

/* ตัวเลขราคาชิ้นใหญ่แบบนีออนระดับโปร */
.price-total {
    color: #66FFFF !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    font-variant-numeric: tabular-nums !important;
    text-shadow: 0 0 8px rgba(102, 255, 255, 0.3);
}

.price-total small {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: rgba(102, 255, 255, 0.6) !important;
    margin-left: 3px !important;
}

/* ปรับแต่งสไตล์ปุ่มกดยืนยัน (ปุ่มสีฟ้าสด ตัวหนังสือดำ คมชัดสะดุดตา) */
.premium-swal-btn {
    font-family: 'Prompt', 'Kanit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.8px;
    padding: 12px 38px !important;
    border-radius: 6px !important;
    background-color: #66FFFF !important;
    color: #0d1117 !important; /* ตัดอักษรเป็นสีมืดเพื่อให้อ่านบนพื้นฟ้าได้ชัดเจน */
    border: none !important;
    box-shadow: 0 4px 12px rgba(102, 255, 255, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* เอฟเฟกต์การ Hover ปุ่ม (เรืองแสงสว่างขึ้นเมื่อเมาส์ชี้) */
.premium-swal-btn:hover {
    background-color: #99FFFF !important; 
    box-shadow: 0 0 25px rgba(102, 255, 255, 0.5) !important;
    transform: translateY(-2px);
}

.premium-swal-btn:active {
    transform: translateY(0);
}

.premium-swal-btn:focus {
    box-shadow: 0 0 0 3px rgba(102, 255, 255, 0.4) !important;
}

/* ==============================================================
# Overwrite ทุกพาร์ทของไอคอนเบราว์เซอร์ให้เป็นสีฟ้า #66FFFF ทั้งหมด
============================================================== */
.swal2-icon.swal2-success {
    border-color: #66FFFF !important;
}
.swal2-icon.swal2-success .swal2-success-ring {
    border: 4px solid rgba(102, 255, 255, 0.2) !important;
}
.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #66FFFF !important;
}

/* คอนเทนเนอร์หลักของหน้าโปรไฟล์ไซเบอร์ */
.cyber-profile-container {
    background: #070a0f !important;
    background-image: radial-gradient(circle at 50% 20%, #0d1a29 0%, #070a0f 100%) !important;
    min-height: 100vh;
    padding: 140px 0 60px 0;
    font-family: 'Prompt', 'Kanit', sans-serif;
    color: #e2e8f0;
}

/* Breadcrumb นำทาง */
.cyber-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}
.cyber-breadcrumb .back-link {
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
}
.cyber-breadcrumb .back-link:hover {
    color: #66FFFF;
    text-shadow: 0 0 8px rgba(102, 255, 255, 0.4);
}
.cyber-breadcrumb .separator { color: #475569; }
.cyber-breadcrumb .current { color: #66FFFF; font-weight: 600; }

/* การ์ดสไตล์ล้ำอนาคต (Glassmorphism + Neon Border) */
.cyber-card {
    background: rgba(13, 22, 33, 0.75) !important;
    border: 1px solid rgba(102, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 15px rgba(102,255,255,0.02) !important;
}

.glitch-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, #66FFFF, transparent);
}

/* โปรไฟล์ฝั่งซ้าย */
.avatar-upload-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(102, 255, 255, 0.1);
}
.cyber-avatar-frame {
    position: relative;
    width: 130px; height: 130px;
    border-radius: 50%;
    padding: 6px;
    border: 2px solid #66FFFF;
    box-shadow: 0 0 15px rgba(102, 255, 255, 0.25);
    margin-bottom: 18px;
}
.cyber-avatar-frame img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #111;
}
.avatar-edit-badge {
    position: absolute;
    bottom: 3px; right: 3px;
    background: #66FFFF;
    color: #070a0f;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: transform 0.2s, background-color 0.2s;
}
.avatar-edit-badge:hover {
    transform: scale(1.1);
    background: #99FFFF;
}

.profile-username {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}
.badge-cyber-status {
    background: rgba(102, 255, 255, 0.1);
    color: #66FFFF;
    border: 1px solid rgba(102, 255, 255, 0.3);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.profile-quick-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-bottom: 1px solid rgba(102, 255, 255, 0.1);
}
.stat-box { text-align: center; }
.stat-box .stat-val { display: block; font-size: 22px; font-weight: 700; }
.stat-box .stat-lbl { font-size: 11px; color: #94a3b8; }
.text-cyan { color: #66FFFF !important; }

.system-logs { padding-top: 20px; }
.system-logs .log-title { font-size: 12px; font-weight: 600; color: #64748b; margin-bottom: 12px; }
.system-logs .log-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 8px; font-family: monospace; }
.system-logs .log-row span:first-child { color: #64748b; }

/* หัวการ์ดฟอร์มฝั่งขวา */
.card-neon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(102, 255, 255, 0.15);
}
.card-neon-title h4 { font-size: 16px; font-weight: 600; color: #ffffff; margin: 0; }

/* ช่องกรอกข้อมูล */
.cyber-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cyber-input-group label { font-size: 13px; color: #94a3b8; font-weight: 500; }
.cyber-input-group label i { color: #66FFFF; margin-right: 5px; }

.cyber-form-control {
    background: rgba(7, 10, 15, 0.6) !important;
    border: 1px solid rgba(102, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}
.cyber-form-control:focus {
    outline: none !important;
    border-color: #66FFFF !important;
    box-shadow: 0 0 12px rgba(102, 255, 255, 0.25) !important;
}
.cyber-form-control[readonly] {
    background: rgba(30, 41, 59, 0.3) !important;
    color: #64748b !important;
    border-color: rgba(102, 255, 255, 0.05) !important;
    cursor: not-allowed;
}
.form-hint { font-size: 11px; margin-top: 2px; }

.form-action-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 255, 255, 0.1);
}

.btn-cyber-outline {
    background: transparent;
    border: 1px solid rgba(102, 255, 255, 0.3);
    color: #94a3b8;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-cyber-outline:hover {
    border-color: #66FFFF;
    color: #66FFFF;
    box-shadow: 0 0 10px rgba(102,255,255,0.1);
}

.btn-cyber-solid {
    background: #66FFFF;
    border: none;
    color: #070a0f;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(102, 255, 255, 0.25);
    transition: all 0.2s;
}
.btn-cyber-solid:hover {
    background: #99FFFF;
    box-shadow: 0 0 20px rgba(102, 255, 255, 0.45);
    transform: translateY(-1px);
}