.elementor-12522 .elementor-element.elementor-element-8cde412{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-12522 .elementor-element.elementor-element-20f50ec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-12522 .elementor-element.elementor-element-cfbd8ee{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b41f267 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@300;400;600&display=swap');

/* --- โครงสร้างหลัก --- */
.cinematic-effect-banner {
    position: relative;
    width: 100%;
    height: 600px; /* กำหนดความสูงให้ชัดเจนเพื่อความสวยงาม */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* สำคัญมาก! ห้ามให้รูปซูมทะลุกรอบ */
}

/* --- 1. เอฟเฟกต์รูปพื้นหลังซูมเข้า (Slow Zoom) --- */
.bg-zoom-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?q=80&w=2574&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* สั่งให้รูปซูมเข้าช้าๆ วนไปเรื่อยๆ */
    animation: slowZoom 20s infinite alternate; 
}

/* คีย์เฟรมการซูม */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } /* ซูมขยาย 15% */
}

/* --- เลเยอร์สีดำทับรูป (เพื่อให้ตัวหนังสืออ่านง่าย) --- */
.dark-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

/* --- เนื้อหา --- */
.banner-content {
    position: relative;
    z-index: 3; /* อยู่บนสุด */
    max-width: 800px;
    padding: 0 20px;
    color: #ffffff;
}

/* --- 2. เอฟเฟกต์ตัวหนังสือลอยขึ้น (Fade Up) --- */
/* กำหนดค่าเริ่มต้นให้ซ่อนอยู่ */
.fade-up-1, .fade-up-2, .fade-up-3, .fade-up-4 {
    opacity: 0;
    transform: translateY(30px); /* ดันลงไปข้างล่าง 30px */
    animation: fadeUpAnime 0.8s ease-out forwards; /* สั่งให้เล่น Animation */
}

/* กำหนดเวลาหน่วง (Delay) ให้ขึ้นมาทีละอัน */
.fade-up-1 { animation-delay: 0.2s; } /* ขึ้นก่อน */
.fade-up-2 { animation-delay: 0.4s; }
.fade-up-3 { animation-delay: 0.6s; }
.fade-up-4 { animation-delay: 0.8s; } /* ขึ้นทีหลังสุด */

@keyframes fadeUpAnime {
    to {
        opacity: 1;
        transform: translateY(0); /* กลับมาที่เดิม */
    }
}

/* --- ดีไซน์ตัวหนังสือ (เหมือนเดิม) --- */
.banner-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 15px;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.vs-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.5em;
    color: #d4af37;
    vertical-align: middle;
    margin: 0 10px;
    text-transform: lowercase;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background-color: #d4af37;
    margin: 30px auto;
}

.banner-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: #f0f0f0;
}

/* Responsive มือถือ */
@media (max-width: 768px) {
    .cinematic-effect-banner {
        height: 500px; /* ลดความสูงในมือถือ */
    }
    .banner-title {
        font-size: 2.8rem;
    }
    .banner-desc {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 4; /* ตัดคำถ้ายาวเกินไปในมือถือ */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6d20d10 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@1,500&display=swap');

:root {
    --deep-blue: #215387; /* สีหลัก */
    --gold: #d4af37;
    --pure-white: #ffffff;
    --text-grey: #444444;
}

/* พื้นหลังสีขาวล้วน */
.comparison-white-section {
    background-color: var(--pure-white);
    padding: 80px 20px;
    font-family: 'Outfit', sans-serif;
    color: #333;
}

.container-fluid-custom {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Header Design --- */
.header-animate {
    text-align: center;
    margin-bottom: 50px;
}

.title-main {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.vs-badge {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.8em;
    color: var(--gold);
    padding: 0 5px;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: var(--deep-blue);
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.desc-main {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Table Design --- */
.table-animate-wrapper {
    background: #fff;
    border-radius: 15px;
    /* เพิ่มเงาบางๆ เพื่อให้ตารางไม่จมไปกับพื้นขาว */
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.table-lux-white {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

/* หัวตาราง สีน้ำเงิน #215387 */
.table-lux-white thead {
    background-color: var(--deep-blue);
    color: #fff;
}

.table-lux-white th {
    padding: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.th-topic {
    width: 20%;
    background: rgba(0,0,0,0.1); /* สีเข้มขึ้นนิดนึง */
}

/* เนื้อหาในตาราง */
.table-lux-white td {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-grey);
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

/* คอลัมน์แรก (หัวข้อ) ทำให้เด่น */
.td-head {
    font-weight: 700;
    color: var(--deep-blue);
    background-color: #fafafa; /* สีเทาจางมากๆ เกือบขาว */
    border-right: 1px solid #eee;
}

/* --- Interactive Effects (ไฮไลท์) --- */

/* 1. แถวเด้งดึ๋ง (Hover Pop-up) */
.table-lux-white tbody tr {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.table-lux-white tbody tr:hover {
    transform: scale(1.015); /* ขยายใหญ่ขึ้นเล็กน้อย */
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(33, 83, 135, 0.15); /* เงาสีน้ำเงินจางๆ */
    z-index: 10;
    border-left: 5px solid var(--deep-blue); /* แถบสีด้านซ้าย */
}

/* 2. Entrance Animation (ลอยขึ้นมา) */
.fade-in-up {
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(40px);
}

.delay-200 {
    animation-delay: 0.3s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive มือถือ */
@media (max-width: 768px) {
    .table-animate-wrapper {
        overflow-x: auto; /* เลื่อนแนวนอน */
    }
    .table-lux-white {
        min-width: 600px;
    }
    .title-main {
        font-size: 2rem;
    }
    .td-head {
        position: sticky; /* ล็อกหัวข้อซ้ายสุดในมือถือ */
        left: 0;
        background-color: #f9f9f9;
        box-shadow: 2px 0 5px rgba(0,0,0,0.05);
        z-index: 5;
    }
    .table-lux-white tbody tr:hover {
        transform: none; /* ในมือถือไม่ต้องเด้ง เดี๋ยวบัง */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1dcca3f */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    --deep-blue: #215387;
    --gold: #d4af37;
    --bg-gray: #f9f9f9;
}

.vibe-section {
    width: 100%;
    padding: 100px 20px;
    background-color: var(--bg-gray); /* พื้นหลังสีเทาจางๆ ขับให้การ์ดขาวเด่น */
    font-family: 'Outfit', sans-serif;
}

.container-vibe {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header Design --- */
.vibe-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.sub-head-blue {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--deep-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.head-title-blue {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-dark {
    color: #222; /* สีดำสำหรับชื่อสถานที่ */
}

.vs-gold {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.7em;
    margin: 0 5px;
}

.line-blue {
    width: 80px;
    height: 4px;
    background: var(--deep-blue);
    margin: 0 auto 30px auto;
}

.vibe-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* --- Grid & Cards Design --- */
.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* แบ่งครึ่งซ้ายขวา */
    gap: 40px;
}

.vibe-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05); /* เงานุ่มๆ */
    transition: all 0.4s ease; /* เตรียมเอฟเฟกต์ลอย */
    border: 1px solid #eee;
}

/* เอฟเฟกต์: ชี้การ์ดแล้วลอยขึ้น + เงาเข้มขึ้น */
.vibe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(33, 83, 135, 0.15); /* เงาสีน้ำเงินจางๆ */
}

/* --- Image Part --- */
.card-image-box {
    width: 100%;
    height: 300px; /* ความสูงรูป */
    overflow: hidden;
    position: relative;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease; /* เตรียมเอฟเฟกต์ซูม */
}

/* เอฟเฟกต์: ชี้แล้วรูปซูมเข้า */
.vibe-card:hover .card-image-box img {
    transform: scale(1.1);
}

/* ป้ายแปะบนรูป */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--deep-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-badge.outline {
    background: #fff;
    color: var(--deep-blue);
}

/* --- Content Part --- */
.card-content {
    padding: 35px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

/* --- Animation Classes --- */
.fade-in-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-100 { animation-delay: 0.2s; }
.delay-200 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive มือถือ --- */
@media (max-width: 768px) {
    .vibe-grid {
        grid-template-columns: 1fr; /* เรียงลงมาเป็นแนวตั้ง */
        gap: 30px;
    }
    .head-title-blue {
        font-size: 2rem;
    }
    .card-image-box {
        height: 250px;
    }
    .card-content {
        padding: 25px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-85ff724 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    --navy-royal: #215387; /* สีหลัก #215387 */
    --gold-accent: #d4af37;
    --white-pure: #ffffff;
    --gray-light: #f4f4f4;
}

.tours-columns-section {
    width: 100%;
    padding: 100px 20px;
    background-color: var(--white-pure);
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box; /* สำคัญมาก ช่วยไม่ให้ layout พัง */
}

.container-tours-col {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Header --- */
.tour-col-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.tag-col-blue {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--navy-royal);
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-col-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--navy-royal);
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-lighter {
    color: #538cc6;
    font-style: italic;
}

.divider-col-gold {
    width: 70px;
    height: 4px;
    background: var(--gold-accent);
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.desc-col-main {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* --- Grid Layout (โครงสร้างหลัก) --- */
.adventure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* แบ่ง 2 คอลัมน์เท่ากัน */
    gap: 40px; /* ระยะห่างระหว่างคอลัมน์ */
    align-items: start; /* ให้เริ่มจากด้านบน */
}

/* --- Card Design --- */
.adventure-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05); /* เงาบางๆ */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* ลบ Opacity 0 ออก เพื่อให้แสดงผลทันที */
}

/* Hover Effect: เด้งขึ้นเล็กน้อย */
.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(33, 83, 135, 0.15);
}

/* Image Area */
.adv-img-box {
    width: 100%;
    height: 280px; /* กำหนดความสูงชัดเจน */
    position: relative;
    overflow: hidden;
}

.adv-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.adventure-card:hover .adv-img-box img {
    transform: scale(1.1); /* ซูมรูปตอนชี้ */
}

.adv-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--navy-royal);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.adv-badge.outline {
    background: #fff;
    color: var(--navy-royal);
}

/* Content Area */
.adv-content-box {
    padding: 35px;
}

.adv-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy-royal);
    margin-bottom: 15px;
}

.adv-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

/* Checklist */
.adv-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    text-align: left;
}

.adv-checklist li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start; /* ให้ไอคอนอยู่ตรงบรรทัดแรกเสมอ */
}

.check-icon-gold {
    color: var(--gold-accent);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 3px; /* ปรับตำแหน่งไอคอนนิดหน่อย */
}

/* Button */
.btn-adv-navy {
    display: block; /* ปุ่มเต็มความกว้าง */
    text-align: center;
    padding: 16px 30px;
    background-color: var(--navy-royal);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-adv-navy:hover {
    background-color: #1a3a5a;
    box-shadow: 0 10px 20px rgba(33, 83, 135, 0.3);
}

/* --- Responsive (มือถือ) --- */
@media (max-width: 768px) {
    .adventure-grid {
        grid-template-columns: 1fr; /* เรียงลงมาเป็นแนวตั้ง */
        gap: 40px;
    }
    .adv-img-box {
        height: 240px; /* ลดความสูงรูปในมือถือ */
    }
    .title-col-main {
        font-size: 2.2rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c1118f6 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    --royal-navy: #215387; /* สีหลัก */
    --gold-lux: #d4af37;
    --white-pure: #ffffff;
    --gray-bg: #fdfdfd;
}

.beach-night-section {
    width: 100%;
    padding: 100px 20px;
    background-color: var(--white-pure);
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.container-bn-cols {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Header --- */
.bn-col-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.tag-bn-blue {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--royal-navy);
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-bn-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-navy);
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-gradient-blue {
    color: #538cc6;
    font-style: italic;
}

.divider-bn-gold {
    width: 70px;
    height: 4px;
    background: var(--gold-lux);
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.desc-bn-main {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* --- Grid System --- */
.bn-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 คอลัมน์เท่ากัน */
    gap: 40px;
}

/* --- Card Design --- */
.bn-card-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05); /* เงาบางๆ */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.bn-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(33, 83, 135, 0.15); /* เงาสีน้ำเงินจางๆ */
}

/* Image Header */
.bn-img-holder {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.bn-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bn-card-item:hover .bn-img-holder img {
    transform: scale(1.1); /* ซูมรูปตอนชี้ */
}

.bn-floating-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--royal-navy);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
}

.bn-floating-tag.outline {
    background: #fff;
    color: var(--royal-navy);
}

/* Content Body */
.bn-card-body {
    padding: 35px;
}

.bn-city-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--royal-navy);
    text-align: center;
    margin-bottom: 30px;
}

/* Day/Night Row */
.bn-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Icon Box */
.bn-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sun-style {
    background-color: #fff8e1; /* พื้นหลังสีเหลืองอ่อน */
}

.moon-style {
    background-color: #f0f4f8; /* พื้นหลังสีฟ้าเทาอ่อน */
}

/* Text Group */
.bn-text-group h4 {
    font-size: 1.1rem;
    color: var(--royal-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.bn-text-group p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* เส้นคั่นกลาง */
.bn-separator {
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 25px 0;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .bn-grid-wrapper {
        grid-template-columns: 1fr; /* เรียงลงมา */
        gap: 40px;
    }
    .bn-img-holder {
        height: 220px;
    }
    .title-bn-main {
        font-size: 2.2rem;
    }
    .bn-card-body {
        padding: 25px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-212c8dd */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    --navy-core: #215387;
    --gold-core: #d4af37;
    --white-pure: #ffffff;
}

/* --- Section พื้นหลังขาวจั๊วะ --- */
.budget-white-section {
    width: 100%;
    padding: 100px 20px;
    background-color: var(--white-pure); /* ขาวสุดๆ ตามสั่ง */
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.container-budget-white {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Header --- */
.budget-white-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.tag-cost {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--navy-core);
    display: block;
    margin-bottom: 15px;
}

.title-cost-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--navy-core);
    margin-bottom: 25px;
}

.text-highlight-blue {
    color: #4a80b8;
    font-style: italic;
}

.divider-cost-gold {
    width: 70px;
    height: 4px;
    background: var(--gold-core);
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.desc-cost-main {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* --- Grid System --- */
.cost-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

/* --- Card Design --- */
.cost-card-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    /* เพิ่มเงาให้ชัดขึ้น เพราะพื้นหลังเว็บเป็นสีขาว เดี๋ยวการ์ดจม */
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
    border: 1px solid #f0f0f0;
    position: relative;
    transition: transform 0.3s ease;
}

.cost-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(33, 83, 135, 0.2);
}

/* Highlight Khao Lak (ขอบทอง) */
.border-highlight {
    border: 2px solid var(--gold-core);
}

/* Badge: Best Value */
.badge-value {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold-core);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    z-index: 5;
}

/* Card Header Colors */
.cost-header-box {
    padding: 30px 20px;
    text-align: center;
    color: #fff;
}

.phuket-dark {
    background: #2c3e50; /* สีเทาเข้มเกือบดำ */
}

.khaolak-navy {
    background: var(--navy-core); /* สีน้ำเงินหลัก */
}

.cost-header-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 5px 0;
}

.cost-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Card Body */
.cost-body-box {
    padding: 30px;
    text-align: center;
}

/* --- Coin Visuals --- */
.visual-cost-group {
    margin-bottom: 25px;
}

.label-visual {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stack-coins {
    font-size: 2rem;
    margin-bottom: 5px;
    letter-spacing: 5px;
}

.coin {
    font-style: normal;
}

.coin-fade {
    opacity: 0.2; /* จางลงเพื่อให้เห็นว่าประหยัด */
    filter: grayscale(100%);
}

.value-text {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

/* Divider */
.sep-line-light {
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 25px 0;
}

/* --- Example Box --- */
.example-case-box {
    background: #fafafa; /* เทาจางๆ */
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
}

.example-case-box.blue-tint {
    background: #f0f8ff; /* ฟ้าจางๆ สำหรับ Khao Lak */
    border: 1px solid #dceeff;
    color: var(--navy-core);
}

.case-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.case-label strong {
    color: var(--navy-core);
    font-size: 1.1rem;
}

.case-result {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #444;
}

.case-result strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--navy-core);
}

/* Responsive */
@media (max-width: 768px) {
    .cost-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5439921 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    --white-pure: #ffffff; /* ขาวสุดๆ */
    --navy-deep: #215387;
    --gold-accent: #d4af37;
    --text-dark: #333333;
    --gray-border: #e5e5e5;
}

/* --- Main Section พื้นหลังขาวจั๊วะ --- */
.verdict-pure-white-section {
    width: 100%;
    padding: 100px 20px;
    background-color: var(--white-pure); /* Setting สำคัญคือตรงนี้ครับ */
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.container-verdict-white {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Header --- */
.verdict-header-white {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tag-verdict-gold {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 15px;
}

.title-verdict-navy {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--navy-deep);
    margin-bottom: 25px;
    line-height: 1.2;
}

.divider-verdict-gold {
    width: 70px;
    height: 4px;
    background: var(--gold-accent);
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.desc-verdict-dark {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555; /* สีเทาเข้มบนพื้นขาว อ่านง่าย */
    font-weight: 300;
}

/* --- Grid --- */
.verdict-grid-white {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* --- Card Design --- */
.verdict-card-white {
    background: var(--white-pure);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-border); /* เส้นขอบบางๆ เพื่อแยกจากพื้นหลัง */
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); /* เงาฟุ้งๆ ให้ดูลอย */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verdict-card-white:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(33, 83, 135, 0.15); /* เงาสีน้ำเงินจางๆ ตอนชี้ */
}

/* Highlight Card (ขอบบนสีทอง) */
.border-gold-top {
    border-top: 5px solid var(--gold-accent);
}

/* Card Parts */
.card-top-navy {
    background-color: var(--navy-deep);
    padding: 25px;
    text-align: center;
}

.card-top-navy h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
    font-weight: 400;
}

.card-top-navy h3 strong {
    font-weight: 700;
    color: var(--gold-accent);
    font-style: italic;
}

.card-body-white {
    padding: 35px;
}

/* List */
.verdict-list-dark {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.verdict-list-dark li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.icon-gold {
    margin-right: 15px;
    font-size: 1.3rem;
}

.verdict-list-dark strong {
    color: var(--navy-deep);
    font-weight: 700;
    margin-right: 5px;
}

/* Footer */
.card-footer-gray {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

/* --- Final CTA --- */
.final-cta-white {
    text-align: center;
}

.final-cta-white p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 25px;
    font-style: italic;
}

.btn-navy-gold {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--navy-deep);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(33, 83, 135, 0.2);
}

.btn-navy-gold:hover {
    background-color: #1a3a5a;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(33, 83, 135, 0.35);
}

/* --- Animations --- */
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.slide-in-left { animation: slideInLeft 0.8s ease-out forwards; animation-delay: 0.2s; }
.slide-in-right { animation: slideInRight 0.8s ease-out forwards; animation-delay: 0.4s; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* --- Responsive --- */
@media (max-width: 768px) {
    .verdict-grid-white {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .title-verdict-navy {
        font-size: 2.5rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-32f131f */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    --navy-core: #215387;
    --gold-core: #d4af37;
    --white-pure: #ffffff;
    --border-light: #e0e0e0;
}

/* --- Section พื้นหลังขาว --- */
.faq-white-section {
    width: 100%;
    padding: 100px 20px;
    background-color: var(--white-pure);
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.container-faq {
    max-width: 800px; /* บีบให้แคบลง เพื่อให้อ่าน FAQ ง่าย */
    margin: 0 auto;
}

/* --- Header --- */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.tag-faq {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--navy-core);
    display: block;
    margin-bottom: 15px;
}

.title-faq-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--navy-core);
    margin-bottom: 25px;
}

.divider-faq-gold {
    width: 60px;
    height: 4px;
    background: var(--gold-core);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- FAQ Accordion Design --- */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--navy-core); /* ชี้แล้วขอบเปลี่ยนสี */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ส่วนคำถาม (Summary) */
.faq-question {
    list-style: none; /* ซ่อนลูกศร default ของ browser */
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-core);
    transition: background-color 0.2s ease;
}

/* ซ่อนลูกศร default ของ Chrome/Safari */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background-color: #fcfcfc;
}

/* ไอคอน + */
.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-core);
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* เมื่อเปิดคำถาม (Open State) */
.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* หมุนเป็นกากบาท */
}

.faq-item[open] .faq-question {
    background-color: #f9fbfd; /* เปลี่ยนสีพื้นหลังหัวข้อตอนเปิด */
    border-bottom: 1px solid #f0f0f0;
    color: var(--navy-core);
}

/* ส่วนคำตอบ (Answer) */
.faq-answer {
    padding: 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
    background-color: #fff;
    /* Animation การเปิดเล็กน้อย */
    animation: slideDown 0.3s ease-out;
}

.faq-answer strong {
    color: var(--navy-core);
    font-weight: 600;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .title-faq-main {
        font-size: 2.2rem;
    }
    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }
}/* End custom CSS */