.elementor-12804 .elementor-element.elementor-element-fe0f657{--display:flex;--z-index:0;}.elementor-12804 .elementor-element.elementor-element-fe0f657.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-12804 .elementor-element.elementor-element-fe0f657{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-dc00e31 *//* --- 1. CORE SETTINGS & VARIABLES --- */
:root {
    /* Logo Colors Palette */
    --brand-blue: #006585;     /* สีฟ้าเข้ม (Deep Ocean) ตามโลโก้ */
    --brand-dark: #003647;     /* สีน้ำเงินเข้มเกือบดำ สำหรับหัวข้อ */
    --brand-gold: #c29b40;     /* สีทอง (Sand Gold) ตัดให้ดูแพง */
    --brand-light: #e6f2f7;    /* สีฟ้าอ่อนจางๆ สำหรับพื้นหลังตาราง */
    
    --text-main: #2D3436;
    --text-light: #636E72;
    --bg-page: #F4F8FA;        /* พื้นหลังหน้าเว็บอมฟ้าจางๆ */
    --white: #FFFFFF;
    
    --card-radius: 16px;
    --shadow-card: 0 10px 30px rgba(0, 75, 110, 0.08); /* เงาสีน้ำเงินจางๆ */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- 2. HERO SECTION --- */
.hero-header {
    position: relative;
    height: 80vh; 
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* รูปวิวเรือหางยาว */
    background-image: url('https://gotravelphuket.com/wp-content/uploads/2022/11/IMG_7003-jpg.webp');
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
}

/* Gradient Overlay: ปรับให้ไล่สีน้ำเงินโลโก้ */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 54, 71, 0.3), rgba(0, 101, 133, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.brand-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* ปุ่มหลักเปลี่ยนเป็นสีฟ้าโลโก้ */
.btn-primary {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 101, 133, 0.4);
    border: 2px solid var(--white); /* เพิ่มขอบขาวให้เด่น */
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--white);
    color: var(--brand-blue);
}

/* --- 3. CONTAINER & CARDS --- */
.container {
    max-width: 1000px;
    margin: -60px auto 50px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.intro-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    margin-bottom: 40px;
    border-top: 5px solid var(--brand-blue); /* เส้นคาดสีโลโก้ */
}

.intro-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-dark);
    font-size: 2rem;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--brand-gold);
    margin: 0 auto 20px auto;
}

/* --- 4. TABLE DESIGN --- */
.table-section {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
    overflow: hidden;
}

.table-header {
    margin-bottom: 20px;
    border-left: 4px solid var(--brand-blue);
    padding-left: 15px;
}

.table-header h3 {
    color: var(--brand-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.swipe-hint {
    font-size: 0.85rem;
    color: var(--brand-blue);
    opacity: 0.8;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th {
    text-align: left;
    padding: 15px;
    background: var(--brand-light); /* ใช้สีฟ้าอ่อน */
    color: var(--brand-blue);       /* ตัวหนังสือสีโลโก้ */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 8px;
}

td {
    padding: 18px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    color: var(--text-main);
}

tr:last-child td { border-bottom: none; }

.boat-icon {
    color: var(--brand-gold);
    margin-right: 8px;
}

/* --- 5. GRID CARDS --- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 101, 133, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--brand-blue);
}

.card-icon-circle {
    width: 55px; height: 55px;
    background: var(--brand-light);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-link {
    display: inline-block;
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--brand-gold);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.cta-link:hover {
    color: var(--brand-gold);
}

/* --- 6. FOOTER --- */
footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 40px;
    border-top: 1px solid #e1e8ed;
}

/* --- 7. ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .hero-header { height: 75vh; }
    .container { margin-top: -50px; padding: 0 15px; }
    .intro-card { padding: 30px 20px; }
    .intro-card h2 { font-size: 1.6rem; }
    .btn-primary { width: 100%; padding: 15px 20px; }
    
    td, th { padding: 12px 10px; font-size: 0.9rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-59f4ed0 *//* --- PART 2: 5-STEP GUIDE STYLES --- */

.guide-section {
    padding: 80px 0;
    position: relative;
}

/* Header Styling */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sub-badge {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.15); /* Gold background faded */
    color: var(--brand-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--brand-blue), var(--brand-gold));
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.header-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Grid Layout for Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
    gap: 30px;
}

/* Individual Step Card */
.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 101, 133, 0.1);
    border-color: rgba(197, 160, 89, 0.3);
}

/* Large Number Styling */
.step-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(0, 101, 133, 0.03); /* จางมากๆ เป็น Background */
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

/* Icon Styling */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-blue), #004e66);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 101, 133, 0.25);
    z-index: 1;
    position: relative;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* List Styling inside Card */
.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.step-list li i {
    color: var(--brand-gold);
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.8rem;
}

/* HIGHLIGHT CARD (Step 5) */
.step-highlight {
    background: linear-gradient(to bottom right, #006585, #00455c); /* พื้นหลังสีน้ำเงินแบรนด์ */
    color: var(--white);
    grid-column: span 1; /* ถ้าอยากให้เต็มจอใส่ span 2 หรือ 3 ได้ */
}

/* ปรับ step 5 ให้เต็มจอใน Desktop ถ้าต้องการ (Optional) */
@media (min-width: 1024px) {
    .step-highlight {
        grid-column: span 2; /* ขยายให้กว้างขึ้น */
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    
    .step-highlight .step-icon {
        margin-bottom: 0;
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

.step-highlight .step-number {
    color: rgba(255, 255, 255, 0.05); /* เลขสีขาวจางๆ */
}

.step-highlight h3, 
.step-highlight p, 
.step-highlight strong {
    color: var(--white); /* บังคับตัวหนังสือขาว */
}

.step-highlight .step-icon {
    background: var(--white);
    color: var(--brand-blue); /* ไอคอนสีฟ้า บนพื้นขาว */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.link-gold {
    display: inline-block;
    margin-top: 15px;
    color: var(--brand-gold);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--brand-gold);
    transition: all 0.3s;
}

.link-gold:hover {
    color: #fff;
    border-color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .step-highlight {
        grid-column: span 1; /* มือถือกลับมาเป็น 1 คอลัมน์ */
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e0b2d5c *//* --- PART 3: WHY US STYLES --- */

.why-us-section {
    padding: 80px 0;
    background-color: var(--white); /* พื้นหลังขาวสะอาด */
    border-top: 1px solid rgba(0,0,0,0.03);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Card Design */
.why-card {
    background: var(--white);
    padding: 0 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Hover Effect: ยกการ์ดขึ้นเล็กน้อย */
.why-card:hover {
    transform: translateY(-5px);
}

/* Icon Design: วงกลมไล่สี */
.why-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px auto;
    background: linear-gradient(135deg, var(--brand-light), #eaf6fa); /* พื้นหลังสีฟ้าจางๆ */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-blue); /* สีไอคอนหลัก */
    box-shadow: 0 10px 25px rgba(0, 101, 133, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 101, 133, 0.05);
}

/* Hover Icon: เปลี่ยนสีเมื่อเอาเมาส์ชี้ */
.why-card:hover .why-icon-wrapper {
    background: var(--brand-blue); /* พื้นหลังเปลี่ยนเป็นสีน้ำเงินเข้ม */
    color: var(--brand-gold);      /* ไอคอนเปลี่ยนเป็นสีทอง */
    transform: rotateY(180deg);    /* หมุนไอคอนเล่นๆ */
    box-shadow: 0 15px 30px rgba(0, 101, 133, 0.2);
}

/* ป้องกันไอคอนข้างในหมุนกลับหัวตอน rotateY */
.why-card:hover .why-icon-wrapper i {
    transform: rotateY(-180deg);
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* เส้นขีดเล็กๆ ใต้หัวข้อ */
.why-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--brand-gold);
    opacity: 0.5;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.why-card strong {
    color: var(--brand-blue);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .why-grid {
        gap: 50px; /* เพิ่มระยะห่างในมือถือให้อ่านง่าย */
    }
    
    .why-card {
        padding: 0 10px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ecf5393 *//* --- PART 4: FAQ STYLES --- */

.faq-section {
    padding: 60px 0 100px 0;
}

.accordion-wrapper {
    max-width: 800px; /* บีบให้แคบลงหน่อยเพื่อให้อ่านง่าย */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 101, 133, 0.08);
    border-color: rgba(0, 101, 133, 0.1);
}

/* ซ่อน Checkbox input */
.faq-item input {
    display: none;
}

/* ส่วนหัวข้อคำถาม (Label) */
.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: var(--white);
    user-select: none; /* ห้ามลากคลุมดำ */
}

.faq-question {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 1.05rem;
    transition: color 0.3s;
}

/* ปุ่ม + ด้านขวา */
.faq-toggle {
    width: 30px;
    height: 30px;
    background: #f0f7fa; /* สีฟ้าจางมากๆ */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

/* ส่วนคำตอบ (ซ่อนไว้ก่อน) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); /* Animation นุ่มๆ */
    background: #fbfbfb;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    font-size: 0.95rem;
}

/* --- STATE: CHECKED (เมื่อกดเปิด) --- */

/* 1. เปลี่ยนสีหัวข้อ */
.faq-item input:checked + .faq-label .faq-question {
    color: var(--brand-blue);
}

/* 2. หมุนไอคอนและเปลี่ยนสี */
.faq-item input:checked + .faq-label .faq-toggle {
    transform: rotate(135deg); /* หมุน + เป็น x */
    background: var(--brand-blue);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 101, 133, 0.3);
}

/* 3. สไลด์คำตอบลงมา */
.faq-item input:checked ~ .faq-answer {
    max-height: 500px; /* ความสูงที่มากพอให้เนื้อหาโชว์หมด */
    transition: max-height 0.5s ease-in-out;
}


/* --- FINAL CTA SECTION --- */
.final-cta {
    background: linear-gradient(135deg, var(--brand-blue), #00455c);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 101, 133, 0.25);
}

/* ลวดลายพื้นหลังจางๆ (Optional) */
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.final-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.btn-cta-gold {
    background-color: var(--brand-gold);
    color: var(--white);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-cta-gold:hover {
    background-color: transparent;
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .accordion-wrapper {
        width: 100%;
    }
    
    .final-cta {
        padding: 50px 20px;
        border-radius: 10px;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
}/* End custom CSS */