/* =========================================================
   Pheriwala Shop — site.css (Redesigned)
   Vibrant theme: emerald + sunset orange + warm cream
   Animated gradients, glassmorphism, scroll reveals
   ========================================================= */

:root {
    /* Brand — Emerald */
    --green-900: #062a1f;
    --green-800: #0a3d2e;
    --green-700: #0f5a40;
    --green-600: #178558;
    --green-500: #1faa6e;
    --green-400: #3fc98a;
    --green-100: #d6f5e6;
    --green-50:  #eefaf3;

    /* Brand — Sunset Orange */
    --orange-700: #c2540a;
    --orange-600: #c04b09;
    --orange-500: #ff8a1e;
    --orange-400: #ffa64d;
    --orange-300: #ffc88a;
    --orange-100: #ffe9d0;
    --orange-50:  #fff6ec;

    /* Amber */
    --amber-500: #f5b301;
    --amber-400: #ffcf3a;
    --amber-100: #fdf3d0;

    /* Blue */
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-100: #dbeafe;

    /* Red */
    --red-500: #e23b3b;
    --red-100: #fde2e2;

    /* Teal accent */
    --teal-500: #14b8a6;
    --teal-100: #ccfbf1;

    /* Neutrals — warm ink */
    --ink-900: #0d1814;
    --ink-800: #1a2820;
    --ink-700: #2c4036;
    --ink-600: #4a5a52;
    --ink-500: #6b7a72;
    --ink-400: #94a099;
    --ink-300: #c2ccc6;
    --ink-200: #e3e8e4;
    --ink-100: #f1f4f2;
    --cream:   #fbf8f3;
    --white:   #ffffff;

    /* Semantic */
    --bg: var(--cream);
    --surface: var(--white);
    --text: var(--ink-800);
    --text-muted: var(--ink-500);
    --border: var(--ink-200);
    --primary: var(--green-600);
    --primary-dark: var(--green-800);
    --accent: var(--orange-500);
    --accent-dark: var(--orange-600);

    /* Gradients */
    --grad-hero: linear-gradient(135deg, #0a3d2e 0%, #0f5a40 45%, #178558 100%);
    --grad-cta: linear-gradient(135deg, #062a1f 0%, #0a3d2e 50%, #0f5a40 100%);
    --grad-orange: linear-gradient(135deg, #ff8a1e, #f5b301);
    --grad-green: linear-gradient(135deg, #178558, #3fc98a);
    --grad-aurora: linear-gradient(120deg, #1faa6e, #14b8a6, #ff8a1e, #f5b301);

    /* Effects */
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 2px rgba(13,24,20,.06), 0 1px 3px rgba(13,24,20,.04);
    --shadow: 0 4px 16px rgba(13,24,20,.08), 0 2px 6px rgba(13,24,20,.04);
    --shadow-md: 0 12px 32px rgba(13,24,20,.10), 0 4px 12px rgba(13,24,20,.05);
    --shadow-lg: 0 28px 70px rgba(13,24,20,.16), 0 10px 24px rgba(13,24,20,.07);
    --shadow-green: 0 18px 44px rgba(15,90,64,.28);
    --shadow-orange: 0 18px 44px rgba(255,138,30,.32);
    --shadow-glow: 0 0 0 1px rgba(255,255,255,.1), 0 20px 50px rgba(15,90,64,.25);

    --container: 1200px;
    --header-h: 76px;

    --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
/* Subtle animated mesh background on body */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(800px 500px at 10% 0%, rgba(31,170,110,.06), transparent 60%),
        radial-gradient(700px 500px at 90% 20%, rgba(255,138,30,.05), transparent 60%),
        radial-gradient(600px 400px at 50% 100%, rgba(20,184,166,.04), transparent 60%);
    pointer-events: none;
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--ink-900);
    line-height: 1.2;
    margin: 0 0 .5em;
    font-weight: 700;
    letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--green-500); color: #fff; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--green-800);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 10px 0;
    z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    transition: all .25s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.25), transparent 50%);
    opacity: 0;
    transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn-sm { padding: 9px 16px; font-size: .875rem; }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: green;
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 4px 14px rgba(15,90,64,.3);
    animation: gradShift 6s ease infinite;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15,90,64,.42);
}

.btn-ghost {
    background: rgba(255,255,255,.7);
    color: var(--green-800);
    border-color: var(--green-100);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: #fff;
    border-color: var(--green-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-light {
    background: #fff;
    color: var(--green-800);
    box-shadow: 0 4px 14px rgba(0,0,0,.14);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.2); }

.btn-outline-light {
    background: rgba(255,255,255,.06);
    color: #fff;
    border-color: rgba(255,255,255,.35);
    backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }

@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 100;
    background: rgba(251,248,243,.7);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: all .35s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(255,255,255,.85);
    box-shadow: 0 4px 24px rgba(13,24,20,.06);
    border-bottom-color: var(--ink-200);
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
    width: 90px;
    height: 70px;
    border-radius: 13px;
    object-fit: fill;
/*    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease-bounce);*/
}
/*.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.06); }*/
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--green-800);
    letter-spacing: -.02em;
}
.brand-tag {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .72rem;
    color: var(--orange-600);
    letter-spacing: .14em;
    text-transform: uppercase;
}
.brand-light .brand-name { color: #fff; }
.brand-light .brand-tag { color:#c04b09; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink-700);
    transition: all .2s var(--ease);
    position: relative;
}
.nav-link:hover { color: var(--green-700); background: var(--green-50); }
.nav-link.active { color: var(--green-800); }
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 4px;
    height: 2px;
    background: var(--grad-orange);
    border-radius: 2px;
}
.nav-cta { margin-left: 12px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2.5px;
    background: var(--green-800);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

main { padding-top: var(--header-h); }

/* ============ ALERTS ============ */
.alert {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    animation: slideDown .4s var(--ease);
}
.alert-success { background: var(--green-100); color: var(--green-800); border: 1px solid var(--green-500); }
.alert-info { background: var(--orange-50); color: var(--orange-700); border: 1px solid#c04b09; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ============ EYEBROW / SECTION ============ */
.eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange-600);
    margin-bottom: 14px;
    position: relative;
    padding-left: 22px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 14px; height: 2px;
    background: var(--grad-orange);
    border-radius: 2px;
    transform: translateY(-50%);
}
    .eyebrow.light {
        color: #fd9118;
    }
        .eyebrow.light::before {
            background: #fd9118;
        }
.accent {
    background: var(--grad-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--orange-600);
}
.accent-light { color:#c04b09; }

.section { 
   /* padding: 88px 0;*/ 
    position: relative; 
    padding-bottom:10px;
}
.section-tint {
    background: linear-gradient(180deg, var(--green-50), var(--cream));
}
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; gap: 20px; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-head.center > div { max-width: 640px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; }
.link-arrow { font-weight: 600; color: var(--green-700); transition: all .2s var(--ease); display: inline-flex; align-items: center; gap: 4px; }
.link-arrow:hover { color: var(--orange-600); transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
    position: relative;
   /* padding: 80px 0 130px;*/
    overflow: hidden;
    background: linear-gradient(160deg, var(--green-50) 0%, var(--cream) 60%);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(900px 500px at 85% 0%, rgba(255,138,30,.12), transparent 60%),
        radial-gradient(700px 400px at 0% 100%, rgba(15,90,64,.12), transparent 60%),
        radial-gradient(500px 300px at 50% 50%, rgba(20,184,166,.06), transparent 60%);
    pointer-events: none;
    animation: pulseBg 14s ease-in-out infinite alternate;
}
@keyframes pulseBg {
    0% { transform: scale(1); opacity: .9; }
    100% { transform: scale(1.08); opacity: 1; }
}
/* Floating decorative blobs */
.hero-bg::before, .hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .35;
}
.hero-bg::before {
    width: 260px; height: 260px;
    top: 10%; right: 8%;
    background: var(--green-400);
    animation: floatBlob 12s ease-in-out infinite;
}
.hero-bg::after {
    width: 200px; height: 200px;
    bottom: 12%; left: 6%;
    background:#c04b09;
    animation: floatBlob 14s ease-in-out infinite reverse;
}
@keyframes floatBlob {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px,-40px) scale(1.12); }
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy h1 span.accent { display: inline-block; }
.hero-lead {
    font-size: 1.12rem;
    color: var(--ink-600);
    max-width: 540px;
    margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--green-800);
    background: green;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-stats span { font-size: .85rem; color: var(--text-muted); }

/* Hero card stack */
.hero-card-stack {
    position: relative;
    height: 470px;
}
.hero-card {
    position: absolute;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,.6);
    transition: transform .4s var(--ease);
}
.hero-card-main {
    width: 290px;
    padding: 22px;
    top: 20px; right: 30px;
    animation: floatY 5s ease-in-out infinite;
}
.hero-card-main:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.hc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hc-badge {
    background: green;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.hc-wishlist { font-size: 1.4rem; color: var(--ink-400); cursor: pointer; transition: all .2s; }
.hc-wishlist:hover { color: var(--red-500); transform: scale(1.2); }
.hc-image {
    height: 140px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--green-100), var(--green-50));
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    margin-bottom: 14px;
    transition: transform .3s var(--ease);
}
.hero-card-main:hover .hc-image { transform: scale(1.04); }
.hero-card-main h4 { margin: 0 0 4px; font-size: 1.05rem; }
.hc-vendor { font-size: .82rem; color: var(--text-muted); margin: 0 0 14px; }
.hc-bottom { display: flex; justify-content: space-between; align-items: center; }
.hc-price { font-family: var(--font-head); font-weight: 800; color: var(--green-800); font-size: 1.15rem; }
.hc-price small { font-weight: 500; color: var(--text-muted); font-size: .8rem; }

.hero-card-float {
    width: 240px;
    padding: 14px 16px;
    bottom: 30px; left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatY 6s ease-in-out infinite .8s;
}
.hero-card-float-2 {
    width: 210px;
    padding: 14px 16px;
    top: 0; left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatY 5.5s ease-in-out infinite .4s;
}
.hc-image-sm {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: var(--orange-50);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.hero-card-float strong, .hero-card-float-2 strong { display: block; font-size: .92rem; font-family: var(--font-head); }
.hero-card-float p, .hero-card-float-2 p { margin: 0; font-size: .78rem; color: var(--text-muted); }
.hc-price-sm { font-family: var(--font-head); font-weight: 800; color: var(--orange-600); margin-left: auto; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: var(--cream);
    -webkit-mask: radial-gradient(60px 60px at 50% 100%, #000 99%, transparent 100%) 0 0 / 120px 60px repeat-x;
    mask: radial-gradient(60px 60px at 50% 100%, #000 99%, transparent 100%) 0 0 / 120px 60px repeat-x;
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--grad-cta);
    color: #fff;
    padding: 30px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,138,30,.12), transparent);
    background-size: 200% 100%;
    animation: shimmer 8s linear infinite;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .3s var(--ease);
}
.trust-item:hover { transform: translateY(-3px); }
.trust-icon {
    width: 48px; height: 48px;
    border-radius: 13px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}
.trust-item:hover .trust-icon { background: rgba(255,138,30,.25); transform: scale(1.08); }
.trust-item strong { display: block; font-family: var(--font-head); font-size: .98rem; }
.trust-item span { font-size: .82rem; color: rgba(255,255,255,.72); }

/* ============ CATEGORIES ============ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.category-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    padding: 26px 16px;
    text-align: center;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cat-color, var(--green-100)), transparent 60%);
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.category-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.category-card:hover::before { opacity: .45; }
.category-card:hover::after { transform: scaleX(1); }
.cat-emoji {
    font-size: 2.4rem;
    margin-bottom: 12px;
    position: relative;
    transition: transform .35s var(--ease-bounce);
    display: inline-block;
}
.category-card:hover .cat-emoji { transform: scale(1.2) rotate(-8deg); }
.category-card h3 { margin: 0 0 4px; font-size: 1rem; position: relative; }
.category-card p { margin: 0; font-size: .8rem; color: var(--text-muted); position: relative; }
.cat-1 { --cat-color: var(--green-100); }
.cat-2 { --cat-color: var(--orange-100); }
.cat-3 { --cat-color: var(--amber-100); }
.cat-4 { --cat-color: var(--blue-100); }
.cat-5 { --cat-color: var(--teal-100); }
.cat-6 { --cat-color: var(--orange-100); }

/* ============ FEATURES ============ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-line, var(--green-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 20px;
    transition: transform .35s var(--ease-bounce);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-6deg); }
.icon-green { background: var(--green-100); color: var(--green-700); }
.icon-orange { background: var(--orange-100); color: var(--orange-600); }
.icon-blue { background: var(--blue-100); color: var(--blue-600); }
.icon-amber { background: var(--amber-100); color: #b8860a; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: .94rem; }

/* ============ STEPS ============ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.step-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--ink-200);
    transition: all .35s var(--ease);
    position: relative;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: transparent; }
.step-num {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: green;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-green);
    transition: transform .35s var(--ease-bounce);
}
.step-card:hover .step-num { transform: scale(1.1) rotate(8deg); }
.step-card h3 { margin-bottom: 8px; }
.step-card p { margin: 0; color: var(--text-muted); }

/* ============ CTA ============ */
.section-cta {
    background: var(--grad-cta);
    color: #fff;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,138,30,.22), transparent 70%);
    pointer-events: none;
    animation: floatBlob 16s ease-in-out infinite;
}
.section-cta::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(63,201,138,.18), transparent 70%);
    pointer-events: none;
    animation: floatBlob 18s ease-in-out infinite reverse;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 50px;
    align-items: center;
    position: relative;
}
.cta-copy h2 { color: #fff; margin-bottom: 16px; }
.cta-copy p { color: rgba(255,255,255,.88); font-size: 1.08rem; max-width: 540px; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-visual { display: flex; flex-direction: column; gap: 16px; }
.cta-stat-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 14px;
    transition: transform .35s var(--ease);
}
.cta-stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.14); }
.cta-stat-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-stat-card span { color: rgba(255,255,255,.82); font-size: .9rem; }
/*.cta-stat-card-2 { margin-left: 30px; }*/

/* ============ PAGE HERO ============ */
.page-hero {
    background: var(--grad-cta);
    color: #fff;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,138,30,.22), transparent 70%);
    pointer-events: none;
    animation: floatBlob 14s ease-in-out infinite;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(63,201,138,.14), transparent 70%);
    pointer-events: none;
    animation: floatBlob 16s ease-in-out infinite reverse;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; max-width: 720px; margin-bottom: 14px; }
.page-hero h1 .accent-light { color:#c04b09; }
.page-hero p { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 600px; margin: 0; }

/* ============ TWO COL (About) ============ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col-copy p { color: var(--ink-600); font-size: 1.05rem; }
.story-stats {
    display: flex;
    gap: 36px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.story-stats > div { display: flex; flex-direction: column; }
.story-stats strong {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 800;
    background: green;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.story-stats span { font-size: .85rem; color: var(--text-muted); }

.story-image-card {
    position: relative;
    height: 440px;
    border-radius: var(--radius-xl);
    background: var(--grad-hero);
    background-size: 200% 200%;
    animation: gradShift 10s ease infinite;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.story-image-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255,138,30,.3), transparent 70%);
}
.story-emoji { font-size: 7rem; position: relative; animation: floatY 5s ease-in-out infinite; }
.story-float-card {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.story-float-card strong { display: block; font-family: var(--font-head); color: var(--green-800); }
.story-float-card p { margin: 0; font-size: .85rem; color: var(--text-muted); }

/* ============ MVV ============ */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mvv-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.mvv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon {
    width: 62px; height: 62px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
    transition: transform .35s var(--ease-bounce);
}
.mvv-card:hover .mvv-icon { transform: scale(1.1) rotate(-6deg); }
.mvv-card h3 { margin-bottom: 12px; }
.mvv-card p { margin: 0; color: var(--text-muted); }

/* ============ TIMELINE ============ */
.timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px; top: 10px; bottom: 10px;
    width: 2px;
    background: linear-gradient(var(--green-500),#c04b09);
}
.timeline-item {
    display: flex;
    gap: 24px;
    padding: 18px 0;
    align-items: flex-start;
    transition: transform .3s var(--ease);
}
.timeline-item:hover { transform: translateX(6px); }
.timeline-dot {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--green-600);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: all .3s var(--ease);
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    background: green;
    border-color: var(--green-500);
    box-shadow: var(--shadow-green);
}
.timeline-content { padding-top: 6px; }
.timeline-year {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .8rem;
    color: var(--orange-700);
    background: var(--orange-50);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.timeline-content h4 { margin: 0 0 6px; }
.timeline-content p { margin: 0; color: var(--text-muted); }

/* ============ CONTACT ============ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 30px; }
.info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; transition: transform .3s var(--ease); }
.info-item:hover { transform: translateX(4px); }
.info-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform .3s var(--ease-bounce);
}
.info-item:hover .info-icon { transform: scale(1.1) rotate(-6deg); }
.info-item h4 { margin: 0 0 4px; }
.info-item p { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.5; }
.info-social { margin-top: 0; }

.contact-form-wrap { position: relative; }
.contact-form-card {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: var(--radius-xl);
    padding: 38px;
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 6px; }
.form-sub { color: var(--text-muted); margin-bottom: 24px; }

/* ============ FORMS ============ */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .88rem;
    color: var(--ink-700);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--ink-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--ink-800);
    background: rgba(251,248,243,.6);
    transition: all .25s var(--ease);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(31,170,110,.14);
}
.field-error {
    color: var(--red-500);
    font-size: .8rem;
    min-height: 1em;
}

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: all .25s var(--ease);
}
.faq-item:hover { border-color: var(--green-500); }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--green-600); }
.faq-item summary {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--ink-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--green-600);
    transition: transform .25s var(--ease);
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: var(--text-muted); }

/* ============ AUTH / LOGIN ============ */
.auth-section { padding: 0; }
.auth-section main { padding-top: 0; }
.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--header-h));
}
.auth-aside {
    background: var(--grad-cta);
    color: #fff;
    padding: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.auth-aside::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,138,30,.24), transparent 70%);
    animation: floatBlob 14s ease-in-out infinite;
}
.auth-aside::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(63,201,138,.16), transparent 70%);
    animation: floatBlob 16s ease-in-out infinite reverse;
}
.auth-aside-inner { position: relative; max-width: 440px; }
.auth-aside .brand { margin-bottom: 40px; }
.auth-aside h1 { color: #fff; font-size: 2.2rem; margin-bottom: 16px; }
.auth-aside p { color: rgba(255,255,255,.88); font-size: 1.05rem; margin-bottom: 28px; }
.auth-features { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; }
.auth-features li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.94); }
.auth-check {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--grad-orange);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,138,30,.4);
}
.auth-aside-stats { display: flex; gap: 28px; }
.auth-aside-stats > div { display: flex; flex-direction: column; }
.auth-aside-stats strong {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.auth-aside-stats span { font-size: .82rem; color: rgba(255,255,255,.72); }

.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    background: var(--cream);
    position: relative;
}
.auth-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 400px at 80% 20%, rgba(31,170,110,.05), transparent 60%);
    pointer-events: none;
}
.auth-card { width: 100%; max-width: 440px; position: relative; }
.auth-card-head { margin-bottom: 28px; }
.auth-card-head h2 { margin-bottom: 6px; }
.auth-card-head p { color: var(--text-muted); margin: 0; }

.role-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 26px;
}
.role-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    background: #fff;
    border: 1.5px solid var(--ink-200);
    border-radius: var(--radius-sm);
    transition: all .25s var(--ease);
    text-align: center;
}
.role-tab span { display: flex; flex-direction: column; line-height: 1.2; }
.role-tab strong { font-family: var(--font-head); font-size: .9rem; color: var(--ink-800); }
.role-tab small { font-size: .72rem; color: var(--text-muted); }
.role-emoji { font-size: 1.5rem; transition: transform .25s var(--ease-bounce); }
.role-tab:hover { border-color: var(--green-500); transform: translateY(-2px); }
.role-tab:hover .role-emoji { transform: scale(1.15); }
.role-tab.active {
    background: green;
    border-color: var(--green-600);
    box-shadow: var(--shadow-green);
}
.role-tab.active strong { color: #fff; }
.role-tab.active small { color: rgba(255,255,255,.85); }
.role-tab.active .role-emoji { transform: scale(1.1); }

.password-wrap { position: relative; }
.password-wrap input { padding-right: 44px; }
.toggle-password {
    position: absolute;
    right: 10px; top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 6px;
    font-size: 1.1rem;
    color: var(--ink-500);
    line-height: 1;
    transition: color .2s;
}
.toggle-password:hover { color: var(--green-700); }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.checkbox { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--ink-600); cursor: pointer; }
.checkbox input { width: 16px; height: 16px; accent-color: var(--green-600); }
.link-muted { font-size: .88rem; color: var(--ink-500); font-weight: 500; transition: color .2s; }
.link-muted:hover { color: var(--green-700); }
.link-brand { color: var(--green-700); font-weight: 600; }
.link-brand:hover { color: var(--orange-600); }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 26px 0;
    color: var(--ink-400);
    font-size: .85rem;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ink-200);
}
.auth-foot { text-align: center; color: var(--text-muted); font-size: .92rem; margin: 0; }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--ink-900);
    color: rgba(255,255,255,.75);
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-aurora);
    background-size: 200% 100%;
    animation: shimmer 10s linear infinite;
}
.footer-grid {
    display: grid;
    grid-template-columns: 14.6fr 9fr 10fr 1fr 0.2fr;
    gap: 36px;
    padding-bottom: 20px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-desc { font-size: .92rem; line-height: 1.6; margin-bottom: 20px; max-width: 320px; }
.social-row { display: flex; gap: 10px; }
.social {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: #fff;
    transition: all .25s var(--ease);
}
.social:hover {
    background: var(--grad-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
}
.footer-col h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 18px;
    font-family: var(--font-head);
}
.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    transition: all .2s var(--ease);
}
.footer-col a:hover { color:#c04b09; transform: translateX(4px); }
.footer-contact { font-size: .9rem; line-height: 1.6; margin: 0 0 8px; color: rgba(255,255,255,.7); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding:10px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { margin: 0; font-size: .85rem; }
.made-in { color: rgba(255,255,255,.55); }

/* ============ ERROR ============ */
.error-page { text-align: center; padding: 100px 0; }
.error-page h1 { font-size: 2.4rem; margin-bottom: 16px; }
.error-page p { color: var(--text-muted); margin-bottom: 28px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-card-stack { height: 390px; max-width: 420px; margin: 0 auto; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-visual { flex-direction: row; }
    .cta-stat-card-2 { margin-left: 0; }
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(18px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--ink-200);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all .3s var(--ease);
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-link { padding: 14px 16px; border-radius: var(--radius-sm); }
    .nav-link.active::after { display: none; }
    .nav-link.active { background: var(--green-50); }
    .nav-cta { margin: 8px 0 0; text-align: center; }
    .auth-grid { grid-template-columns: 1fr; }
    .auth-aside { display: none; }
}

@media (max-width: 768px) {
    .section { padding:20px 0; }
    .hero { /*padding: 50px 0 100px;*/ }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .steps-grid { grid-template-columns: 1fr; }
    .mvv-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 24px; }
    .cta-visual { flex-direction: column; }
}

@media (max-width: 540px) {
    .container { padding: 0 18px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-card-stack { height: 350px; }
    .hero-card-main { width: 250px; right: 10px; }
    .hero-card-float { width: 205px; }
    .hero-card-float-2 { width: 185px; left: 10px; }
    .role-tabs { grid-template-columns: 1fr; }
    .role-tab { flex-direction: row; justify-content: flex-start; gap: 12px; padding: 12px 16px; }
    .role-tab span { flex-direction: row; align-items: baseline; gap: 8px; }
    .auth-main { padding: 36px 20px; }
    .page-hero { padding: 50px 0 44px; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
.hero {
    width: 100%;
    overflow: hidden;
}

.slideshow-wrapper {
    width: 100%;
}

.home-slideshow {
    width: 100%;
}

.slide {
    width: 100%;
}

.slideimg {
    width: 100%;
    height:600px; /* Banner height */
    overflow: hidden;
}

    .slideimg img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        display: block;
    }
@media(max-width:768px) {

    .slideimg {
        height: 220px;
    }
}

@media(min-width:769px) and (max-width:1200px) {

    .slideimg {
        height: 350px;
    }
}
@media(min-width:1200px) and (max-width:1440px) {

    .slideimg {
        height:450px;
    }
}
.vision-mission {
    padding:25px 0;
    background: radial-gradient(circle at top left, rgba(232,116,12,0.18), transparent 35%), radial-gradient(circle at bottom right, rgba(18,45,120,0.15), transparent 40%), linear-gradient(135deg, #fffaf3 0%, #ffffff 50%, #f3f7ff 100%);
    overflow: hidden;
}


.vm-row {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}


    .vm-row.reverse {
        flex-direction: row-reverse;
    }


.vm-image,
.vm-content {
    width: 50%;
}


    /* Image */

    .vm-image img {
        width: 100%;
        height: 350px;
        object-fit: fill;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }



    /* Content */

    .vm-content h2 {
        font-size: 30px;
        color: #c04b09;
        font-weight: 800;
        margin-bottom: 10px;
    }


    .vm-content p {
        font-size: 17px;
        line-height: 1.8;
        color: #555;
    }


.vm-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #c04b09;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}



/* Animation */

.animate-left {
    animation: leftSlide 1.2s ease forwards;
}


.animate-right {
    animation: rightSlide 1.2s ease forwards;
}



@keyframes leftSlide {

    from {
        opacity: 0;
        transform: translateX(-120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



@keyframes rightSlide {

    from {
        opacity: 0;
        transform: translateX(120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Mobile */

@media(max-width:768px) {

    .vm-row,
    .vm-row.reverse {
        flex-direction: column;
    }


    .vm-image,
    .vm-content {
        width: 100%;
    }


        .vm-content h2 {
            font-size: 32px;
        }

        .vm-image img {
            height: 250px;
        }
}
    .vm-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #c9a227;
    }


.vm-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #122d78;
    color: white;
    font-size: 30px;
}


.vm-card h3 {
    font-size: 24px;
    color: #122d78;
    margin-bottom: 15px;
}


.vm-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}



/* Responsive */

@media(max-width:992px) {

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #122d78 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

    .social i {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size:20px;
        height: 100%;
        text-align: center;
        color: #122d78 !important;
        font-family: "Font Awesome 6 Brands" !important;
        font-style: normal;
    }

    .social:hover {
        background: #c9a227;
    }

        .social:hover i {
            color: #fff !important;
        }

/* ABOUT SECTION */

.about-section {
    padding: 20px 0;
    background: linear-gradient(135deg,#fff7ed,#ffffff);
}


.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}


.about-image {
    width: 50%;
    position: relative;
}


    .about-image img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,.15);
    }


.about-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #c04b09;
    color: white;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(232,116,12,.3);
}


    .about-badge strong {
        display: block;
        font-size: 35px;
    }


    .about-badge span {
        font-size: 14px;
    }



.about-content {
    width: 50%;
}


.about-tag {
    color: #c04b09;
    font-weight: 700;
    font-size: 16px;
}


.about-content h2 {
    font-size: 35px;
    line-height: 1.2;
    margin: 8px 0 6px;
    color: #223812;
    font-weight: 800;
}


    .about-content h2 span {
        color: #c04b09;
    }


.about-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}



.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}


    .about-points div {
        display: flex;
        align-items: center;
        gap: 10px;
        background: white;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,.06);
    }


    .about-points span {
        width: 30px;
        height: 30px;
        background: #c04b09;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .about-points p {
        margin: 0;
        font-size: 14px;
    }



.about-btn {
    display: inline-block;
    background: #223812;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}



    .about-btn:hover {
        background: #c04b09;
    }



@media(max-width:768px) {

    .about-container {
        flex-direction: column;
    }

    .about-image,
    .about-content {
        width: 100%;
    }

        .about-image img {
            height: 300px;
        }

    .about-badge {
        right: 10px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }
}
.login-card {
    position: relative;
}

.card-home-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background: #2e432b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
    z-index: 10;
}

.card-home-btn:hover {
    background: #21321f;
    color: white;
    transform: scale(1.05);
}

.app-download {
    margin-top: 20px;
}

    .app-download a {
        width: 280px;
        height: 68px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 10px;
        border-radius: 16px;
        background: linear-gradient(135deg,#1f2937,#111827);
        color: #fff;
        text-decoration: none;
        border: 1px solid rgba(255,255,255,0.15);
        box-shadow: 0 8px 25px rgba(0,0,0,0.35);
        transition: .3s ease;
    }

        .app-download a:hover {
            background: linear-gradient(135deg,#da6525,#ff9d4d);
            transform: translateY(-3px);
        }


    /* Google Play Colorful Icon */
    .app-download i {
        font-size: 42px;
        background: linear-gradient( 135deg, #00e676 20%, #00b0ff 40%, #ffd600 60%, #ff1744 80% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


.app-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .app-text small {
        font-size: 11px;
        letter-spacing: 1.5px;
        color: #d1d5db;
    }

    .app-text strong {
        font-size: 22px;
        font-weight: 700;
        color: #fff;
    }
.contact-hero {
    background: linear-gradient(135deg, rgb(37 60 22), rgb(45 66 29)), url(/images/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.section {
    padding: 30px 0;
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-hero p {
    max-width: 650px;
    font-size: 18px;
    opacity: .95;
}