@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@300;400;700&family=Noto+Sans+SC:wght@400;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");



        /* --- Themes --- */
        :root {
            --army-green: #354E35;
            --dark-green: #243324;
            --accent-gold: #FFD700;
            --text-light: #f8f9fa;
        }

        body {
            /* เพิ่ม Font ภาษาจีน (Noto Sans SC) */
            font-family: 'Roboto', 'Noto Sans SC', sans-serif;
            color: #333;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', 'Noto Sans SC', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- Utilities --- */
        .bg-army { background-color: var(--army-green); }
        .text-army { color: var(--army-green); }
        
        /* Language Toggle Helper Classes */
        /* .lang-cn จะถูกซ่อนด้วย JS ในตอนเริ่มต้น */
        
        /* --- Navigation --- */
        .navbar {
            background-color: var(--dark-green);
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: white !important;
        }
        .nav-link {
            color: rgba(255,255,255,0.8) !important;
            font-weight: 500;
            margin-right: 15px;
            transition: 0.3s;
            cursor: pointer;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-gold) !important;
        }
        
        /* Language Dropdown */
        .lang-btn {
            border: 1px solid rgba(255,255,255,0.3);
            padding: 5px 15px;
            border-radius: 20px;
        }
        .lang-btn:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold) !important;
        }

        /* Booking Button */
        .btn-booking {
            background-color: var(--accent-gold);
            color: var(--dark-green);
            font-weight: 800;
            padding: 10px 25px;
            border-radius: 0;
            text-transform: uppercase;
            border: 2px solid var(--accent-gold);
            transition: all 0.3s ease;
        }
        .btn-booking:hover {
            background-color: transparent;
            color: var(--accent-gold);
            border: 2px solid #f3c409;

        }

        

        /* --- Sections General --- */
        section { padding: 80px 0; }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--army-green);
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--army-green);
            margin: 15px auto 0;
        }

        /* Service Cards */
        .service-card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .service-card:hover { transform: translateY(-10px); }
        .service-card .card-header {
            background-color: var(--army-green);
            color: white;
            font-weight: bold;
            border-radius: 0;
        }

        /* Gallery */
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            margin-bottom: 24px;
            border-radius: 4px;
            transition: opacity 0.3s;
        }
        .gallery-img:hover { opacity: 0.8; }

        footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 60px 0 20px;
        }


   /*booking page*/
   .breadcrumb-item a {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: rgba(255,255,255,0.7);
        }

        /* --- Form Styles --- */
        .booking-card {
            border: none;
            border-top: 5px solid var(--army-green);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .form-section-title {
            color: var(--army-green);
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 25px;
            margin-top: 15px;
        }

        .form-label {
            font-weight: 500;
            color: var(--dark-green);
        }
        
        .form-control, .form-select {
            border-radius: 4px;
            padding: 12px;
            border: 1px solid #ced4da;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--army-green);
            box-shadow: 0 0 0 0.25rem rgba(53, 78, 53, 0.25);
        }

        .btn-submit {
            background-color: var(--army-green);
            color: white;
            font-family: 'Oswald', 'Noto Sans SC', sans-serif;
            font-size: 1.25rem;
            padding: 15px;
            width: 100%;
            transition: 0.3s;
            border: none;
        }
        .btn-submit:hover {
            background-color: var(--dark-green);
            color: var(--accent-gold);
        }



/* --- Elfsight-style Google Reviews --- */
.google-review-card {
    background: #fff;
    border-radius: 16px; /* มุมโค้งมน */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* เงานุ่มๆ */
    padding: 24px;
    height: 100%;
    border: none;
    transition: transform 0.3s ease;
    position: relative;
}

.google-review-card:hover {
    transform: translateY(-5px); /* ลอยขึ้นเมื่อเอาเมาส์ชี้ */
}

.reviewer-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.reviewer-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.google-icon-corner {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
}

.star-rating {
    color: #FFB400; /* สีทอง Google */
    font-size: 14px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* ตัดคำที่บรรทัดที่ 4 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* --- สไตล์ปุ่มกด Google Reviews (วงกลมเขียว) --- */
#googleReviewsCarousel .carousel-control-prev, 
#googleReviewsCarousel .carousel-control-next {
    width: 40px;           /* ความกว้าง */
    height: 40px;          /* ความสูง */
    background-color: rgba(53, 78, 53, 0.8) !important; /* สีเขียวทหาร โปร่งแสงนิดๆ */
    border-radius: 50%;    /* ทำเป็นวงกลม */
    top: 50%;              /* ให้อยู่กึ่งกลางแนวตั้ง */
    transform: translateY(-50%); /* จัดกึ่งกลางเป๊ะๆ */
    opacity: 1;            /* ไม่ให้จาง */
    border: none;          /* ไม่มีขอบ */
}

/* ปรับตำแหน่งซ้าย-ขวา */
#googleReviewsCarousel .carousel-control-prev { left: 0px; }   /* ชิดซ้าย */
#googleReviewsCarousel .carousel-control-next { right: 0px; }  /* ชิดขวา */

/* ทำให้ตัวลูกศรข้างในเป็นสีขาว (มาตรฐาน) */
#googleReviewsCarousel .carousel-control-prev-icon, 
#googleReviewsCarousel .carousel-control-next-icon {
    filter: none !important; /* ยกเลิกสีดำ */
    width: 1.2rem;
    height: 1.2rem;
}

/* เพิ่ม Effect ตอนเอาเมาส์ชี้ */
#googleReviewsCarousel .carousel-control-prev:hover, 
#googleReviewsCarousel .carousel-control-next:hover {
    background-color: rgba(36, 51, 36, 1) !important; /* เข้มขึ้น */
}