/* ==========================================================================
   GENERAL PEST CONTROL PAGE STYLES
   Call and Relief - The Best for Your Pest
   ========================================================================== */

:root {
    --gpc-navy: #081a2c;
    --gpc-navy-light: #0d2740;
    --gpc-green: #76b72a;
    --gpc-green-hover: #659f23;
    --gpc-green-tint: rgba(118, 183, 42, 0.08);
    --gpc-green-border: rgba(118, 183, 42, 0.35);
    --gpc-dark-text: #1a2a3a;
    --gpc-muted-text: #596b7d;
    --gpc-light-bg: #f8fafc;
    --gpc-white: #ffffff;
    --gpc-card-radius: 18px;
    --gpc-shadow-soft: 0 10px 30px rgba(8, 26, 44, 0.07);
    --gpc-shadow-hover: 0 20px 45px rgba(8, 26, 44, 0.14);
}

/* Base resets & typography */
.gpc-page {
    font-family: 'Inter', sans-serif;
    color: var(--gpc-dark-text);
    background-color: var(--gpc-white);
    overflow-x: hidden;
}

/* ==========================================================================
   COMMON TAGS & SECTION HEADINGS
   ========================================================================== */

.gpc-tag,
.gpc-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.gpc-tag-line {
    width: 32px;
    height: 3px;
    background-color: var(--gpc-green);
    border-radius: 2px;
    display: inline-block;
}

.gpc-tag-text {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gpc-green);
}

.gpc-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--gpc-navy);
    line-height: 1.2;
    margin-bottom: 14px;
}

.gpc-section-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gpc-muted-text);
    max-width: 650px;
}

.justify-center {
    justify-content: center;
}

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

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */

.gpc-hero {
    position: relative;
    background-color: var(--gpc-navy);
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 0 130px;
}

/* Split Background: Technician image right */
.gpc-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gpc-hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

/* Gradient blending image smoothly into deep navy left */
.gpc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #081a2c 42%,
        rgba(8, 26, 44, 0.96) 50%,
        rgba(8, 26, 44, 0.75) 62%,
        rgba(8, 26, 44, 0.25) 80%,
        rgba(8, 26, 44, 0.05) 100%
    );
}

.gpc-hero-container {
    position: relative;
    z-index: 2;
}

.gpc-hero-content {
    max-width: 600px;
}

.gpc-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.12;
    margin: 8px 0 18px;
    display: flex;
    flex-direction: column;
}

.title-white {
    color: var(--gpc-white);
}

.title-green {
    color: var(--gpc-green);
}

.gpc-hero-desc {
    font-size: 16.5px;
    line-height: 1.65;
    color: #cbd7e4;
    margin-bottom: 34px;
    max-width: 530px;
}

/* Hero Feature Badges */
.gpc-hero-features {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.gpc-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gpc-feature-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--gpc-green);
    background: rgba(118, 183, 42, 0.12);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gpc-green);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.gpc-hero-feature-item:hover .gpc-feature-circle {
    transform: scale(1.1);
    background-color: rgba(118, 183, 42, 0.25);
}

.gpc-feature-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gpc-white);
    line-height: 1.3;
}

/* Organic Wave Divider Transition */
.gpc-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.gpc-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 65px;
}

/* ==========================================================================
   2. PESTS WE TREAT SECTION
   ========================================================================== */

.gpc-pests-section {
    padding: 85px 0 75px;
    background-color: var(--gpc-white);
}

.gpc-pests-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.gpc-pests-left .gpc-section-intro {
    margin-bottom: 28px;
}

.gpc-pests-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 16px 28px;
}

.gpc-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gpc-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gpc-check-icon {
    color: var(--gpc-green);
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
    margin-top: 1px;
}

.gpc-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f3044;
    line-height: 1.4;
}

/* Right Composite Protection Card */
.gpc-protection-card-wrapper {
    display: flex;
    background-color: #f7faf4;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(118, 183, 42, 0.22);
    box-shadow: 0 16px 40px rgba(8, 26, 44, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gpc-protection-card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(8, 26, 44, 0.12);
}

.gpc-pest-image-side {
    width: 44%;
    position: relative;
    overflow: hidden;
}

.gpc-pest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gpc-protection-card-wrapper:hover .gpc-pest-photo {
    transform: scale(1.06);
}

.gpc-pest-info-side {
    width: 56%;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f7faf4 0%, #edf5e6 100%);
}

.gpc-info-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--gpc-green);
    background-color: var(--gpc-white);
    color: var(--gpc-green);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(118, 183, 42, 0.15);
}

.gpc-info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gpc-navy);
    line-height: 1.25;
    margin-bottom: 10px;
}

.gpc-info-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--gpc-muted-text);
    margin-bottom: 18px;
}

.gpc-info-accent-bar {
    width: 42px;
    height: 4px;
    background-color: var(--gpc-green);
    border-radius: 2px;
    display: block;
}

/* ==========================================================================
   3. WHAT'S INCLUDED SECTION (3 CARDS)
   ========================================================================== */

.gpc-included-section {
    padding: 85px 0 95px;
    background-color: #fbfcfe;
    border-top: 1px solid #edf2f7;
}

.gpc-included-header {
    margin-bottom: 50px;
}

.gpc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.gpc-card {
    background-color: var(--gpc-white);
    border-radius: var(--gpc-card-radius);
    overflow: hidden;
    border: 1px solid #e9edf2;
    box-shadow: var(--gpc-shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.gpc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gpc-shadow-hover);
    border-color: rgba(118, 183, 42, 0.4);
}

.gpc-card-image-box {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.gpc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gpc-card:hover .gpc-card-img {
    transform: scale(1.06);
}

/* Overlapping Badge Icon */
.gpc-card-badge-circle {
    position: absolute;
    bottom: -22px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--gpc-white);
    border: 2px solid var(--gpc-green);
    color: var(--gpc-green);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 6px 16px rgba(8, 26, 44, 0.12);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.gpc-card:hover .gpc-card-badge-circle {
    transform: scale(1.12);
    background-color: var(--gpc-green);
    color: var(--gpc-white);
}

.gpc-card-body {
    padding: 36px 26px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gpc-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gpc-navy);
    margin-bottom: 12px;
}

.gpc-card-paragraph {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--gpc-muted-text);
    margin-bottom: 22px;
}

.gpc-card-subheading {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gpc-dark-text);
    margin-bottom: 12px;
}

.gpc-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.gpc-card-list li {
    font-size: 13.5px;
    line-height: 1.45;
    color: #38495a;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.gpc-card-list li i {
    color: var(--gpc-green);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Roof Void Highlights */
.gpc-void-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.gpc-highlight-pill {
    background-color: #f4f8ee;
    border: 1px solid rgba(118, 183, 42, 0.25);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #273b4e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gpc-highlight-pill i {
    color: var(--gpc-green);
    font-size: 16px;
}

/* ==========================================================================
   4. PACKAGES SECTION
   ========================================================================== */

.gpc-packages-section {
    padding: 85px 0 95px;
    background-color: var(--gpc-white);
}

.gpc-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
    align-items: stretch;
}

.gpc-pkg-card {
    background-color: var(--gpc-white);
    border: 1.5px solid #e5ebf1;
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--gpc-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gpc-pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gpc-shadow-hover);
}

.gpc-pkg-card.featured {
    border-color: var(--gpc-green);
    background: linear-gradient(180deg, #ffffff 0%, #fafff5 100%);
    box-shadow: 0 16px 40px rgba(118, 183, 42, 0.16);
    transform: scale(1.02);
}

.gpc-pkg-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.gpc-pkg-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gpc-green);
    color: var(--gpc-white);
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(118, 183, 42, 0.35);
}

.gpc-pkg-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gpc-navy);
    display: block;
    margin-bottom: 8px;
}

.gpc-pkg-desc {
    font-size: 13.5px;
    color: var(--gpc-muted-text);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 42px;
}

.gpc-pkg-price {
    display: flex;
    flex-direction: column;
    padding-bottom: 22px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 22px;
}

.gpc-pkg-price .currency {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gpc-muted-text);
    letter-spacing: 0.5px;
}

.gpc-pkg-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--gpc-navy);
    line-height: 1;
    margin: 4px 0;
}

.gpc-pkg-price .period {
    font-size: 13px;
    color: var(--gpc-muted-text);
}

.gpc-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.gpc-pkg-features li {
    font-size: 14px;
    line-height: 1.45;
    color: #2f4051;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gpc-pkg-features li i {
    color: var(--gpc-green);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.gpc-pkg-btn {
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.btn-outline-green {
    border: 1.5px solid var(--gpc-green);
    color: var(--gpc-green);
    background-color: transparent;
}

.btn-outline-green:hover {
    background-color: var(--gpc-green);
    color: var(--gpc-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(118, 183, 42, 0.25);
}

/* ==========================================================================
   5. SAFE, COMPLIANT & TRANSPARENT SECTION
   ========================================================================== */

.gpc-safe-section {
    padding: 85px 0 95px;
    background-color: #fbfcfe;
    border-top: 1px solid #edf2f7;
}

.gpc-safe-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
}

.gpc-safe-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 16px 40px rgba(8, 26, 44, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gpc-safe-img {
    width: 100%;
    height: 100%;
    /* Focus specifically on the sprayer wand misting into the flower shrubs */
    object-fit: cover;
    object-position: 22% 85%;
    display: block;
    transition: transform 0.6s ease;
}

.gpc-safe-img-wrapper:hover .gpc-safe-img {
    transform: scale(1.05);
}

.gpc-safe-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0 34px;
}

.gpc-safe-paragraphs p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gpc-muted-text);
    margin: 0;
}

/* 3 Circular Badges Row */
.gpc-safe-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid #e9edf2;
}

.gpc-safe-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gpc-safe-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--gpc-green);
    background-color: var(--gpc-white);
    color: var(--gpc-green);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(118, 183, 42, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.gpc-safe-badge-item:hover .gpc-safe-badge-icon {
    transform: scale(1.1);
    background-color: var(--gpc-green);
    color: var(--gpc-white);
}

.gpc-safe-badge-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gpc-navy);
    line-height: 1.3;
}

/* ==========================================================================
   6. CALL TO ACTION BANNER (EXACT DESIGN)
   ========================================================================== */

.gpc-cta-banner {
    position: relative;
    background: linear-gradient(135deg, #071727 0%, #0c243a 100%);
    padding: 60px 0;
    color: var(--gpc-white);
    overflow: hidden;
}

/* Corner decorative leaves */
.gpc-leaf-decor {
    position: absolute;
    pointer-events: none;
    color: rgba(118, 183, 42, 0.22);
    font-size: 70px;
    z-index: 1;
}

.gpc-leaf-decor.left {
    top: -10px;
    left: 20px;
    transform: rotate(25deg);
}

.gpc-leaf-decor.right {
    bottom: -15px;
    right: 25px;
    transform: rotate(-35deg);
}

.gpc-leaf-decor .leaf-sub {
    font-size: 45px;
    position: absolute;
    top: 30px;
    left: 35px;
    opacity: 0.7;
}

.gpc-cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.gpc-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.gpc-cta-tag-line {
    width: 24px;
    height: 3px;
    background-color: var(--gpc-green);
    border-radius: 2px;
}

.gpc-cta-tag-text {
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gpc-green);
}

.gpc-cta-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.22;
    color: var(--gpc-white);
    margin: 0;
}

.gpc-cta-heading .text-green {
    color: var(--gpc-green);
}

/* Middle Trust Icons */
.gpc-cta-middle {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gpc-cta-pill {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gpc-cta-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--gpc-green);
    background: rgba(118, 183, 42, 0.12);
    color: var(--gpc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.gpc-cta-pill:hover .gpc-cta-icon-circle {
    transform: scale(1.1);
    background-color: rgba(118, 183, 42, 0.25);
}

.gpc-cta-pill-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gpc-white);
    line-height: 1.3;
}

/* Right Phone CTA Button */
.gpc-cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gpc-cta-phone-btn {
    background-color: var(--gpc-green);
    color: var(--gpc-white);
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(118, 183, 42, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gpc-cta-phone-btn:hover {
    background-color: var(--gpc-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(118, 183, 42, 0.45);
    color: var(--gpc-white);
}

.gpc-cta-subtext {
    font-size: 12px;
    color: #9ab3cb;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Active dropdown highlight */
.dropdown-menu li a.active-dropdown {
    background-color: #f1f8e9;
    color: var(--gpc-green);
    font-weight: 600;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1200px) {
    .gpc-hero-title {
        font-size: 46px;
    }
    
    .gpc-hero-bg-img {
        width: 50%;
    }
    
    .gpc-cta-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .gpc-cta-left {
        width: 100%;
        text-align: center;
    }
    
    .gpc-cta-tag {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .gpc-hero {
        padding: 70px 0 100px;
        min-height: auto;
    }
    
    .gpc-hero-bg-img {
        width: 100%;
        opacity: 0.35;
    }
    
    .gpc-hero-overlay {
        background: linear-gradient(180deg, rgba(8, 26, 44, 0.94) 0%, rgba(8, 26, 44, 0.98) 100%);
    }
    
    .gpc-pests-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gpc-cards-grid,
    .gpc-packages-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gpc-pkg-card.featured {
        transform: none;
    }
    
    .gpc-pkg-card.featured:hover {
        transform: translateY(-6px);
    }
    
    .gpc-safe-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .gpc-safe-img-wrapper {
        height: 340px;
    }
    
    .gpc-cta-middle {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gpc-hero-title {
        font-size: 38px;
    }
    
    .gpc-section-title {
        font-size: 30px;
    }
    
    .gpc-hero-features {
        gap: 18px;
    }
    
    .gpc-pests-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gpc-protection-card-wrapper {
        flex-direction: column;
    }
    
    .gpc-pest-image-side,
    .gpc-pest-info-side {
        width: 100%;
    }
    
    .gpc-pest-image-side {
        height: 200px;
    }
    
    .gpc-safe-badges-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .gpc-cta-heading {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gpc-hero-title {
        font-size: 32px;
    }
    
    .gpc-hero-desc {
        font-size: 15px;
    }
    
    .gpc-feature-circle {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    .gpc-cta-phone-btn {
        font-size: 18px;
        padding: 12px 22px;
    }
}
