/* การตั้งค่าพื้นฐาน */
:root {
    --primary-color: #0A2E5B; /* น้ำเงินเข้ม */
    --secondary-color: #FFC300; /* ทอง */
    --text-light: #f4f4f4;
    --text-dark: #333;
    --font-prompt: 'Prompt', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-prompt);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- Header & Navigation --- */
.header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color); /* สีทอง */
    text-decoration: none;
    letter-spacing: 1px;
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: var(--secondary-color); /* Hover เป็นสีทอง */
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background: var(--secondary-color); /* สีทอง */
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(10, 46, 91, 0.9), rgba(10, 46, 91, 0.9)), url('cover.png') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light); /* หัวข้อสีขาวบนพื้นหลังเข้ม */
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}


/* --- Services Overview --- */
.services-overview {
    padding: 60px 0;
    text-align: center;
}

.services-overview h2 {
    margin-bottom: 3rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid var(--secondary-color); /* เส้นสีทองด้านบน */
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--secondary-color); /* ไอคอนสีทอง */
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

/* --- Call to Action --- */
.cta-contact {
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 40px 0;
    margin-top: 30px;
}

/* --- Footer --- */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer .contact-info {
    margin-top: 10px;
}

.footer .contact-info i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* ส่วนปรับปรุงโครงสร้างทั่วไป */
.page-title-section {
    background-color: #f4f4f4; /* สีพื้นหลังสว่างสำหรับหน้าย่อย */
    padding: 60px 0 30px;
    text-align: center;
}
.page-title-section h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
}


/* --- Services Page Styling --- */
.service-detail-section {
    padding: 60px 0;
}
.dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.dark-bg h2, .dark-bg .gold-icon, .dark-bg .price-amount-large {
    color: var(--secondary-color);
}
.service-detail-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}
.service-description {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-options {
    display: flex;
    flex-wrap: wrap; /* รองรับการจัดวางบนมือถือ */
    gap: 20px;
    justify-content: center;
}
.option-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 45%; /* ให้ใช้พื้นที่เกือบครึ่ง */
    min-width: 300px; /* ขั้นต่ำ 300px */
}
.option-box h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.option-box ul {
    list-style: none;
    padding-left: 0;
}
.option-box li {
    padding: 5px 0;
    color: var(--text-dark);
}
.option-box .fa-check-circle {
    color: #4CAF50; /* สีเขียวสำหรับ check mark */
    margin-right: 8px;
}
.price-tag {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    text-align: right;
}
.price-amount {
    color: var(--primary-color);
    font-size: 1.3rem;
}
.price-amount-large {
    font-size: 2rem;
    font-weight: 700;
}
.note {
    font-size: 0.85rem;
    color: #888;
    text-align: right;
    margin-top: 5px;
}
.full-width {
    flex-basis: 100%; /* ใช้พื้นที่เต็มความกว้างสำหรับรายละเอียดเพิ่มเติม */
}
.align-center {
    text-align: center !important;
}


/* --- Two Services Grid Section --- */
.two-services-grid {
    padding: 60px 0;
    background-color: #f4f4f4;
}
.two-services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.grid-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.grid-card .sub-heading {
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 5px;
}


/* --- Contact Page Styling --- */
.contact-section {
    padding: 60px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* 2 คอลัมน์สำหรับข้อมูลและฟอร์ม */
    gap: 50px;
}

.contact-details h2 {
    color: var(--secondary-color);
}
.detail-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.detail-item i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-form-container h2 {
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.map-embed {
    margin-top: 50px;
    height: 400px;
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- About Page Styling --- */
.about-section {
    padding: 60px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* จัดวางข้อความกับรูปภาพ */
    gap: 50px;
    align-items: center;
}
.about-text h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.about-text p {
    margin-bottom: 15px;
}
.about-text p:last-of-type {
    margin-bottom: 30px;
}


/* --- Responsive Mobile View (หน้าจอขนาดเล็กกว่า 768px) --- */
@media (max-width: 768px) {
    /* Header & Navigation */
    .header .container {
        flex-direction: column; /* เรียง Logo และ Nav ลงมา */
        text-align: center;
    }
    .nav ul {
        flex-direction: column; /* เมนูเรียงลง */
        padding-top: 10px;
    }
    .nav ul li {
        margin: 5px 0;
    }
    .nav ul li a {
        padding: 0.5rem;
    }

    /* Hero */
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 1.8rem;
    }

    /* Services & Cards */
    .service-cards {
        grid-template-columns: 1fr; /* แสดง Card เพียง 1 คอลัมน์ */
    }
    .option-box, .full-width {
        flex-basis: 100%; /* ใช้เต็มความกว้าง */
    }
    .price-tag, .note {
        text-align: left; /* จัดราคาและโน้ตให้อยู่ทางซ้ายเมื่ออยู่บนมือถือ */
    }
    
    /* Contact & About */
    .contact-grid, .about-grid {
        grid-template-columns: 1fr; /* แสดง 1 คอลัมน์บนมือถือ */
        gap: 30px;
    }
    .about-image {
        order: -1; /* ย้ายรูปภาพไปอยู่ด้านบนในหน้า About */
    }
    .map-embed {
        height: 300px;
    }
}