* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

:root {
    --green: #1a4a2e;
    --green-mid: #2d6a4f;
    --green-light: #52b788;
    --gold: #d4a017;
    --gold-light: #f5d060;
    --cream: #faf7f0;
    --white: #ffffff;
    --dark: #0f2418;
    --muted: #6b7c6e;
    --border: #dde8e0;
}

.logo_box {
    width: 60px;
}

.logo_img {
    width: 100%;
    object-fit: cover;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6
}

#menu {
    color: white;
    font-size: 27px;
    cursor: pointer;
    display: none;
}

.main_flex_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 74, 46, 0.97);
    backdrop-filter: blur(10px);
    padding: 6px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo .leaf {
    font-size: 22px
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--gold-light)
}

.nav-call {
    background: var(--gold);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.nav-call:hover {
    background: var(--gold-light)
}

.nav-links {
    display: none
}

@media(max-width:1024px) {
    .nav-links {
        display: none
    }
}

/* HERO */
.hero {
    background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 60%, #3a7d5a 100%);
    padding: 70px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212, 160, 23, 0.3);
    margin-bottom: 18px;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    animation: blink 1.4s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-light)
}

.hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 430px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .15s, box-shadow .15s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.35)
}

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    transition: background .2s, border-color .2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5)
}

/* HERO CONTACT CARD */
.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px
}

.taxi-icon {
    width: 52px;
    height: 52px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-header h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 2px
}

.card-header p {
    font-size: 12px;
    color: var(--muted)
}

.c-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    font-size: 14px;
}

.c-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.c-row .lbl {
    font-size: 11px;
    color: var(--muted);
    display: block
}

.c-row .val {
    font-weight: 600;
    color: var(--dark)
}

.c-row a {
    text-decoration: none;
    color: var(--green-mid);
    font-weight: 600
}

.avail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e9f7ee;
    color: #1a7a3a;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

@media(max-width:768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

/* STATS */
.stats {
    background: var(--dark);
    padding: 22px 5%
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.stat {
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08)
}

.stat:last-child {
    border-right: none
}

.stat-n {
    font-size: 46px;
    font-weight: 700;
    color: var(--gold-light)
}

.stat-l {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px
}

@media(max-width:600px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07)
    }
}

/* SECTIONS */
.section {
    padding: 64px 5%;
    margin: 0 auto;
    width: 100%;
}

.stag {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: center;
}

h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    text-align: center;
}

.sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
    text-align: center;
    margin: auto;
    margin-bottom: 44px;
}

/* PLACES GRID */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 18px
}

.place-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.place-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1)
}

.place-img {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #1a4a2e, #2d6a4f);
}

.place-body {
    padding: 16px
}

.place-body h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px
}

.place-body p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.55
}

/* FLEET */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.fleet-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08)
}

.fleet-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    background: #265e42;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 12px;
}

.fleet-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px
}

.fleet-card p {
    font-size: 15px;
    color: var(--muted)
}

.fleet-tag {
    display: inline-block;
    margin-top: 10px;
    background: #e9f7ee;
    color: #1a7a3a;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}

.why-card .icon {
    font-size: 30px;
    margin-bottom: 12px
}

.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px
}

.why-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6
}

/* CONTACT SECTION */
.contact-wrap {
    background: var(--green);
    border-radius: 20px;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-wrap h2 {
    color: var(--white);
    margin-bottom: 10px
}

.contact-wrap .sub {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cc {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: background .2s;
}

.cc:hover {
    background: rgba(255, 255, 255, 0.18)
}

.cc-icon {
    font-size: 26px;
    flex-shrink: 0
}

.cc h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px
}

.cc p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px
}

.cc.wa {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3)
}

.cc.wa:hover {
    background: rgba(37, 211, 102, 0.25)
}

@media(max-width:680px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        padding: 32px 24px
    }
}

/* FOOTER */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    font-size: 13px;
    padding: 22px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer span {
    color: rgba(255, 255, 255, 0.7)
}

.about_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}