.g2c-page { font-family: 'Nunito', 'Segoe UI', sans-serif; }

/* ══ HERO — Deep Teal-Green (different from blue) ══ */
.g2c-hero {
    background: linear-gradient(135deg, #0a2218 0%, #0d3d26 45%, #0f4a2e 70%, #083020 100%);
    padding: 62px 20px 52px;
    position: relative; overflow: hidden;
}
.g2c-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 6%  60%, rgba(58,170,53,0.22)  0%, transparent 45%),
        radial-gradient(circle at 90% 18%, rgba(41,171,226,0.14) 0%, transparent 40%),
        radial-gradient(circle at 50% 95%, rgba(247,168,0,0.09)  0%, transparent 35%);
    pointer-events: none;
}
/* decorative circles */
.g2c-hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    border: 52px solid rgba(58,170,53,0.07);
    top: -180px; right: -130px; pointer-events: none;
}
.g2c-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr;
    align-items: center; gap: 52px;
    position: relative;
}
.g2c-hero-text .g2c-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(58,170,53,0.20);
    border: 1px solid rgba(58,170,53,0.40);
    color: #5fcc5a; font-size: 12px; font-weight: 800;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 6px 18px; border-radius: 50px;
    margin-bottom: 18px;
}
.g2c-hero-text h1 {
    font-size: clamp(26px, 3.8vw, 52px);
    font-weight: 900; color: #fff;
    margin: 0 0 8px; line-height: 1.15;
}
.g2c-hero-text h1 span.hl-green { color: #5fcc5a; }
.g2c-hero-text h1 span.hl-blue  { color: #29ABE2; }
.g2c-hero-text .g2c-sub {
    font-size: 15px; color: rgba(255,255,255,0.60);
    line-height: 1.70; margin: 0 0 30px; max-width: 500px;
}
.g2c-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-green {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px; border-radius: 50px;
    background: linear-gradient(135deg, #3AAA35, #2d8829);
    border: none; color: #fff;
    font-size: 14px; font-weight: 800; font-family: inherit;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 6px 22px rgba(58,170,53,0.40);
    transition: all .25s;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(58,170,53,0.52); color:#fff; text-decoration:none; }

.btn-ghost-green {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px; border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(95,204,90,0.35); color: rgba(255,255,255,0.82);
    font-size: 14px; font-weight: 800; font-family: inherit;
    cursor: pointer; text-decoration: none;
    transition: all .25s;
}
.btn-ghost-green:hover { border-color: #5fcc5a; color: #5fcc5a; text-decoration:none; }

/* hero info panel */
.g2c-hero-panel {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(58,170,53,0.22);
    border-radius: 24px; padding: 30px;
    backdrop-filter: blur(12px);
}
.g2c-hero-panel .hp-title {
    color: rgba(255,255,255,0.45);
    font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 18px;
}
.hp-stat-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-bottom: 18px;
}
.hp-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 16px 14px; text-align: center;
}
.hp-stat-num { font-size: 22px; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.hp-stat-num.cg { color: #5fcc5a; }
.hp-stat-num.cb { color: #29ABE2; }
.hp-stat-num.co { color: #F7A800; }
.hp-stat-num.cw { color: #fff; }
.hp-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.42); font-weight: 600; }

.hp-services-tag {
    background: rgba(58,170,53,0.12);
    border: 1px solid rgba(58,170,53,0.25);
    border-radius: 12px; padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
}
.hp-services-tag .hst-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(58,170,53,0.22); color: #5fcc5a;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.hp-services-tag .hst-text .hst-num { font-size: 20px; font-weight: 900; color: #fff; }
.hp-services-tag .hst-text .hst-lbl { font-size: 11px; color: rgba(255,255,255,0.48); font-weight: 600; }

/* ── BREADCRUMB ── */
.g2c-breadcrumb {
    background: #f0fff4; padding: 12px 20px;
    border-bottom: 1px solid #c8edce;
}
.g2c-breadcrumb .bc-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #5a8a66; font-weight: 600;
}
.g2c-breadcrumb a { color: #3AAA35; text-decoration: none; }
.g2c-breadcrumb a:hover { text-decoration: underline; }
.g2c-breadcrumb i { font-size: 10px; color: #9fcca8; }

/* ── ABOUT SECTION ── */
.g2c-about {
    background: #fff; padding: 58px 20px;
}
.g2c-about .container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.15fr 1fr;
    gap: 56px; align-items: start;
}
.g2c-about-text .sec-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: #eaf7e9; color: #2d8829;
    font-size: 11px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
    margin-bottom: 16px;
}
.g2c-about-text h2 {
    font-size: clamp(22px, 3vw, 36px); font-weight: 900;
    color: #1B2A4A; margin: 0 0 6px;
}
.g2c-about-text h2 span { color: #3AAA35; }
.g2c-hl {
    width: 54px; height: 4px; border-radius: 2px;
    background: linear-gradient(90deg, #3AAA35, #29ABE2);
    margin-bottom: 20px;
}
.g2c-about-text p {
    font-size: 15px; color: #4a6080; line-height: 1.80; margin: 0 0 14px;
}

/* contact card */
.g2c-contact-card {
    background: linear-gradient(135deg, #0d3d26, #0a2218);
    border-radius: 22px; padding: 30px 28px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(58,170,53,0.20);
}
.g2c-contact-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(58,170,53,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.g2c-contact-card .cc-head {
    display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.cc-icon-g {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(58,170,53,0.22);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #5fcc5a;
}
.g2c-contact-card .cc-head h3 { color: #fff; font-size: 16px; font-weight: 800; margin: 0; }
.g2c-contact-card .cc-head p  { color: rgba(255,255,255,0.48); font-size: 12px; margin: 0; }

.g2c-ci {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 13px 16px;
    margin-bottom: 10px; text-decoration: none;
    transition: background .2s;
}
.g2c-ci:hover { background: rgba(58,170,53,0.18); text-decoration: none; }
.g2c-ci .ci-ic {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
}
.ci-ic.mail  { background: rgba(41,171,226,0.22); color: #29ABE2; }
.ci-ic.phone { background: rgba(247,168,0,0.22);  color: #F7A800; }
.g2c-ci .ci-lbl { font-size: 10px; color: rgba(255,255,255,0.42); text-transform:uppercase; letter-spacing:.8px; font-weight:700; }
.g2c-ci .ci-val { font-size: 14px; color: #fff; font-weight: 800; }
.cc-note {
    text-align: center; margin-top: 16px;
    font-size: 12px; color: rgba(255,255,255,0.35);
}
.cc-note span { color: #5fcc5a; font-weight: 700; }

/* ── WHY CHOOSE SECTION ── */
.g2c-why {
    background: #f0fff4; padding: 60px 20px;
    border-top: 3px solid #d4edda;
}
.g2c-why .container { max-width: 1200px; margin: 0 auto; }

.g2c-sec-head { text-align: center; margin-bottom: 42px; }
.g2c-sec-head .sh-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
    margin-bottom: 14px;
}
.g2c-sec-head h2 {
    font-size: clamp(22px, 3vw, 36px); font-weight: 900;
    color: #1B2A4A; margin: 0 0 10px;
}
.g2c-sec-head h2 span { color: #3AAA35; }
.g2c-sec-head p { font-size: 15px; color: #5a7a66; max-width: 560px; margin: 0 auto; }

.g2c-why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media(max-width:900px){ .g2c-why-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .g2c-why-grid{ grid-template-columns:1fr; } }

.g2c-why-card {
    background: #fff; border-radius: 20px; padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(27,42,74,0.07);
    transition: transform .3s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.g2c-why-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    border-radius: 20px 20px 0 0;
}
.g2c-why-card.vc-green::before  { background: linear-gradient(90deg,#3AAA35,#2d8829); }
.g2c-why-card.vc-blue::before   { background: linear-gradient(90deg,#29ABE2,#1a8fc0); }
.g2c-why-card.vc-gold::before   { background: linear-gradient(90deg,#F7A800,#c98e00); }
.g2c-why-card.vc-navy::before   { background: linear-gradient(90deg,#1B2A4A,#2e4070); }
.g2c-why-card.vc-teal::before   { background: linear-gradient(90deg,#0891B2,#0672a0); }

.g2c-why-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(27,42,74,0.12); }

.wc-icon-box {
    width: 54px; height: 54px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
}
.g2c-why-card.vc-green .wc-icon-box { background: #eaf7e9; color: #3AAA35; }
.g2c-why-card.vc-blue  .wc-icon-box { background: #e8f7fe; color: #29ABE2; }
.g2c-why-card.vc-gold  .wc-icon-box { background: #fff8e1; color: #F7A800; }
.g2c-why-card.vc-navy  .wc-icon-box { background: #e8ecf5; color: #1B2A4A; }
.g2c-why-card.vc-teal  .wc-icon-box { background: #e0f4fa; color: #0891B2; }

.g2c-why-card h3 { font-size: 16px; font-weight: 800; color: #1B2A4A; margin: 0 0 8px; }
.g2c-why-card p  { font-size: 13px; color: #6a84a0; line-height: 1.65; margin: 0; }

/* ── MISSION SECTION ── */
.g2c-mission {
    background: linear-gradient(135deg, #0d3d26, #0a2218);
    padding: 60px 20px; position: relative; overflow: hidden;
}
.g2c-mission::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(58,170,53,0.14) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(41,171,226,0.10) 0%, transparent 40%);
    pointer-events: none;
}
.g2c-mission .container {
    max-width: 860px; margin: 0 auto;
    text-align: center; position: relative;
}
.g2c-mission .ms-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(58,170,53,0.20);
    border: 2px solid rgba(58,170,53,0.40);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #5fcc5a;
    margin: 0 auto 22px;
}
.g2c-mission h2 {
    font-size: clamp(22px,3vw,36px); font-weight: 900;
    color: #fff; margin: 0 0 8px;
}
.g2c-mission h2 span { color: #5fcc5a; }
.g2c-mission .ms-hl {
    width: 54px; height: 4px; border-radius: 2px;
    background: linear-gradient(90deg, #3AAA35, #29ABE2);
    margin: 0 auto 22px;
}
.g2c-mission p {
    font-size: 15px; color: rgba(255,255,255,0.62);
    line-height: 1.80; margin: 0 0 14px;
}
.g2c-mission .ms-quote {
    background: rgba(58,170,53,0.12);
    border: 1px solid rgba(58,170,53,0.28);
    border-radius: 16px; padding: 22px 28px;
    margin-top: 28px;
    font-size: 16px; font-style: italic; font-weight: 700;
    color: rgba(255,255,255,0.80);
    position: relative;
}
.g2c-mission .ms-quote::before {
    content: '\201C';
    font-size: 60px; line-height: 1;
    color: #3AAA35; position: absolute;
    top: -10px; left: 16px; font-family: Georgia, serif;
}

/* ── SERVICES GRID ── */
.g2c-services {
    background: #f7fbff; padding: 60px 20px;
}
.g2c-services .container { max-width: 1200px; margin: 0 auto; }

.g2c-srv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 36px;
}
@media(max-width:1050px){ .g2c-srv-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:720px) { .g2c-srv-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:400px) { .g2c-srv-grid{ grid-template-columns:1fr; } }

.g2c-srv-card {
    background: #fff; border-radius: 18px;
    overflow: hidden; box-shadow: 0 4px 18px rgba(27,42,74,0.08);
    transition: transform .3s, box-shadow .3s;
    display: flex; flex-direction: column;
    border: 1px solid #e8f0f8;
}
.g2c-srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(27,42,74,0.13);
    border-color: #29ABE2;
}

/* image area */
.srv-img-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3; background: #e0eff8;
}
.srv-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .4s;
}
.g2c-srv-card:hover .srv-img-wrap img { transform: scale(1.07); }

/* category color top bar */
.srv-img-wrap::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    z-index: 2;
}
.g2c-srv-card:nth-child(4n+1) .srv-img-wrap::before { background: #29ABE2; }
.g2c-srv-card:nth-child(4n+2) .srv-img-wrap::before { background: #3AAA35; }
.g2c-srv-card:nth-child(4n+3) .srv-img-wrap::before { background: #F7A800; }
.g2c-srv-card:nth-child(4n+4) .srv-img-wrap::before { background: #1B2A4A; }

/* number badge */
.srv-num {
    position: absolute; top: 10px; left: 10px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(27,42,74,0.75); color: #fff;
    font-size: 11px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px); z-index: 3;
}

/* hover overlay */
.srv-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(27,42,74,0.82) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 14px; z-index: 2;
}
.g2c-srv-card:hover .srv-overlay { opacity: 1; }
.srv-overlay a {
    display: inline-flex; align-items: center; gap: 6px;
    background: #29ABE2; color: #fff;
    font-size: 11px; font-weight: 800;
    padding: 6px 14px; border-radius: 20px;
    text-decoration: none; transition: background .2s;
}
.srv-overlay a:hover { background: #3AAA35; text-decoration: none; }

/* card body */
.srv-body {
    padding: 14px 16px 18px;
    flex: 1; display: flex; flex-direction: column; gap: 12px;
}
.srv-body h4 {
    font-size: 14px; font-weight: 800; color: #1B2A4A;
    margin: 0; line-height: 1.35;
}
.srv-apply-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 9px 0; border-radius: 10px; width: 100%;
    background: linear-gradient(135deg, #29ABE2, #1a8fc0);
    border: none; color: #fff;
    font-size: 13px; font-weight: 800; font-family: inherit;
    cursor: pointer; text-decoration: none;
    transition: all .22s;
    box-shadow: 0 3px 12px rgba(41,171,226,0.28);
    margin-top: auto;
}
.srv-apply-btn:hover {
    background: linear-gradient(135deg, #3AAA35, #2d8829);
    box-shadow: 0 5px 18px rgba(58,170,53,0.32);
    color: #fff; text-decoration: none;
    transform: translateY(-1px);
}

/* ── CTA ── */
.g2c-cta {
    background: linear-gradient(135deg, #0d3d26, #0a2218);
    padding: 64px 20px; text-align: center;
    position: relative; overflow: hidden;
}
.g2c-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(58,170,53,0.14) 0%, transparent 45%),
        radial-gradient(circle at 80% 40%, rgba(41,171,226,0.10) 0%, transparent 40%);
    pointer-events: none;
}
.g2c-cta .container { max-width: 680px; margin: 0 auto; position: relative; }
.g2c-cta .cta-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(58,170,53,0.20);
    border: 2px solid rgba(58,170,53,0.40);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #5fcc5a; margin: 0 auto 22px;
}
.g2c-cta h2 { font-size: clamp(22px,3vw,36px); font-weight:900; color:#fff; margin:0 0 14px; }
.g2c-cta h2 span { color: #5fcc5a; }
.g2c-cta p  { font-size:15px; color:rgba(255,255,255,0.55); margin:0 0 30px; line-height:1.70; }
.g2c-cta-btns { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* responsive */
@media(max-width:768px){
    .g2c-hero-inner { grid-template-columns:1fr; gap:28px; }
    .g2c-hero-panel { display:none; }
    .g2c-about .container { grid-template-columns:1fr; }
}