:root {
    --blue: #87CEEB;
    --orange: #FF7F00;
    --dark: #2d3436;
    --light: #f4f7f6;
}

* { margin:0; padding:0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

.container { max-width: 1140px; margin: auto; width: 90%; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.section { padding: 60px 0; }
.bg-light { background: var(--light); }

/* Top Bar */
.top-bar { background: #eee; padding: 10px 0; font-size: 0.9rem; }
.top-info a { text-decoration: none; color: #333; margin-right: 15px; }
.top-social a { margin-left: 10px; color: var(--dark); }
.wa-top { color: #25D366 !important; font-weight: bold; }

/* Navbar */
.navbar { background: #fff; padding: 10px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.logo { height: 50px; }
.nav-links { list-style: none; display: flex; }
.nav-links li a { text-decoration: none; color: var(--dark); margin-left: 20px; font-weight: 500; transition: 0.3s; }
.nav-links li a:hover { color: var(--orange); }
.nav-btn { background: var(--orange); color: #fff !important; padding: 8px 20px; border-radius: 5px; }

/* Hero */
.hero { height: 70vh; background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1500&q=80') center/cover; }
.hero-overlay { height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
.hero-content h1 { font-size: 3.5rem; }
.highlight { color: var(--blue); }
.btn-primary { background: var(--orange); color: white; padding: 12px 30px; text-decoration: none; border-radius: 5px; display: inline-block; margin-top: 20px; font-weight: bold; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.tour-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.tour-card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.price { color: var(--orange); font-weight: bold; font-size: 1.2rem; }

/* About Page Styles */
.page-header { background: var(--dark); color: white; text-align: center; padding: 50px 0; }
.about-flex { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.about-text, .about-img { flex: 1; min-width: 300px; }
.about-img img { width: 100%; border-radius: 15px; }
.branch-list { margin: 20px 0; }
.b-item { margin-bottom: 10px; font-weight: 500; }
.b-item i { color: var(--blue); margin-right: 10px; }
.phone-box { background: var(--light); padding: 20px; border-radius: 10px; display: flex; align-items: center; gap: 20px; border-left: 5px solid var(--orange); }
.phone-box i { font-size: 2rem; color: var(--orange); }
.phone-box a { font-size: 1.5rem; font-weight: bold; text-decoration: none; color: var(--dark); }

footer { background: #222; color: #fff; text-align: center; padding: 30px 0; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
}