/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5632;
    --primary-light: #2d8a4e;
    --primary-dark: #0e3d22;
    --accent: #c8a45c;
    --accent-light: #dfc07a;
    --text: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,86,50,0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 42px;
    font-size: 17px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .logo-text,
.navbar.scrolled .logo-sub {
    color: var(--text);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--primary);
}

.navbar.scrolled .lang-btn {
    color: var(--text);
}

.navbar.scrolled .social-icons-nav a {
    color: var(--text);
}

.navbar.scrolled .hamburger span {
    background: var(--text);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 0 0 330px;
    max-width: 330px;
}

.logo-img {
    height: 62px;
    width: auto;
    display: block;
}

.logo-name {
    display: block;
    font-size: clamp(22px, 1.4vw, 26px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2px;
    line-height: 1.15;
    max-width: 280px;
    min-width: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
}

.navbar.scrolled .logo-sub {
    color: var(--text-light);
}

.navbar.scrolled .logo-name {
    color: var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.nav-links a {
    color: #fff;
    padding: 6px 8px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    position: relative;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
    max-width: 132px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-light);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 160px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    padding: 8px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text) !important;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary) !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.social-icons-nav {
    display: flex;
    gap: 12px;
}

.social-icons-nav a {
    color: #fff;
    font-size: 18px;
}

.social-icons-nav a:hover {
    color: var(--accent-light);
}

/* Make WhatsApp icon in navbar more prominent */
.social-icons-nav a[title="WhatsApp"] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: #25d366;
    border: 2px solid #25d366;
    font-size: 25px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.55);
}

.social-icons-nav a[title="WhatsApp"]:hover {
    transform: scale(1.1);
    color: #fff !important;
    background: #20c85f;
    border-color: #20c85f;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.7);
}

.social-icons-nav a[title="Email"] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: #2f3542;
    border: 2px solid #2f3542;
    font-size: 21px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.social-icons-nav a[title="Email"]:hover {
    transform: scale(1.08);
    color: #fff !important;
    background: #3b4353;
    border-color: #3b4353;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 9px 17px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.navbar.scrolled .lang-btn {
    border-color: rgba(0,0,0,0.2);
}

.lang-btn:hover {
    border-color: var(--accent);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    min-width: 150px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 8px 18px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}

.lang-dropdown li:hover,
.lang-dropdown li.active {
    background: var(--bg-light);
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

/* Home page: keep a white top band and start hero below navbar */
body.home-solid-nav {
    --home-nav-offset: 94px;
}

body.home-solid-nav .navbar,
body.home-solid-nav .navbar.scrolled {
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.home-solid-nav .hero {
    margin-top: var(--home-nav-offset);
    height: calc(100vh - var(--home-nav-offset));
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== Advantages ===== */
.advantages {
    padding: 80px 0;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.advantage-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== Destinations ===== */
.destinations {
    padding: 80px 0;
}

.destination-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.destination-card:last-child {
    margin-bottom: 0;
}

.destination-card.reverse {
    direction: rtl;
}

.destination-card.reverse > * {
    direction: ltr;
}

.destination-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.destination-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img img {
    transform: scale(1.05);
}

.destination-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.destination-info p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
}

/* ===== Section Title ===== */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #f5a623;
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-phone {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.cta-phone i {
    margin-right: 10px;
    color: var(--accent-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-brand-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-light);
    padding-left: 4px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.contact-list li i {
    margin-top: 4px;
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    opacity: 0.6;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    display: none !important;
}

.whatsapp-float a {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ===== Floating Contact Widget ===== */
.contact-widget {
    position: fixed;
    right: 18px;
    bottom: 122px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.contact-item,
.contact-toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.contact-item:hover,
.contact-toggle:hover {
    transform: translateY(-2px);
}

.contact-item.whatsapp { background: #25d366; }
.contact-item.email { background: #ff4d5a; }
.contact-item.wechat { background: #52c41a; }
.contact-item.phone { background: #20d38c; }
.contact-toggle { background: #59c739; }

.contact-widget:not(.expanded) .contact-item {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(0.92);
}

.contact-widget.expanded .contact-item {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Stagger animation when expanding */
.contact-widget.expanded .contact-item:nth-child(1) { transition-delay: 0.03s; }
.contact-widget.expanded .contact-item:nth-child(2) { transition-delay: 0.06s; }
.contact-widget.expanded .contact-item:nth-child(3) { transition-delay: 0.09s; }
.contact-widget.expanded .contact-item:nth-child(4) { transition-delay: 0.12s; }

.contact-widget:not(.expanded) .contact-item:nth-child(1),
.contact-widget:not(.expanded) .contact-item:nth-child(2),
.contact-widget:not(.expanded) .contact-item:nth-child(3),
.contact-widget:not(.expanded) .contact-item:nth-child(4) {
    transition-delay: 0s;
}

.contact-toggle i {
    transition: transform 0.25s ease;
}

.contact-widget.expanded .contact-toggle i {
    transform: rotate(90deg);
}

.wechat-qr-panel {
    position: fixed;
    right: 86px;
    bottom: 242px;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    padding: 10px;
    text-align: center;
    z-index: 1201;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.wechat-qr-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wechat-qr-panel img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
}

.wechat-qr-panel span {
    display: block;
    font-size: 13px;
    color: #555;
}

/* ===== Floating Language Widget ===== */
.lang-floating-widget {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 1200;
}

.lang-floating-btn {
    min-width: 128px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.lang-floating-btn img,
.lang-floating-menu img {
    width: 24px;
    height: 16px;
    object-fit: cover;
}

.lang-floating-btn span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.lang-floating-btn i {
    margin-left: auto;
    color: #666;
}

.lang-floating-menu {
    position: absolute;
    right: 0;
    bottom: 48px;
    list-style: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
    min-width: 128px;
    display: none;
}

.lang-floating-menu.show {
    display: block;
}

.lang-floating-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
}

.lang-floating-menu li:hover,
.lang-floating-menu li.active {
    background: #f3f5f7;
}

/* ===== Page Header (for sub pages) ===== */
.page-header {
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.about-hero,
.contact-hero {
    background-image: url('images/main-pic.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Use different crop areas from the same image */
.about-hero {
    background-position: center 32%;
}

.contact-hero {
    background-position: center 68%;
}

.page-header-plain {
    min-height: auto;
    height: auto;
    background: #fff;
    color: var(--text);
    padding: 140px 0 40px;
    border-bottom: 1px solid #eee;
}

.page-header-plain .page-header-overlay {
    display: none;
}

.page-header-plain .page-header-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.page-header-plain h1 {
    color: #222;
    letter-spacing: 1px;
    margin: 0;
}

/* ===== About Page ===== */
.about-section {
    padding: 80px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-align: center;
}

.about-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

.why-choose {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 18px;
}

.why-card h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card-body {
    padding: 20px;
    text-align: center;
}

.service-card-body h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.service-card-body p {
    font-size: 13px;
    color: var(--text-light);
}

.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 14px;
}

.feature-item h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== Contact Page ===== */
.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.contact-link-card {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.contact-wechat-card {
    width: 100%;
    border: none;
    font: inherit;
    cursor: pointer;
}

.contact-wechat-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.contact-wechat-popup.show {
    display: block;
}

.contact-wechat-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.contact-wechat-popup-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(320px, calc(100% - 32px));
    background: #fff;
    border-radius: 12px;
    padding: 16px 16px 14px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.contact-wechat-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 16px;
}

.contact-wechat-popup img {
    width: 100%;
    max-width: 250px;
    margin: 8px auto 10px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.contact-wechat-popup p {
    font-size: 14px;
    color: #555;
}

.contact-form-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,50,0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.contact-social .whatsapp-link {
    background: #25d366;
    color: #fff;
}

.contact-social .email-link {
    background: var(--primary);
    color: #fff;
}

.contact-social .facebook-link {
    background: #1877f2;
    color: #fff;
}

.contact-social a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ===== Destination Detail Pages ===== */
.dest-overview {
    padding: 80px 0;
}

.dest-overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.dest-overview-content h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-align: center;
}

.dest-overview-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 2;
    text-align: justify;
}

.top-spots {
    padding: 80px 0;
    background: var(--bg-light);
}

.top-spots .container {
    max-width: 1320px;
}

.top-spots h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.spot-card {
    display: grid;
    grid-template-columns: 580px 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 50px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.spot-card:hover {
    box-shadow: var(--shadow-lg);
}

.spot-card:last-child {
    margin-bottom: 0;
}

.spot-img {
    height: 390px;
    overflow: hidden;
}

.spot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.spot-card:hover .spot-img img {
    transform: scale(1.05);
}

.spot-info {
    padding: 24px 24px 24px 0;
}

.spot-rank {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.spot-info h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.spot-info .spot-subtitle {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 16px;
}

.spot-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 12px;
}

.spot-info p:last-of-type {
    margin-bottom: 0;
}

.spot-notes {
    margin: 8px 0 14px 18px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.9;
}

.spot-notes li {
    margin-bottom: 4px;
}

/* ===== Travel Guide ===== */
.guide-list-section {
    padding: 56px 0 80px;
}

.guide-list {
    display: grid;
    gap: 28px;
}

.guide-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.guide-cover img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}

.guide-content {
    padding: 24px 24px 24px 0;
}

.guide-content h2 {
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #222;
}

.guide-meta {
    color: var(--text-lighter);
    font-size: 13px;
    margin-bottom: 12px;
}

.guide-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 14px;
}

.guide-readmore {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.guide-detail-section {
    padding: 40px 0 80px;
}

.guide-detail {
    max-width: 900px;
    margin: 0 auto;
}

.guide-detail-cover {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
}

.guide-detail-inline-img {
    width: 100%;
    border-radius: 10px;
    margin: 18px 0 22px;
}

.guide-detail h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin: 24px 0 10px;
}

.guide-detail p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.95;
    margin-bottom: 14px;
}

.guide-detail ul {
    margin: 6px 0 16px 22px;
    color: var(--text-light);
}

.guide-detail li {
    margin-bottom: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .spot-card {
        grid-template-columns: 500px 1fr;
    }
    .guide-card {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: 8px;
    }

    .logo {
        min-width: 0;
        flex: 1 1 auto;
    }

    .logo-img {
        height: 40px;
    }

    .logo-name {
        font-size: clamp(14px, 4.4vw, 22px);
        max-width: none;
        min-width: 0;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .lang-switcher {
        display: none;
    }

    .nav-right {
        flex-shrink: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--text) !important;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #eee;
        display: block;
        max-width: none;
        white-space: normal;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .hamburger {
        display: flex;
    }

    .social-icons-nav {
        display: none;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        grid-template-columns: 1fr;
    }

    .destination-card.reverse {
        direction: ltr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .spot-card {
        grid-template-columns: 1fr;
    }

    .spot-info {
        padding: 20px;
    }

    .guide-card {
        grid-template-columns: 1fr;
    }

    .guide-content {
        padding: 20px;
    }

    .guide-content h2 {
        font-size: 22px;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .cta-phone {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 10px 28px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }
}
