/* ============================================
   STRANGERS RIDE - Main Stylesheet
   Brand: Dark Green #1B4332 | Leaf Green #52C41A
   ============================================ */

:root {
    --primary:       #1B4332;
    --primary-mid:   #2D6A4F;
    --primary-light: #40916C;
    --leaf:          #52C41A;
    --leaf-dark:     #3a8f10;
    --accent:        #F4845F;
    --accent-dark:   #d9623e;
    --dark:          #111827;
    --gray:          #6B7280;
    --light-gray:    #F3F4F6;
    --border:        #E5E7EB;
    --white:         #FFFFFF;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
    --shadow:        0 4px 20px rgba(0,0,0,.10);
    --shadow-lg:     0 12px 40px rgba(0,0,0,.15);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    all .3s ease;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; }
.section-title { font-size: clamp(1.6rem,3vw,2.4rem); color: var(--primary); margin-bottom: .5rem; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin: 0 auto 2.5rem; }
.text-center { text-align: center; }
.text-leaf   { color: var(--leaf); }

/* ── Container ──────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--light-gray); }

/* ── Buttons ────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.75rem; border-radius: 50px;
    font-weight: 600; font-size: .95rem; transition: var(--transition);
}
.btn-primary {
    background: var(--leaf); color: var(--white);
    box-shadow: 0 4px 15px rgba(82,196,26,.35);
}
.btn-primary:hover { background: var(--leaf-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(82,196,26,.45); }
.btn-outline {
    border: 2px solid var(--primary); color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--leaf); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Header / Nav ───────────────────────────── */
.site-header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.navbar {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}
.logo {
    display: flex; align-items: center; gap: .6rem;
}
.logo img { height: 44px; width: auto; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text-wrap .brand-name { font-size: 1.15rem; font-weight: 800; color: var(--primary); letter-spacing: -.5px; }
.logo-text-wrap .brand-ride { font-size: .95rem; font-weight: 700; color: var(--leaf); letter-spacing: 2px; }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex; align-items: center; gap: .3rem;
    padding: .5rem .75rem; border-radius: 8px;
    font-size: .9rem; font-weight: 500; color: var(--dark);
    transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); background: rgba(27,67,50,.06); }
.nav-cta {
    background: var(--leaf) !important; color: var(--white) !important;
    border-radius: 50px !important; padding: .5rem 1.25rem !important;
}
.nav-cta:hover { background: var(--leaf-dark) !important; }

/* Dropdown */
.has-dropdown .dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); min-width: 200px; padding: .5rem;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: flex; align-items: center; gap: .6rem;
    padding: .5rem .75rem; border-radius: 8px; font-size: .88rem;
    font-weight: 500; color: var(--dark); transition: var(--transition);
}
.dropdown li a:hover { background: var(--light-gray); color: var(--primary); }
.dropdown li a i { width: 16px; color: var(--leaf); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0d2b1a 0%, #1B4332 40%, #2D6A4F 70%, #1a3d28 100%);
}
.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='%2352C41A' fill-opacity='0.04'%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-content {
    position: relative; z-index: 2;
    max-width: 720px; color: var(--white); padding: 6rem 0 4rem;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(82,196,26,.2); border: 1px solid rgba(82,196,26,.4);
    color: #a8f08a; padding: .35rem 1rem; border-radius: 50px;
    font-size: .82rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: .5px;
}
.hero h1 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.hero h1 span { color: var(--leaf); }
.hero-tagline { font-size: 1.1rem; opacity: .85; margin-bottom: 2rem; max-width: 560px; }
.hero-note {
    font-size: .88rem; opacity: .7; margin-top: 1rem;
    display: flex; align-items: center; gap: .4rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.hero-stats {
    display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat h3 { font-size: 1.8rem; color: var(--leaf); }
.hero-stat p  { font-size: .82rem; opacity: .7; }

/* Sub-hero (inner pages) */
.page-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(135deg, #0d2b1a 0%, #1B4332 50%, #2D6A4F 100%);
    color: var(--white); text-align: center;
}
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: .75rem; }
.page-hero p  { font-size: 1.05rem; opacity: .85; max-width: 580px; margin: 0 auto 1.5rem; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .85rem; opacity: .7; }
.breadcrumb a { color: var(--leaf); }
.breadcrumb span::before { content: '›'; margin-right: .5rem; }

/* ── Cards ──────────────────────────────────── */
.card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); overflow: hidden;
    transition: var(--transition); display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
    height: 220px; overflow: hidden; position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
}
.card-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--leaf); color: var(--white);
    padding: .25rem .75rem; border-radius: 50px; font-size: .75rem; font-weight: 700;
}
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: .78rem; font-weight: 600; color: var(--leaf); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem; }
.card-title { font-size: 1.15rem; color: var(--primary); margin-bottom: .5rem; }
.card-desc { font-size: .88rem; color: var(--gray); line-height: 1.6; flex: 1; }
.card-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.card-price { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.card-price span { font-size: .78rem; color: var(--gray); font-weight: 400; }
.card-duration { font-size: .82rem; color: var(--gray); display: flex; align-items: center; gap: .3rem; }
.card-footer { padding: 0 1.5rem 1.5rem; }
.card-footer .btn { width: 100%; justify-content: center; }

/* ── Grid layouts ───────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem; }

/* ── Features / Why Choose Us ───────────────── */
.feature-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--white); margin-bottom: 1rem;
}
.feature-box { text-align: center; padding: 2rem 1.5rem; }
.feature-box h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: .5rem; }
.feature-box p  { font-size: .88rem; color: var(--gray); }

/* ── Itinerary Timeline ─────────────────────── */
.itinerary-timeline { position: relative; padding-left: 2.5rem; }
.itinerary-timeline::before {
    content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--leaf), var(--primary-light));
}
.timeline-day { position: relative; margin-bottom: 2rem; }
.timeline-day::before {
    content: ''; position: absolute; left: -2.15rem; top: .35rem;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--leaf); border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--leaf);
}
.timeline-day h3 {
    font-size: 1rem; color: var(--primary); margin-bottom: .4rem;
    display: flex; align-items: center; gap: .5rem;
}
.timeline-day p { font-size: .9rem; color: var(--gray); }
.day-label {
    display: inline-block; background: var(--leaf); color: var(--white);
    padding: .15rem .6rem; border-radius: 50px; font-size: .75rem; font-weight: 700;
    margin-bottom: .35rem;
}

/* ── Price Box ──────────────────────────────── */
.price-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; text-align: center; position: sticky; top: 90px;
}
.price-box .price { font-size: 2.5rem; font-weight: 800; color: var(--leaf); }
.price-box .price-sub { font-size: .85rem; opacity: .7; margin-bottom: 1.5rem; }
.price-includes { text-align: left; margin: 1.5rem 0; }
.price-includes li {
    padding: .4rem 0; font-size: .88rem; opacity: .9;
    display: flex; align-items: center; gap: .6rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.price-includes li i { color: var(--leaf); width: 16px; }
.price-box .btn { width: 100%; justify-content: center; margin-top: .75rem; }

/* ── Includes / Excludes ────────────────────── */
.inclusions { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.incl-box { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.incl-box h3 { font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.incl-box.included h3 { color: var(--primary); }
.incl-box.excluded  h3 { color: #dc2626; }
.incl-box ul li {
    font-size: .88rem; padding: .35rem 0; color: var(--gray);
    display: flex; align-items: flex-start; gap: .6rem; border-bottom: 1px solid var(--border);
}
.incl-box ul li:last-child { border-bottom: none; }
.incl-box.included ul li i { color: var(--leaf); margin-top: 3px; }
.incl-box.excluded  ul li i { color: #dc2626; margin-top: 3px; }

/* ── FAQ ─────────────────────────────────────── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-question {
    width: 100%; padding: 1.1rem 1.5rem; text-align: left;
    font-size: .95rem; font-weight: 600; color: var(--primary);
    background: var(--white); display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; transition: var(--transition);
}
.faq-question:hover { background: var(--light-gray); }
.faq-question i { transition: transform .3s; color: var(--leaf); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { font-size: .9rem; color: var(--gray); }

/* ── Testimonials ───────────────────────────── */
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 1.75rem; box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '"'; font-size: 5rem; font-family: Georgia, serif;
    color: var(--leaf); opacity: .15; position: absolute; top: 0; left: 1.5rem;
    line-height: 1;
}
.testimonial-text { font-size: .92rem; color: var(--gray); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--leaf));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--primary); }
.testimonial-trip { font-size: .78rem; color: var(--gray); }
.stars { color: #f59e0b; font-size: .85rem; margin-bottom: .5rem; }

/* ── Destination card (destination pages) ───── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1.5rem; }
.dest-card {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition); position: relative;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card-img {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; position: relative;
}
.dest-card-body { padding: 1.25rem; background: var(--white); }
.dest-card-body h3 { color: var(--primary); font-size: 1.1rem; }
.dest-card-body p  { font-size: .85rem; color: var(--gray); margin: .35rem 0 .75rem; }
.dest-tag {
    display: inline-block; background: var(--light-gray); color: var(--primary);
    font-size: .72rem; font-weight: 600; padding: .2rem .6rem; border-radius: 50px;
    margin-right: .25rem; margin-bottom: .25rem;
}

/* ── CTA Banner ─────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: var(--white); text-align: center; padding: 5rem 0;
}
.cta-banner h2 { font-size: clamp(1.8rem,3vw,2.5rem); margin-bottom: 1rem; }
.cta-banner p  { font-size: 1.05rem; opacity: .85; max-width: 560px; margin: 0 auto 2rem; }

/* ── Contact Form ───────────────────────────── */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--primary); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border);
    border-radius: 8px; font-family: inherit; font-size: .92rem;
    color: var(--dark); transition: var(--transition); background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(82,196,26,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Info Box ───────────────────────────────── */
.info-box {
    background: #f0fdf4; border-left: 4px solid var(--leaf);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.info-box p { font-size: .9rem; color: var(--primary); }
.info-box i { margin-right: .4rem; }

/* ── Blog ───────────────────────────────────── */
.blog-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.blog-card-body { padding: 1.5rem; }
.blog-tag  { font-size: .75rem; font-weight: 700; color: var(--leaf); text-transform: uppercase; letter-spacing: 1px; }
.blog-card-title { font-size: 1.1rem; color: var(--primary); margin: .5rem 0; line-height: 1.4; }
.blog-card-body p { font-size: .88rem; color: var(--gray); }
.blog-meta { font-size: .8rem; color: var(--gray); margin-top: .75rem; display: flex; gap: 1rem; }
.blog-content h2 { font-size: 1.5rem; color: var(--primary); margin: 2rem 0 .75rem; }
.blog-content h3 { font-size: 1.2rem; color: var(--primary-mid); margin: 1.5rem 0 .5rem; }
.blog-content p  { font-size: .95rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.8; }
.blog-content ul { margin: .75rem 0 1rem 1.5rem; }
.blog-content ul li { font-size: .95rem; color: var(--gray); margin-bottom: .4rem; }

/* ── Table ──────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { background: var(--primary); color: var(--white); padding: .85rem 1rem; text-align: left; font-size: .85rem; }
.data-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--gray); }
.data-table tr:hover td { background: var(--light-gray); }
.data-table tr:last-child td { border-bottom: none; }

/* ── Things-to-carry ────────────────────────── */
.carry-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 1rem; }
.carry-item {
    background: var(--white); border-radius: var(--radius); padding: 1rem;
    box-shadow: var(--shadow-sm); text-align: center; font-size: .88rem; color: var(--primary);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.carry-item i { font-size: 1.5rem; color: var(--leaf); }

/* ── Footer ─────────────────────────────────── */
.site-footer {
    background: var(--dark); color: rgba(255,255,255,.75);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo img { height: 40px; }
.footer-brand .logo-text-wrap .brand-name { color: var(--white); }
.footer-tagline { font-size: .88rem; line-height: 1.7; opacity: .7; max-width: 280px; }
.footer-note { font-size: .82rem; color: var(--leaf); margin-top: .75rem; font-style: italic; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 1.25rem; position: relative; padding-bottom: .5rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--leaf); }
.footer-links li { margin-bottom: .5rem; }
.footer-links li a { font-size: .87rem; opacity: .7; transition: var(--transition); }
.footer-links li a:hover { opacity: 1; color: var(--leaf); padding-left: 4px; }
.footer-contact li { font-size: .87rem; opacity: .75; margin-bottom: .6rem; display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact li i { color: var(--leaf); margin-top: 3px; width: 14px; }
.footer-contact li a { opacity: 1; }
.footer-contact li a:hover { color: var(--leaf); }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-links a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    font-size: .9rem; transition: var(--transition);
}
.social-links a:hover { background: var(--leaf); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
    padding: 1.25rem 0; text-align: center; font-size: .82rem;
    opacity: .5; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { opacity: 1; }
.footer-bottom a:hover { color: var(--leaf); }

/* ── Whatsapp Floating ──────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: var(--white); font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,.5); transition: var(--transition);
    animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #128c7e; }
@keyframes pulse {
    0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.5); }
    50%      { box-shadow: 0 6px 30px rgba(37,211,102,.7); }
}

/* ── Content page layout ────────────────────── */
.content-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.content-main h2 { font-size: 1.5rem; color: var(--primary); margin: 2rem 0 .75rem; }
.content-main h3 { font-size: 1.15rem; color: var(--primary-mid); margin: 1.5rem 0 .5rem; }
.content-main p  { font-size: .95rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.8; }
.content-main ul { margin: .75rem 0 1rem; }
.content-main ul li { font-size: .92rem; color: var(--gray); padding: .3rem 0; padding-left: 1.25rem; position: relative; }
.content-main ul li::before { content: '✓'; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }

/* ── Highlights strip ───────────────────────── */
.highlights-strip {
    display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0;
}
.highlight-pill {
    background: var(--light-gray); border-radius: 50px;
    padding: .4rem 1rem; font-size: .85rem; color: var(--primary);
    display: flex; align-items: center; gap: .4rem; font-weight: 500;
}
.highlight-pill i { color: var(--leaf); }

/* ── Tabs ───────────────────────────────────── */
.tab-nav { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; border-bottom: 2px solid var(--border); }
.tab-btn {
    padding: .6rem 1.25rem; border-radius: 8px 8px 0 0; font-size: .9rem;
    font-weight: 600; color: var(--gray); cursor: pointer; border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover { color: var(--primary); border-color: var(--leaf); background: rgba(82,196,26,.06); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Pickup cities ──────────────────────────── */
.pickup-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.pickup-pill {
    background: var(--light-gray); border-radius: 50px;
    padding: .45rem 1.1rem; font-size: .85rem; color: var(--primary);
    font-weight: 600; display: flex; align-items: center; gap: .4rem;
    border: 1.5px solid var(--border);
}
.pickup-pill i { color: var(--leaf); }

/* ── Utilities ──────────────────────────────── */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.flex    { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; }
.justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
.w-full  { width: 100%; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-layout { grid-template-columns: 1fr; }
    .price-box { position: static; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
        background: var(--white); flex-direction: column; align-items: flex-start;
        padding: 1rem; gap: 0; overflow-y: auto;
        transform: translateX(-100%); transition: transform .35s ease;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu > li { width: 100%; }
    .nav-menu > li > a { padding: .75rem 1rem; border-radius: 8px; font-size: 1rem; width: 100%; }
    .has-dropdown .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; background: var(--light-gray); display: none;
        padding: .25rem .5rem;
    }
    .has-dropdown.open .dropdown { display: block; }
    .nav-cta { margin-top: .5rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .inclusions { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; justify-content: center; }
    .section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
    .carry-grid { grid-template-columns: repeat(2,1fr); }
    .hero h1 { font-size: 2rem; }
}
