/* =====================================================
   GROUP FOOD V2 — Matches travelkhana.my.canva.site
   ===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #A63211;
    --primary-dk: #8B2500;
    --accent: #C8850E;
    --tan-bg: #D4B896;
    --red-bg: #C4786A;
    --page-bg: #f5f6f8;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-md: #444444;
    --text-sm: #777777;
    --border: #d0d0d0;
    --whatsapp: #25D366;
    --tick: #A63211;
    --star: #E6A817;
    --radius: 14px;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--page-bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---- Shared utility ---- */
.gv2-c {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gv2-sec {
    padding: 64px 0;
    background: var(--page-bg);
}

.gv2-stitle {
    text-align: center;
    margin-bottom: 48px;
}

.gv2-stitle h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.gv2-stitle p {
    font-size: 1.05rem;
    color: var(--text-md);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 8px;
    font-weight: 750;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 20px;
    color: #A91c01;
}

.mid-cont {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
}

.text-right {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.gv2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.primary {
    background-color: #A91c01;
    color: var(--white);
    width: 212.433px;
    border-radius: 70px;

}

.gv2-primary:hover {
    background: var(--primary-dk);
    border-color: var(--primary-dk);
}

.gv2-pill {
    border-radius: 50px;
    padding: 10px 28px;
}

.gv2-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
    border-radius: 50px;
}

.gv2-full {
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
    padding: 12px;
}

.gv2-wa {
    background: transparent;
    color: var(--whatsapp);
    border: 2px solid var(--whatsapp);
    border-radius: 50px;
}

.gv2-wa:hover {
    background: var(--whatsapp);
    color: var(--white);
}

/* =====================================================
   HEADER
   ===================================================== */
.gv2-hdr {
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
    height: 72px;
}

.gv2-hdr-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gv2-logo img {
    height: 52px;
    object-fit: contain;
}

.gv2-hdr-mid {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.gv2-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.gv2-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--whatsapp);
    font-size: 1rem;
}

.gv2-whatsapp:hover {
    opacity: 0.8;
}

/* =====================================================
   HERO
   ===================================================== */
.gv2-hero {
    background: var(--white);
    padding: 52px 0 0;
    overflow: hidden;
    min-height: 520px;
}

.gv2-hero-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.gv2-hero-l {
    flex: 1 1 58%;
}

.gv2-hero-r {
    flex: 1 1 38%;
    position: relative;
    min-height: 420px;
}

/* Hero title */
.gv2-h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text);
}

.gfv2-black {
    color: var(--text);
}

.gv2-red {
    color: var(--primary);
    font-weight: 800;
}

.gv2-hero-sub {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.7;
}

/* Hero form box */
.gv2-fbox {
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 24px 24px 20px;
    background: var(--white);
}

.gv2-frow {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-end;
}

.gv2-fl {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.gv2-fl label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-md);
    white-space: nowrap;
}

.gv2-fl input,
.gv2-fl select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 8px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.gv2-fl input:focus,
.gv2-fl select:focus {
    border-color: var(--primary);
}

.gv2-fbtnrow {
    text-align: center;
}

.gfv2-btn-submit {
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

/* OTP inputs */
.gv2-otp {
    width: 52px;
    height: 52px;
    text-align: center;
    font-size: 1.4rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.gv2-otp:focus {
    border-color: var(--primary);
}

/* Hero floating images */
.gv2-himg {
    border-radius: 12px;
    object-fit: cover;
    position: absolute;
    box-shadow: var(--shadow);
}

.gv2-hi1 {
    width: 220px;
    top: -10px;
    right: 30px;
}

.gv2-hi2 {
    width: 200px;
    top: 130px;
    right: 200px;
}

.gv2-hi3 {
    width: 190px;
    top: 240px;
    right: 20px;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.gv2-tbar {
    background: var(--white);
    padding: 14px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.gv2-tbar .gv2-c {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gv2-ti {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-md);
}

.gv2-tick {
    color: var(--primary);
    font-size: 1rem;
    background: #fdecea;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =====================================================
   STATS BANNER
   ===================================================== */
.gv2-stats {
    background: var(--primary);
    padding: 32px 0;
}

.gv2-sgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.gv2-snum {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.gv2-slbl {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 6px;
    font-weight: 500;
}

/* =====================================================
   SCENARIO CARDS
   ===================================================== */
.gv2-scgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gv2-sc {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid transparent;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.gv2-sc-red {
    border-color: #C4786A;
}

.gv2-sc-tan {
    border-color: #D4B896;
}

.gv2-sc-hd {
    padding: 20px 18px 16px;
    text-align: center;
}

.gv2-sc-red .gv2-sc-hd {
    background: #C4786A33;
}

.gv2-sc-tan .gv2-sc-hd {
    background: #D4B89633;
}

.gv2-sc-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.gv2-sc-hd h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.gv2-cl {
    padding: 16px 18px;
    flex: 1;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gv2-cl li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-md);
    line-height: 1.4;
}

.gv2-cl li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    background: #fdecea;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gv2-scphoto {
    height: 120px;
    overflow: hidden;
    background: #ddd;
}

.gv2-scphoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =====================================================
   PRICING
   ===================================================== */
.gfv2-pricing-section {
    background: var(--page-bg);
}

.gv2-pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gv2-pc {
    background: var(--white);
    border: 1.5px solid #ccc;
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.gv2-picons {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.gv2-pc h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.gv2-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.gv2-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-sm);
}

.gv2-custom {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.gv2-pnote {
    font-size: 0.78rem;
    color: var(--text-sm);
    margin-bottom: 16px;
}

.gv2-pc .gv2-cl {
    padding: 0;
    background: transparent;
    flex: 1;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.gfv2-testimonials-section {
    background: var(--page-bg);
}

.gv2-srow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.gv2-star {
    color: var(--star);
    font-size: 1.6rem;
}

.gv2-rtxt {
    font-size: 1rem;
    color: var(--text-md);
    font-weight: 600;
}

.gv2-tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gv2-tcard {
    background: var(--white);
    border: 1.5px solid #ddd;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.gv2-rstars {
    color: var(--star);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.gv2-rtext {
    font-size: 0.9rem;
    color: var(--text-md);
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.gv2-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gv2-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fdecea;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gv2-reviewer strong {
    font-size: 0.9rem;
    color: var(--text);
}

.gv2-reviewer small {
    font-size: 0.78rem;
    color: var(--text-sm);
}

/* =====================================================
   WHY TRUST US
   ===================================================== */
.gv2-wgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gv2-wcard {
    background: var(--white);
    border: 1.5px solid #ddd;
    border-radius: var(--radius);
    padding: 28px 22px 24px;
    box-shadow: var(--shadow);
}

.gv2-wicon {
    width: 52px;
    height: 52px;
    background: #fdecea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.gv2-wcard h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.4;
}

.gv2-wcard p {
    font-size: 0.84rem;
    color: var(--text-sm);
    line-height: 1.6;
}

/* =====================================================
   FOOTER CTA
   ===================================================== */
.gv2-fcta {
    padding: 72px 0;
    background: var(--page-bg);
}

.gv2-fcta .gv2-c {
    text-align: center;
}

.gv2-fcta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.gv2-fcta p {
    font-size: 1rem;
    color: var(--text-md);
    margin-bottom: 32px;
}

.gv2-brow {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.gv2-ft {
    background: #1a1a1a;
    padding: 14px 24px;
}

.gv2-ft-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #aaa;
}

.gv2-ft a {
    color: #aaa;
}

.gv2-ft a:hover {
    color: var(--white);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .gv2-scgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gv2-wgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gv2-sgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gv2-hero-r {
        display: none;
    }

    .gv2-hero-l {
        flex: 1 1 100%;
    }

    .gv2-frow {
        flex-wrap: wrap;
    }

    .gv2-fl {
        flex: 1 1 calc(50% - 6px);
    }
}

@media (max-width: 768px) {
    .gv2-hdr-mid {
        display: none;
    }

    .gv2-h1 {
        font-size: 1.8rem;
    }

    .gv2-pgrid {
        grid-template-columns: 1fr;
    }

    .gv2-tgrid {
        grid-template-columns: 1fr;
    }

    .gv2-scgrid {
        grid-template-columns: 1fr;
    }

    .gv2-wgrid {
        grid-template-columns: 1fr 1fr;
    }

    .gv2-sgrid {
        grid-template-columns: 1fr 1fr;
    }

    .gv2-fcta h2 {
        font-size: 1.8rem;
    }

    .gv2-frow {
        flex-direction: column;
    }

    .gv2-fl {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .gv2-wgrid {
        grid-template-columns: 1fr;
    }

    .gv2-sgrid {
        grid-template-columns: 1fr;
    }
}