/* ===== CSS Reset (แบบง่าย) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans-serif); /* ใช้ IBM Plex Sans Thai */
    line-height: 1.7;
    color: var(--text-color);
    background-color: #f4f4f4; /* สีพื้นหลังหลักของหน้า */
    font-size: 16px; /* หรือ 1rem */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: #0056b3; /* สีเข้มขึ้นเล็กน้อยของ Primary Color */
}

img, video { /* เพิ่ม video เพื่อให้ max-width: 100% มีผลกับ video ด้วย */
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== ตัวแปรสี (CSS Variables) ===== */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-muted: #5a6268;
    --white-color: #ffffff;
    --black-color: #000000;
    --danger-color: #dc3545;

    /* Google Fonts ที่เลือก */
    --font-family-heading: 'Prompt', sans-serif;
    --font-family-sans-serif: 'IBM Plex Sans Thai', sans-serif;

    --container-width: 1140px;
    --nav-height: 70px;
}

/* ===== Global Helper Classes ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden; /* เปลี่ยนเป็น visible หรือ auto ถ้ามีปัญหาการแสดงผลบางอย่างที่ซ้อนกัน */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-family: var(--font-family-heading);
    font-size: 1rem;
    font-weight: 500; /* Prompt Medium */
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
                border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn i.fa-solid, .btn i.fa-brands { /* สไตล์ไอคอนในปุ่ม */
    margin-right: 0.5em;
}
.btn-small i.fa-solid, .btn-small i.fa-brands {
    margin-left: 0.4em;
    font-size: 0.9em;
}


.btn-primary {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}
.btn-secondary {
    color: var(--white-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-secondary:hover {
    background-color: #545b62;
    border-color: #4e555b;
}
.btn-outline {
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    font-weight: 500;
}
.btn-outline:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}
.btn-large {
    padding: 0.75rem 1.25rem;
    font-size: 1.2rem;
    border-radius: 0.3rem;
}
.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.my-1 { margin-top: 1rem; margin-bottom: 1rem; }
.py-1 { padding-top: 1rem; padding-bottom: 1rem; }

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.75rem;
    font-family: var(--font-family-heading);
    font-weight: 600; /* Prompt SemiBold */
    line-height: 1.3;
    color: var(--dark-color);
}
h1 { font-size: 2.8rem; font-weight: 700; } /* Prompt Bold */
h2 { font-size: 2.2rem; }
h3 { font-size: 1.75rem; font-weight: 500; } /* Prompt Medium */

p {
    margin-bottom: 1rem;
    font-family: var(--font-family-sans-serif);
}
.section-subtitle {
    font-family: var(--font-family-sans-serif);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
}

.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ===== Navigation Bar Styles ===== */
.main-nav { background-color: var(--white-color); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); height: var(--nav-height, 70px); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; display: flex; align-items: center; }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.nav-logo img { height: 40px; width: auto; display: block; }
.main-nav ul { list-style: none; display: flex; align-items: center; margin: 0; padding: 0; }
.main-nav ul li { margin-left: 25px; }
.main-nav ul li a { color: var(--text-color); text-decoration: none; font-family: var(--font-family-heading); font-weight: 500; padding: 5px 0; position: relative; transition: color 0.3s ease; }
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--primary-color); }
.main-nav ul li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s ease; }
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after { width: 100%; }
.btn-nav-booking { font-family: var(--font-family-heading); font-weight: 500; padding: 8px 18px; font-size: 0.9rem; margin-left: 25px; }
.menu-toggle { display: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 3px; background-color: var(--dark-color); margin: 5px 0; transition: all 0.3s ease-in-out; }

/* ===== Hero Section Styles ===== */
.hero-section { background-size: cover; background-position: center center; background-repeat: no-repeat; color: var(--white-color); height: calc(100vh - var(--nav-height, 70px)); min-height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding-top: var(--nav-height, 70px); }
.video-hero .hero-video-background { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; object-fit: cover; transform: translate(-50%, -50%); z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.3); z-index: 1; }
.hero-section:not(.video-hero)::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
.hero-section h1 { font-family: var(--font-family-heading); font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--white-color); text-shadow: 2px 2px 4px rgba(0,0,0,0.6); }
.hero-section p { font-family: var(--font-family-sans-serif); font-size: 1.25rem; margin-bottom: 2rem; color: var(--light-color); text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.hero-buttons .btn { margin: 0.5rem; font-size: 1.1rem; padding: 12px 30px; }
.hero-buttons .btn-secondary { background-color: transparent; border: 2px solid var(--white-color); color: var(--white-color); }
.hero-buttons .btn-secondary:hover { background-color: var(--white-color); color: var(--dark-color); }

@media (max-width: 768px) { .main-nav ul { display: none; flex-direction: column; position: absolute; top: var(--nav-height, 70px); left: 0; width: 100%; background-color: var(--white-color); box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 10px 0; } .main-nav ul.nav-active { display: flex; } .main-nav ul li { margin: 10px 0; text-align: center; width: 100%; } .main-nav ul li a { padding: 10px; display: block; font-family: var(--font-family-heading); } .main-nav ul li a::after { display: none; } .btn-nav-booking { margin: 10px auto; display: block; width: fit-content; } .menu-toggle { display: block; } .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .menu-toggle.active span:nth-child(2) { opacity: 0; } .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); } .hero-section h1 { font-size: 2.5rem; } .hero-section p { font-size: 1.1rem; } .hero-buttons .btn { display: block; width: 80%; margin: 0.75rem auto; } }

/* ===== About / จุดเด่น Section Styles ===== */
.about-section { padding: 60px 0; background-color: var(--white-color); text-align: center; }
.about-section h2 { font-family: var(--font-family-heading); font-size: 2.2rem; font-weight: 600; margin-bottom: 1rem; color: var(--dark-color); }
.about-section .features { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 2rem; }
.about-section .features span { display: flex; align-items: center; font-family: var(--font-family-heading); font-size: 1.1rem; font-weight: 500; color: var(--text-color); background-color: var(--light-color); padding: 10px 20px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.about-section .features span i.fa-solid { margin-right: 10px; color: var(--primary-color); font-size: 1.2em; }
@media (max-width: 768px) { .about-section { padding: 40px 0; } .about-section h2 { font-size: 1.8rem; } .about-section .section-subtitle { font-size: 1rem; margin-bottom: 2rem; } .about-section .features span { font-size: 1rem; padding: 8px 15px; } }
@media (max-width: 576px) { .about-section .features { flex-direction: column; align-items: center; } .about-section .features span { width: 80%; justify-content: center; margin-bottom: 10px; } }

/* ===== Room Types Highlight Section Styles ===== */
.room-highlight-section { padding: 60px 0; background-color: var(--light-color); }
.room-highlight-section .container { text-align: center; }
.room-highlight-section h2 { font-family: var(--font-family-heading); font-size: 2.2rem; font-weight: 600; margin-bottom: 2.5rem; color: var(--dark-color); }
.room-cards-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.room-card { background-color: var(--white-color); border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); overflow: hidden; width: calc(33.333% - 20px); min-width: 280px; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.room-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
.room-card img { width: 100%; height: 220px; object-fit: cover; }
.room-card-content { padding: 20px; text-align: left; flex-grow: 1; display: flex; flex-direction: column; }
.room-card-content h3 { font-family: var(--font-family-heading); font-size: 1.5rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--dark-color); }
.room-card-content p { font-family: var(--font-family-sans-serif); font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; flex-grow: 1; }
.room-card-content .btn { font-family: var(--font-family-heading); display: inline-block; align-self: flex-start; margin-top: auto; }
.view-all-rooms { margin-top: 3rem; }
@media (max-width: 992px) { .room-card { width: calc(50% - 15px); } }
@media (max-width: 576px) { .room-highlight-section { padding: 40px 0; } .room-highlight-section h2 { font-size: 1.8rem; margin-bottom: 2rem; } .room-card { width: 100%; max-width: 350px; margin-left: auto; margin-right: auto; margin-bottom: 20px; } .room-card:last-child { margin-bottom: 0; } .room-card h3 { font-size: 1.3rem; } .room-card p { font-size: 0.9rem; } .room-card .btn { width: 100%; text-align: center; } }

/* ===== Services & Experiences Section Styles ===== */
.services-section { padding: 60px 0; background-color: var(--white-color); }
.services-section .container { text-align: center; }
.services-section h2 { font-family: var(--font-family-heading); font-size: 2.2rem; font-weight: 600; margin-bottom: 2.5rem; color: var(--dark-color); }
.service-items-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.service-item { background-color: var(--light-color); border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); width: calc(33.333% - 20px); min-width: 280px; padding: 25px; text-align: center; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); }
.service-item img { width: 100%; max-height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 1.5rem; }
.service-item h3 { font-family: var(--font-family-heading); font-size: 1.4rem; font-weight: 500; color: var(--dark-color); margin-bottom: 0.75rem; }
.service-item p { font-family: var(--font-family-sans-serif); font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; padding: 0; margin-bottom: 0; flex-grow: 1; }
@media (max-width: 992px) { .service-item { width: calc(50% - 15px); } }
@media (max-width: 576px) { .services-section { padding: 40px 0; } .services-section h2 { font-size: 1.8rem; margin-bottom: 2rem; } .service-item { width: 100%; max-width: 350px; margin-left: auto; margin-right: auto; margin-bottom: 20px; } .service-item:last-child { margin-bottom: 0; } .service-item img { max-height: 180px; } .service-item h3 { font-size: 1.2rem; } .service-item p { font-size: 0.9rem; } }

/* ===== Gallery Preview Section Styles ===== */
.gallery-preview-section { padding: 60px 0; background-color: var(--light-color); }
.gallery-preview-section .container { text-align: center; }
.gallery-preview-section h2 { font-family: var(--font-family-heading); font-size: 2.2rem; font-weight: 600; margin-bottom: 2.5rem; color: var(--dark-color); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 2.5rem; }
.gallery-item { overflow: hidden; border-radius: 8px; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; display: block; border-radius: 8px; transition: transform 0.4s ease, filter 0.4s ease; }
.gallery-item a:hover img { transform: scale(1.05); filter: brightness(0.8); }
.view-gallery-button { margin-top: 2rem; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; } .gallery-item img { height: 200px; } }
@media (max-width: 576px) { .gallery-preview-section { padding: 40px 0; } .gallery-preview-section h2 { font-size: 1.8rem; margin-bottom: 2rem; } .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; } .gallery-item img { height: 180px; } }

/* ===== CTA (Call to Action) ปิดท้าย Section Styles ===== */
.cta-section { padding: 70px 20px; background-color: var(--primary-color); color: var(--white-color); text-align: center; }
.cta-section h2 { font-family: var(--font-family-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--white-color); }
.cta-section p { font-family: var(--font-family-sans-serif); font-size: 1.15rem; margin-bottom: 2.5rem; color: var(--light-color); max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.9; }
.cta-section .btn-large { box-shadow: 0 4px 15px rgba(0,0,0,0.2); font-family: var(--font-family-heading); }
.cta-section .btn-large:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
@media (max-width: 768px) { .cta-section { padding: 50px 0; } .cta-section h2 { font-size: 1.9rem; } .cta-section p { font-size: 1.05rem; margin-bottom: 2rem; } }
@media (max-width: 576px) { .cta-section h2 { font-size: 1.7rem; } .cta-section p { font-size: 1rem; } .cta-section .btn-large { width: 80%; padding: 0.6rem 1rem; font-size: 1.1rem; } }

/* ===== Footer Section Styles ===== */
.site-footer { background-color: var(--dark-color); color: var(--light-color); padding: 60px 0 20px 0; font-size: 0.9rem; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.footer-column { flex: 1; min-width: 220px; margin-bottom: 20px; }
.footer-logo { max-width: 150px; margin-bottom: 1rem; }
.footer-about p { font-family: var(--font-family-sans-serif); line-height: 1.7; color: #ccc; }
.footer-column h3 { font-family: var(--font-family-heading); font-size: 1.2rem; font-weight: 500; color: var(--white-color); margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--secondary-color); display: inline-block; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 0.7rem; }
.footer-links ul li a,
.footer-contact p a { font-family: var(--font-family-sans-serif); color: var(--light-color); text-decoration: none; transition: color 0.3s ease; }
.footer-links ul li a:hover,
.footer-contact p a:hover { color: var(--primary-color); text-decoration: underline; }
.footer-contact p { font-family: var(--font-family-sans-serif); margin-bottom: 0.7rem; display: flex; align-items: flex-start; }
.footer-contact p i.fa-solid,
.footer-contact p i.fa-brands {
    margin-right: 10px;
    margin-top: 4px;
    color: var(--primary-color);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.social-icons { margin-top: 1rem; }
.social-icons a { color: var(--light-color); font-size: 1.5rem; margin-right: 15px; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; }
.social-icons a:hover { color: var(--primary-color); transform: scale(1.1); }
.social-icons a:last-child { margin-right: 0; }
/* ลบ Placeholder สำหรับไอคอน Social ที่เป็น ::before ออก (ถ้าเคยมี) */
.footer-copyright { text-align: center; padding-top: 20px; border-top: 1px solid var(--secondary-color); font-size: 0.85rem; color: #aaa; }
@media (max-width: 768px) { .footer-content { flex-direction: column; align-items: center; text-align: center; } .footer-column { min-width: auto; margin-bottom: 30px; } .footer-column h3 { display: block; text-align: center; } .footer-contact p { justify-content: center; } .social-icons a { margin: 0 10px; } }

/* ===== Page Header Styles (สำหรับหน้าย่อยอื่นๆ) ===== */
.page-header { background-color: var(--light-color); padding: 40px 0; text-align: center; margin-top: var(--nav-height, 70px); border-bottom: 1px solid #e0e0e0; }
.page-header h1 { font-family: var(--font-family-heading); font-size: 2.5rem; font-weight: 600; color: var(--dark-color); margin-bottom: 0.5rem; }
.page-header p { font-family: var(--font-family-sans-serif); font-size: 1.1rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== Villas Listing Section Styles (สำหรับ villas.html) ===== */
.villas-listing-section { padding: 60px 0; background-color: var(--white-color); }
.villas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.villa-card-item { background-color: var(--white-color); border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.villa-card-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12); }
.villa-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.villa-card-item img { width: 100%; height: 250px; object-fit: cover; }
.villa-card-item-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.villa-card-item-content h3 { font-family: var(--font-family-heading); font-size: 1.6rem; font-weight: 500; color: var(--dark-color); margin-bottom: 0.75rem; }
.villa-card-item-content .villa-capacity { font-family: var(--font-family-sans-serif); font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; font-style: italic; display: flex; align-items: center;}
.villa-card-item-content .villa-capacity i.fa-solid { margin-right: 6px; color: var(--secondary-color); font-size: 0.9em; }
.villa-card-item-content .villa-short-desc { font-family: var(--font-family-sans-serif); font-size: 0.95rem; color: var(--text-color); margin-bottom: 1rem; flex-grow: 1; }
.villa-card-item-content .btn-small { font-family: var(--font-family-heading); padding: 8px 16px; font-size: 0.9rem; align-self: flex-start; margin-top: auto; }
.villa-card-item-content .btn-small i.fa-solid { margin-left: 6px; font-size: 0.8em;}
@media (max-width: 768px) { /* .page-header h1 ควรจะอยู่ในส่วน Page Header Styles - ลบออกถ้าซ้ำ */ .villas-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } .villa-card-item-content h3 { font-size: 1.4rem; } }

/* ===== Full Gallery Section Styles (สำหรับ gallery.html) ===== */
.full-gallery-section { padding: 60px 0; background-color: var(--white-color); }
.gallery-grid-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; }
.gallery-image-item { position: relative; overflow: hidden; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.gallery-image-item img { width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.4s ease; border-radius: 8px; }
.gallery-image-item a:hover img { transform: scale(1.08); filter: brightness(0.7); }
@media (max-width: 992px) { .gallery-grid-full { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } .gallery-image-item img { height: 220px; } }
@media (max-width: 576px) { .full-gallery-section { padding: 40px 0; } .gallery-grid-full { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; } .gallery-image-item img { height: 180px; } }

/* ===== Contact Section Styles (สำหรับ contact.html) ===== */
.contact-section { padding: 60px 0; background-color: var(--white-color); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 40px; }
.contact-details h2,
.contact-form-container h2,
.map-container h2 { font-family: var(--font-family-heading); font-size: 1.8rem; font-weight: 600; color: var(--dark-color); margin-bottom: 1.5rem; }
.contact-details p { font-family: var(--font-family-sans-serif); margin-bottom: 1rem; line-height: 1.7; color: var(--text-color); }
.contact-details p strong { font-weight: 600; color: var(--dark-color); }
.contact-details p i.fa-solid,
.contact-details p i.fa-brands {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.contact-social-icons { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.contact-social-icons a { color: var(--dark-color); font-size: 1.8rem; margin-right: 15px; text-decoration: none; transition: color 0.3s ease; }
.contact-social-icons a:hover { color: var(--primary-color); }
.contact-social-icons a:last-child { margin-right: 0; }
.contact-details h3 { font-family: var(--font-family-heading); font-size: 1.2rem; font-weight: 500; color: var(--dark-color); margin-top: 2rem; margin-bottom: 0.5rem; }
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label { font-family: var(--font-family-sans-serif); display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--text-muted); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-size: 1rem; font-family: var(--font-family-sans-serif); transition: border-color 0.3s ease; }
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { font-family: var(--font-family-heading); width: auto; padding: 12px 30px; }
.contact-form .btn i.fa-solid { margin-right: 8px; }
.form-status { margin-top: 1rem; font-size: 0.9rem; }
.map-container { margin-top: 40px; text-align: center; }
.map-container iframe { border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .contact-details h2, .contact-form-container h2, .map-container h2 { font-size: 1.6rem; } .map-container iframe { height: 350px; } }

/* ===== Booking Section Styles (สำหรับ booking.html) ===== */
.booking-section { padding: 60px 0; background-color: var(--white-color); }
.booking-intro { text-align: center; margin-bottom: 40px; }
.booking-intro h2 { font-family: var(--font-family-heading); font-size: 2rem; font-weight: 600; color: var(--dark-color); margin-bottom: 1rem; }
.booking-intro p { font-family: var(--font-family-sans-serif); font-size: 1.1rem; color: var(--text-muted); max-width: 750px; margin-left: auto; margin-right: auto; }
.booking-options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 40px; }
.booking-option-card { background-color: var(--light-color); padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; }
.booking-option-card i.fa-solid,
.booking-option-card i.fa-brands {
    color: var(--primary-color);
    margin-bottom: 1rem;
    /* ขนาด fa-3x ถูกกำหนดใน HTML */
}
.booking-option-card h3 { font-family: var(--font-family-heading); font-size: 1.5rem; font-weight: 500; color: var(--dark-color); margin-bottom: 0.75rem; }
.booking-option-card p { font-family: var(--font-family-sans-serif); font-size: 1rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.booking-option-card .contact-highlight { font-family: var(--font-family-heading); font-size: 1.1rem; font-weight: 500; color: var(--dark-color); margin-bottom: 1rem; }
.booking-option-card .contact-highlight a { color: var(--primary-color); }
.booking-option-card .btn-small { font-family: var(--font-family-heading); margin-top: 1rem; }
.booking-note { background-color: #e9f5ff; padding: 25px; border-radius: 8px; border-left: 5px solid var(--primary-color); }
.booking-note h3 { font-family: var(--font-family-heading); font-size: 1.3rem; font-weight: 500; color: var(--dark-color); margin-bottom: 1rem; }
.booking-note ul { list-style: none; padding-left: 0; margin-bottom: 1rem; }
.booking-note ul li { margin-bottom: 0.75rem; color: var(--text-color); display: flex; align-items: flex-start; font-family: var(--font-family-sans-serif); }
.booking-note ul li i.fa-solid { margin-right: 10px; color: var(--primary-color); margin-top: 4px; font-size: 0.9em; }
.booking-note p { font-family: var(--font-family-sans-serif); font-size: 1rem; font-weight: 500; color: var(--dark-color); margin-bottom: 0; }
@media (max-width: 768px) { .booking-intro h2 { font-size: 1.8rem; } .booking-option-card h3 { font-size: 1.3rem; } }

/* ===== Villa Detail Page Styles (สำหรับ accommodations/ชื่อบ้าน.html) ===== */
.villa-detail-page { padding-bottom: 60px; }
.villa-detail-header { text-align: center; padding: 30px 0; margin-top: var(--nav-height, 70px); background-color: var(--light-color); border-bottom: 1px solid #e0e0e0; }
.villa-detail-header h1 { font-family: var(--font-family-heading); font-size: 2.8rem; font-weight: 700; color: var(--dark-color); margin-bottom: 0.5rem; }
.villa-detail-header .villa-subtitle { font-family: var(--font-family-sans-serif); font-size: 1.2rem; color: var(--text-muted); margin-bottom: 0; }
.villa-image-gallery { margin: 40px 0; text-align: center; }
.main-villa-image img, .main-villa-image video { width: 100%; max-height: 550px; object-fit: cover; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); margin-bottom: 20px; }
.main-villa-image video { background-color: var(--black-color); }
.thumbnail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.thumbnail-grid img { width: 100%; height: 100px; object-fit: cover; border-radius: 5px; cursor: pointer; border: 2px solid transparent; transition: border-color 0.3s ease, transform 0.3s ease; }
.thumbnail-grid a:hover img { border-color: var(--primary-color); transform: scale(1.05); }
.villa-description,
.room-details,
.common-areas,
.poolside-lounge-teaser,
.villa-booking-cta,
.lounge-features { padding: 40px 0; border-bottom: 1px solid #eee; }
.villa-detail-page section:last-of-type { border-bottom: none; }
.villa-description h2,
.room-details > h3,
.common-areas > h3,
.poolside-lounge-teaser > h3,
.lounge-features > h3,
.villa-booking-cta h2 { font-family: var(--font-family-heading); font-size: 1.8rem; font-weight: 600; color: var(--dark-color); margin-bottom: 1.5rem; text-align: left; }
.room-details > h3,
.common-areas > h3,
.poolside-lounge-teaser > h3,
.lounge-features > h3 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.villa-description p { font-family: var(--font-family-sans-serif); font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); }
.room-detail-item { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px dashed #ddd; }
.room-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.room-detail-item h4 { font-family: var(--font-family-heading); font-size: 1.4rem; font-weight: 500; color: var(--primary-color); margin-bottom: 1rem; }
.room-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; align-items: flex-start; }
.room-image img { border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
.room-description ul { list-style: none; padding-left: 0; }
.room-description ul li { margin-bottom: 0.75rem; display: flex; align-items: center; font-size: 1rem; font-family: var(--font-family-sans-serif); }
.room-description ul li i.fa-solid { margin-right: 10px; color: var(--secondary-color); width: 20px; text-align: center; font-size: 0.9em; }
.room-description p strong { color: var(--danger-color); font-weight: 600; display: block; margin-bottom: 0.5rem; font-family: var(--font-family-heading); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.amenity-item { text-align: center; }
.amenity-item img { border-radius: 8px; height: 180px; object-fit: cover; margin-bottom: 10px; box-shadow: 0 3px 8px rgba(0,0,0,0.08); }
.amenity-item p { font-family: var(--font-family-sans-serif); font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }
.poolside-lounge-teaser p { font-family: var(--font-family-sans-serif); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.poolside-lounge-teaser .btn { font-family: var(--font-family-heading); display: block; width: fit-content; margin: 0 auto; }
.villa-booking-cta { text-align: center; background-color: var(--light-color); padding: 50px 20px; border-radius: 8px; margin-top: 20px; }
.villa-booking-cta h2 { font-family: var(--font-family-heading); font-weight: 600; }
.villa-booking-cta p { font-family: var(--font-family-sans-serif); font-size: 1.1rem; margin-bottom: 2rem; }

/* Styles for .lounge-features on services.html and poolside-lounge.html */
.lounge-features { /* สไตล์นี้ใช้กับหน้า services.html และ accommodations/poolside-lounge.html */ }
.lounge-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: flex-start; }
.lounge-feature-item { background-color: var(--white-color); padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.07); text-align: left; }
.lounge-feature-item img { width: 100%; max-height: 250px; object-fit: cover; border-radius: 6px; margin-bottom: 1rem; }
.lounge-feature-item h4 { font-family: var(--font-family-heading); font-size: 1.3rem; font-weight: 500; color: var(--primary-color); margin-bottom: 0.75rem; display: flex; align-items: center; }
.lounge-feature-item h4 i.fa-solid { margin-right: 8px; font-size: 1.1em; }
.lounge-feature-item ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.lounge-feature-item ul li { font-family: var(--font-family-sans-serif); font-size: 0.95rem; margin-bottom: 0.5rem; display: flex; align-items: flex-start; }
.lounge-feature-item ul li i.fa-solid { margin-right: 8px; color: var(--secondary-color); margin-top: 4px; width: 16px; text-align: center; flex-shrink: 0; }

@media (max-width: 768px) {
    .villa-detail-header h1 { font-size: 2.2rem; }
    .villa-detail-header .villa-subtitle { font-size: 1.1rem; }
    .main-villa-image img, .main-villa-image video { max-height: 400px; }
    .thumbnail-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
    .thumbnail-grid img { height: 80px; }
    .villa-description h2,
    .room-details > h3,
    .common-areas > h3,
    .poolside-lounge-teaser > h3,
    .lounge-features > h3,
    .villa-booking-cta h2 { font-size: 1.6rem; }
    .room-detail-item h4 { font-size: 1.2rem; }
    .room-features-grid { grid-template-columns: 1fr; }
    .room-image { margin-bottom: 15px; }
    .lounge-feature-grid { grid-template-columns: 1fr; }
}

/* Services Page Specific Styles */
.villas-summary-services { padding: 40px 0; background-color: var(--white-color); text-align: center; }
.villas-summary-services h2 { font-family: var(--font-family-heading); font-size: 2rem; font-weight: 600; margin-bottom: 2rem; }
.villas-summary-services .view-all-rooms { margin-top: 2.5rem; text-align: center; }
.villas-summary-services .view-all-rooms .btn { display: inline-block; }

.service-highlight { padding: 60px 0; }
.service-highlight:nth-child(odd) { background-color: var(--light-color); }
.service-highlight:nth-child(even) { background-color: var(--white-color); }
.service-layout-image-left,
.service-layout-image-right { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.service-layout-image-right .service-image { order: 2; }
.service-layout-image-right .service-content { order: 1; }
.service-highlight .service-image img { width: 100%; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.service-highlight .service-content h2 { font-family: var(--font-family-heading); font-size: 2rem; font-weight: 600; color: var(--dark-color); margin-bottom: 1rem; text-align: left; }
.service-highlight .service-content h3 { font-family: var(--font-family-heading); font-size: 1.3rem; font-weight: 500; color: var(--dark-color); margin-top: 1.5rem; margin-bottom: 0.75rem; text-align: left; }
.service-highlight .service-content p { font-family: var(--font-family-sans-serif); font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; text-align: left; }
.service-highlight .service-content ul { list-style: none; padding-left: 0; margin-bottom: 1.5rem; text-align: left; }
.service-highlight .service-content ul li { margin-bottom: 0.5rem; display: flex; align-items: center; color: var(--text-color); font-family: var(--font-family-sans-serif); }
.service-highlight .service-content ul li i.fa-solid,
.service-highlight .service-content ul li i.fa-brands { margin-right: 10px; color: var(--primary-color); width: 20px; text-align: center; flex-shrink: 0; margin-top: 2px; }
.service-highlight .service-content .btn { margin-top: 1rem; align-self: flex-start; }
.special-occasion-services { padding: 60px 0; background-color: var(--white-color); text-align: center; }
.special-occasion-services h2 { font-family: var(--font-family-heading); font-size: 2.2rem; font-weight: 600; margin-bottom: 2.5rem; }
.amenities-list-cols { columns: 2; -webkit-columns: 2; -moz-columns: 2; gap: 20px; }
.amenities-list-cols li { break-inside: avoid-column; page-break-inside: avoid; font-family: var(--font-family-sans-serif); display: flex; align-items: flex-start; margin-bottom: 0.6rem; }
.amenities-list-cols li i.fa-solid { margin-right: 10px; color: var(--primary-color); margin-top: 4px; width: 18px; text-align: center; flex-shrink: 0; }
.general-amenities-service .service-content p em { display: block; margin-top: 1rem; font-size: 0.9rem; color: var(--secondary-color); font-family: var(--font-family-sans-serif); }
@media (max-width: 768px) { .service-layout-image-left, .service-layout-image-right { grid-template-columns: 1fr; } .service-layout-image-right .service-image { order: 1; } .service-layout-image-right .service-content { order: 2; } .service-highlight .service-image { margin-bottom: 30px; } .service-highlight .service-content h2 { font-size: 1.8rem; } .amenities-list-cols { columns: 1; -webkit-columns: 1; -moz-columns: 1; } }

/* สไตล์สำหรับ Poolside Lounge ในหน้า Services (ที่ใช้ class .poolside-lounge-service-updated) */
.poolside-lounge-service-updated .lounge-header-text h2 { font-family: var(--font-family-heading); font-size: 2.2rem; font-weight: 600; margin-bottom: 1rem; text-align: center; }
.poolside-lounge-service-updated .main-villa-image video { background-color: var(--black-color); }
.poolside-lounge-service-updated .villa-image-gallery { margin-top: 0; margin-bottom: 40px; }
.poolside-lounge-service-updated .main-villa-image img,
.poolside-lounge-service-updated .main-villa-image video { max-height: 450px; }
.poolside-lounge-service-updated .service-content h3 { font-family: var(--font-family-heading); font-size: 1.8rem; font-weight: 600; text-align: center; margin-bottom: 1.5rem; margin-top: 0; }
.poolside-lounge-service-updated .amenities-list-cols li i.fa-solid { font-size: 1em; }

/* About Us Page Specific Styles */
.about-us-page { padding-bottom: 60px; }
.about-section-block { padding: 50px 0; border-bottom: 1px solid #eee; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.about-us-page section:last-of-type { border-bottom: none; }
.about-section-block.image-right .about-content-image { order: 2; }
.about-section-block.image-right .about-content-text { order: 1; }
.about-content-text h2 { font-family: var(--font-family-heading); font-size: 2rem; font-weight: 600; color: var(--dark-color); margin-bottom: 1.5rem; display: flex; align-items: center; }
.about-content-text h2 i.fa-solid { margin-right: 12px; color: var(--primary-color); font-size: 0.9em; }
.about-content-text p,
.about-content-text ul { font-family: var(--font-family-sans-serif); font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1rem; }
.about-content-text ul { list-style: none; padding-left: 0; }
.about-content-text ul li { margin-bottom: 0.75rem; padding-left: 25px; position: relative; }
.about-content-text ul li::before { content: '✔'; color: var(--primary-color); position: absolute; left: 0; font-weight: bold; }
.about-content-text ul li strong { font-weight: 600; color: var(--text-color); }
.about-content-image img, .about-content-image video { width: 100%; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.about-content-image video { background-color: var(--black-color); }
.team-section .container { text-align: center; }
.team-section h2 i.fa-solid { font-size: 1em; }
.about-cta { text-align: center; padding: 40px 0 20px 0; }
.about-cta p { font-family: var(--font-family-heading); font-size: 1.25rem; font-weight: 500; color: var(--dark-color); margin-bottom: 1.5rem; }
@media (max-width: 768px) { .about-section-block { grid-template-columns: 1fr; } .about-section-block.image-right .about-content-image { order: 1; } .about-section-block.image-right .about-content-text { order: 2; } .about-content-image { margin-bottom: 30px; } .about-content-text h2 { font-size: 1.8rem; } }

/* Video specific styles (สำหรับหน้า about-us) */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 1.5rem; }
.video-grid video { border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); background-color: var(--black-color); }
.video-grid p { font-family: var(--font-family-heading); font-weight: 500; margin-bottom: 0.5rem; text-align: center; }

/* ===== FAQ Page Styles ===== */
.faq-page { padding: 60px 0; background-color: var(--white-color); }
.faq-category { margin-bottom: 40px; }
.faq-category h2 { font-family: var(--font-family-heading); font-size: 2rem; font-weight: 600; color: var(--dark-color); margin-bottom: 1.5rem; border-bottom: 2px solid var(--primary-color); padding-bottom: 0.5rem; display: inline-block; }
.faq-category h2 i.fa-solid { margin-right: 10px; }
.faq-item { margin-bottom: 10px; border: 1px solid #e0e0e0; border-radius: 5px; overflow: hidden; }
.faq-question {
    font-family: var(--font-family-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-color);
    background-color: var(--light-color);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-bottom-color: var(--primary-color);
}
.faq-question::after {
    content: '\f078'; /* Font Awesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    font-size: 0.9em;
}
.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}
.faq-answer {
    font-family: var(--font-family-sans-serif);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--white-color);
    color: var(--text-muted);
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    padding-top: 20px;
    padding-bottom: 20px;
    /* max-height จะถูกกำหนดโดย JavaScript */
}
.faq-answer ul { list-style: disc; padding-left: 25px; margin-top: 10px; margin-bottom: 10px; }
.faq-answer ul li { margin-bottom: 0.5rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Terms Page Styles */
.terms-page { padding: 60px 0; background-color: var(--white-color); }
.terms-section { margin-bottom: 30px; }
.terms-section h1 { font-family: var(--font-family-heading); font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 1rem; }
.terms-section .page-intro { font-family: var(--font-family-sans-serif); text-align: center; font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.terms-section h2 { font-family: var(--font-family-heading); font-size: 1.8rem; font-weight: 600; color: var(--dark-color); margin-top: 2rem; margin-bottom: 1rem; border-bottom: 1px solid #ddd; padding-bottom: 0.5rem; }
.terms-section h3 { font-family: var(--font-family-heading); font-size: 1.4rem; font-weight: 500; color: var(--dark-color); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.terms-section p, .terms-section ul, .terms-section ol { font-family: var(--font-family-sans-serif); font-size: 1rem; line-height: 1.8; color: var(--text-color); margin-bottom: 1rem; }
.terms-section ul, .terms-section ol { padding-left: 30px; } /* ใช้ padding-left แทน margin-left เพื่อให้ bullet/number อยู่ในแนว */
.terms-section ul li, .terms-section ol li { margin-bottom: 0.5rem; }
.terms-section strong { font-weight: 600; color: var(--dark-color); }
.terms-section em { font-style: italic; color: var(--text-muted); }
.terms-contact-info { margin-top: 30px; text-align: center; padding-bottom: 30px; border-top: 1px solid #eee; padding-top: 30px;}
.terms-contact-info p { margin-bottom: 0.5rem; }
/* ===== Booking Request Form Page Styles (ฉบับแก้ไขสมบูรณ์) ===== */
.booking-form-section {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #e9ecef;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white-color); /* เปลี่ยนพื้นหลังเป็นสีขาว */
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.booking-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    align-items: center; /* จัดให้ label และ input อยู่ในแนวเดียวกัน */
}

.booking-form .form-group {
    display: grid; /* ใช้ grid layout ภายใน form-group */
    grid-template-columns: 150px 1fr; /* แบ่งเป็น 2 คอลัมน์: label และ input */
    align-items: center;
    gap: 15px;
}

.booking-form .form-group.span-2 {
    grid-column: 1 / -1;
    display: block; /* สำหรับ textarea ให้กลับไปเป็น block ปกติ */
}

.booking-form label {
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    color: var(--text-color); /* เปลี่ยนสีให้เข้มขึ้น */
    text-align: right; /* จัด label ชิดขวา */
    margin: 0;
}

.booking-form .form-group.span-2 label {
    text-align: left; /* สำหรับ textarea ให้ label ชิดซ้าย */
    margin-bottom: 0.5rem;
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="number"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    font-family: var(--font-family-sans-serif);
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none; /* ลบสไตล์พื้นฐานของ Safari/Chrome */
    -moz-appearance: none;    /* ลบสไตล์พื้นฐานของ Firefox */
    appearance: none;        /* ลบสไตล์พื้นฐานทั้งหมด */
    line-height: 1.5; /* กำหนดความสูงบรรทัด */
    background-color: var(--white-color); /* ทำให้พื้นหลังเป็นสีขาวเสมอ */
}

.booking-form select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.7;
    cursor: pointer;
}


.booking-form input[type="text"]:focus,
.booking-form input[type="tel"]:focus,
.booking-form input[type="date"]:focus,
.booking-form input[type="number"]:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form .form-submit-container {
    text-align: center;
    margin-top: 2rem;
    grid-column: 1 / -1; /* ทำให้ปุ่มอยู่ตรงกลางเสมอ */
}


@media(max-width: 768px) {
    .booking-form .form-grid {
        grid-template-columns: 1fr;
    }
    .booking-form .form-group {
        grid-template-columns: 1fr; /* ในมือถือให้เป็น 1 คอลัมน์ */
        gap: 5px;
    }
    .booking-form label {
        text-align: left; /* ในมือถือให้ label ชิดซ้าย */
        margin-bottom: 0.25rem;
    }
    .booking-form {
        padding: 20px;
    }
}