
.site-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    max-width: 1140px;
}

@media (min-width: 576px) {
    .site-container { max-width: 540px; }
}

@media (min-width: 768px) {
    .site-container { max-width: 720px; }
}

@media (min-width: 992px) {
    .site-container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .site-container { max-width: 1140px; }
}
.form-box {
    max-width: 420px;
    margin: 30px auto;
}

.form-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
}

.form-box button {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    cursor: pointer;
}



.form-box {
    max-width: 420px;
    margin: 30px auto;
}

.form-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
}

.form-box button {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    cursor: pointer;
}
/* ================================
   Hero Section
================================ */

.hero-section {
    background: linear-gradient(
        rgba(0, 77, 64, 0.85),
        rgba(0, 77, 64, 0.85)
    ),
    url("../images/hero-bg.jpg") center/cover no-repeat;
    color: #ffffff;
    padding: 90px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-section p {
    max-width: 600px;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-btn {
    background-color: #ffffff;
    color: #004d40;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.hero-btn:hover {
    background-color: #e0f2f1;
}



/* ================================
   About Section
================================ */

.about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-section h2 {
    color: #004d40;
    margin-bottom: 15px;
}

.about-section p {
    max-width: 700px;
    color: #555;
    line-height: 1.6;
}
/* ================================
   Featured Tours – Landing Page
================================ */

.featured-section .tour-grid {
    gap: 30px;
}

.featured-section .tour-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-section .tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Image */
.featured-section .tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content wrapper */
.featured-section .tour-card h3,
.featured-section .tour-card p,
.featured-section .tour-card a {
    padding-left: 20px;
    padding-right: 20px;
}

.featured-section .tour-card h3 {
    margin-top: 18px;
    margin-bottom: 6px;
    color: #004d40;
    font-size: 18px;
}

.featured-section .tour-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
}

/* Price emphasis */
.featured-section .tour-card p strong {
    color: #004d40;
    font-size: 16px;
}

/* Button */
.featured-section .tour-card .btn {
    display: inline-block;
    margin: 15px 20px 20px;
    background-color: #004d40;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}

.featured-section .tour-card .btn:hover {
    background-color: #00695c;
}

/* ================================
   Benefits Section
================================ */

.benefits-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.benefits-section h2 {
    color: #004d40;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.benefit-item {
    background-color: #f5f7f6;
    padding: 25px;
    border-radius: 10px;
}

.benefit-item h4 {
    margin-bottom: 10px;
    color: #004d40;
}

.benefit-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
/* ================================
   Call To Action
================================ */

.cta-section {
    background-color: #004d40;
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.cta-section h1 {
    color: #ffffff;
}

.cta-section h2 {
    margin-bottom: 10px;
    color: #ffffff;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 16px;
}

.cta-section .btn {
    background-color: #ffffff;
    color: #004d40;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.cta-section .btn:hover {
    background-color: #e0f2f1;
}
