﻿:root {
    --primary: #136f4b;
    --primary-dark: #0d4c34;
    --accent: #f5a623;
    --bg: #f6f7fb;
    --text: #222;
    --muted: #555;
    --radius-lg: 18px;
    --shadow-soft: 0 14px 35px rgba(0,0,0,0.08);
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* Layout helpers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(19,111,75,0.3);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(19,111,75,0.35);
    }

.btn-outline {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--primary-dark);
}

    .btn-outline:hover {
        background: #f2fffa;
        border-color: var(--primary);
    }

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}



.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0,0,0,0.05);
}

.brand-text-main {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    letter-spacing: 0.03em;
}

.brand-text-sub {
    font-size: 0.75rem;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.92rem;
}

    .nav-links a {
        color: var(--muted);
        font-weight: 500;
        position: relative;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.15s ease;
        }

        .nav-links a:hover {
            color: var(--primary-dark);
        }

            .nav-links a:hover::after {
                width: 18px;
            }

        .nav-links a.active {
            color: var(--primary-dark);
        }

            .nav-links a.active::after {
                width: 18px; /* same as hover underline */
            }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .nav-cta span {
        font-size: 0.8rem;
        color: var(--muted);
    }

/* Hero */
.hero {
    position: relative;
    padding: 32px 0 40px;
    background-image: url('../images/top-bg1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    z-index: 1;
}

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55); /* change opacity & color */
        z-index: -1;
    }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #2f2514;
    border: 1px solid rgba(0,0,0,0.04);
    font-size: 0.78rem;
    color: #fff;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

    .hero-title span {
        color: var(--primary);
    }

.hero-subtitle {
    font-size: 0.98rem;
    color: #ddd;
    max-width: 480px;
    margin-bottom: 18px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.hero-note {
    font-size: 0.82rem;
    color: #ddd;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
}

.hero-stat {
    padding: 10px 16px;
    background: #ffffff;
    border-radius: 999px;
    font-size: 0.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

    .hero-stat strong {
        color: var(--primary-dark);
        font-size: 0.9rem;
    }

/* Booking card */
.booking-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    box-shadow: var(--shadow-soft);
}

.booking-title {
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.booking-sub {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .field label {
        font-size: 0.78rem;
        color: #000;
        font-weight: 600;
    }

    .field input,
    .field select,
    .field textarea {
        padding: 8px 10px;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0,0.08);
        font-size: 0.8rem;
        outline: none;
        font-family: inherit;
    }

    .field textarea {
        resize: vertical;
    }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 1px rgba(19,111,75,0.15);
        }

.booking-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    gap: 10px;
}

    .booking-bottom p {
        font-size: 0.78rem;
        color: var(--muted);
    }

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 26px;
}

    .section-title h2 {
        position: relative;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 12px;
        color: #2f2514;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -6px;
            transform: translateX(-50%);
            height: 3px;
            background-color: #136f4b;
            width: 0;
            animation: underlinePulse 2s ease-in-out infinite;
        }

@keyframes underlinePulse {
    0% {
        width: 50px;
    }

    50% {
        width: 80px;
    }
    /* adjust max line width */
    100% {
        width: 50px;
    }
}

.section-title1 h2 {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
    text-align: center
}

    .section-title1 h2::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        transform: translateX(-50%);
        height: 3px;
        background-color: #2f2514;
        width: 0;
        animation: underlinePulse 2s ease-in-out infinite;
    }

.section-title1 p {
    font-size: 0.9rem;
    color: #ddd;
    text-align: center;
}

@keyframes underlinePulse {
    0% {
        width: 50px;
    }

    50% {
        width: 80px;
    }
    /* adjust max line width */
    100% {
        width: 50px;
    }
}

.section-title p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Services */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
}

    .card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
        color: var(--primary-dark);
    }

    .card p {
        font-size: 0.85rem;
        color: var(--muted);
        margin-bottom: 8px;
    }

.chip-row {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    font-size: 0.73rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f2f5ff;
    color: var(--muted);
}

.card h3 .icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.card:nth-child(1) .icon {
    color: #e67e22;
}
/* sightseeing – orange */
.card:nth-child(2) .icon {
    color: #2980b9;
}
/* tours – blue */
.card:nth-child(3) .icon {
    color: #27ae60;
}
/* airport – green */
.card:nth-child(4) .icon {
    color: #16a085;
}
/* snow – teal */
.card:nth-child(5) .icon {
    color: #8e44ad;
}
/* corporate – purple */
.card:nth-child(6) .icon {
    color: #c0392b;
}
/* self-drive – red */
/* Tariff */
.tariff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

    .tariff-table thead {
        background: var(--primary);
        color: #ffffff;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 10px 14px;
        text-align: left;
    }

    .tariff-table tbody tr:nth-child(even) {
        background: var(--bg);
    }

.tariff-note {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
    margin-top: 30px;
}

.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

    .package-card:hover .package-img img {
        transform: scale(1.05);
        transition: .3s ease-in-out;
    }

.package-body {
    padding: 0px;
}

.package-img {
    height: 200px;
    overflow: hidden;
}

    .package-img img {
        width: 100%;
        height: 100%;
        transform: scale(1);
        transition: .3s ease-in-out;
        object-fit: cover;
    }

.package-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    margin-top: 15px;
    text-align: center;
}

.package-meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 8px;
    text-align: center;
}

.package-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2f2514;
    margin-bottom: 6px;
    text-align: center;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.responsive-video {
    width: 100%;
    max-width: 320px; /* adjust video width */
    border-radius: 8px;
    background: #000;
}

/* Optional: make videos slightly larger on tablets */
@media (min-width: 600px) {
    .responsive-video {
        max-width: 45%;
    }
}

/* Optional: 3 columns on desktops */
@media (min-width: 992px) {
    .responsive-video {
        max-width: 30%;
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #136f4b;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    /* Show button after scroll */
    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
    }

    /* Upward icon animation on hover */
    #scrollTopBtn:hover i {
        transform: translateY(-4px);
        transition: transform 0.3s ease;
    }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 32px;
    align-items: flex-start;
}

.contact-card {
    background: #ffffff;
    padding: 18px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-list {
    list-style: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

    .contact-list li {
        margin-bottom: 8px;
        color: var(--muted);
    }

    .contact-list span {
        font-weight: 600;
        color: var(--primary-dark);
        margin-right: 10px;
        font-size: 1.2em;
    }

footer {
    padding: 16px 0 22px;
    border-top: 1px solid rgba(0,0,0,0.04);
    font-size: 0.78rem;
    color: #ddd;
    text-align: center;
    background: #2f2514;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .contact-grid {
        grid-template-columns: minmax(0,1fr);
    }

    .hero {
        padding-top: 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile nav – hide links */
    }

    .nav-cta span {
        display: none;
    }

    .cards-grid,
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .booking-grid {
        grid-template-columns: minmax(0,1fr);
    }
}

@media (max-width: 560px) {
    .cards-grid,
    .packages-grid {
        grid-template-columns: minmax(0,1fr);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .booking-card {
        padding: 16px 14px;
    }
}
