/* ============================================================
   Pest Control Website - Custom Styles
   Color: Sky Blue | Font: Lora
   ============================================================ */

/* --- Google Fonts: Lora --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* --- CSS Variables --- */
:root {
    --sky-50:  #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-300: #7dd3fc;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --sky-800: #075985;
    --sky-900: #0c4a6e;

    --primary:        var(--sky-500);
    --primary-dark:   var(--sky-600);
    --primary-darker: var(--sky-700);
    --primary-light:  var(--sky-100);
    --bg-light:       var(--sky-50);

    --text-dark:  #1e293b;
    --text-muted: #64748b;
}

/* --- Base Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Lora', Georgia, serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- Navbar --- */
.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(14, 165, 233, 0.15);
    padding: 14px 0;
}

.navbar-custom .navbar-brand {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar-custom .navbar-brand span {
    color: var(--sky-700);
}

.navbar-custom .nav-link {
    font-family: 'Lora', serif;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary) !important;
    background-color: var(--sky-50);
}

.navbar-custom .nav-cta {
    background-color: var(--primary);
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: 50px;
}

.navbar-custom .nav-cta:hover {
    background-color: var(--primary-dark);
    color: #fff !important;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, var(--sky-900) 0%, var(--sky-700) 50%, var(--sky-500) 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .hero-badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-section p.lead {
    color: var(--sky-100);
    font-size: 1.15rem;
}

/* Location Pages Hero - Same styling as home but shorter height */
.hero-section.location-hero {
    min-height: 75vh;
}

/* --- Buttons --- */
.btn-sky {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-sky:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
    color: #fff;
}

.btn-sky-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-sky-outline:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* --- Section Titles --- */
.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

.section-title span {
    color: var(--primary);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--sky-300));
    border-radius: 2px;
    margin: 18px 0 20px;
}

.section-divider.center {
    margin: 18px auto 20px;
}

/* --- Service Cards --- */
.service-card {
    background: #fff;
    border: 1px solid var(--sky-100);
    border-radius: 16px;
    padding: 0;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 24px 24px 28px;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--sky-300));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--sky-200);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.12);
    transform: translateY(-6px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--sky-100), var(--sky-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-body .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--sky-400));
    color: #fff;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--sky-700), var(--sky-500));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

/* --- Stats Banner --- */
.stats-section {
    background: var(--sky-900);
    padding: 50px 0;
}

.stat-item h3,
.stat-number {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.stat-item p,
.stat-label {
    color: var(--sky-200);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Testimonial Cards --- */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--sky-100);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.1);
    transform: translateY(-4px);
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--sky-200);
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.stars { color: #f59e0b; }

/* --- Contact Form --- */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
    border: 1px solid var(--sky-100);
}

.form-control, .form-select {
    font-family: 'Lora', serif;
    border: 1.5px solid var(--sky-200);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.25s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
    outline: none;
}

.form-label {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* --- Google Map --- */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.12);
    border: 3px solid var(--sky-100);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 420px;
}

/* --- Location Cards --- */
.location-card {
    background: #fff;
    border: 1.5px solid var(--sky-100);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}



/* --- Page Hero (inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--sky-800), var(--sky-600));
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 { color: #fff; }
.page-hero p  { color: var(--sky-100); }

/* ============================================================
   About Us Hero – Animations & Effects
   ============================================================ */

/* Keyframes */
@keyframes ahGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ahFadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes ahFadeInUp {
    from { opacity: 0; transform: translateY(35px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes ahScaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes ahFloatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%       { transform: translateY(-14px) rotate(4deg); }
    66%       { transform: translateY(-6px) rotate(-3deg); }
}

@keyframes ahParticleDrift {
    0%   { opacity: 0; transform: translateY(0); }
    10%  { opacity: 0.55; }
    90%  { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-170px) translateX(8px); }
}

@keyframes ahPulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(125,211,252,0.55); }
    80%  { box-shadow: 0 0 0 16px rgba(125,211,252,0); }
    100% { box-shadow: 0 0 0 0 rgba(125,211,252,0); }
}

@keyframes ahStatReveal {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ahTitleGlow {
    0%, 100% { text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
    50%       { text-shadow: 0 2px 12px rgba(0,0,0,0.25), 0 0 50px rgba(125,211,252,0.65); }
}


/* ============================================================
   Shared Page-Hero Animation System (Services / Contact / Locations)
   ============================================================ */

/* --- Shared keyframes --- */
@keyframes phFadeInDown {
    from { opacity: 0; transform: translateY(-32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes phFadeInUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes phScaleIn {
    from { opacity: 0; transform: scale(0.82); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes phFloatIcon {
    0%,100% { transform: translateY(0) rotate(0deg); }
    40%      { transform: translateY(-16px) rotate(5deg); }
    70%      { transform: translateY(-7px) rotate(-3deg); }
}
@keyframes phParticle {
    0%   { opacity: 0; transform: translateY(0) translateX(0); }
    12%  { opacity: 0.6; }
    88%  { opacity: 0.25; }
    100% { opacity: 0; transform: translateY(-190px) translateX(12px); }
}
@keyframes phPillPop {
    from { opacity: 0; transform: translateY(14px) scale(0.88); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes phPulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(125,211,252,.55); }
    75%  { box-shadow: 0 0 0 16px rgba(125,211,252,0); }
    100% { box-shadow: 0 0 0 0 rgba(125,211,252,0); }
}
@keyframes svcGradShift {
    0%,100% { background-position: 0% 60%; }
    50%      { background-position: 100% 40%; }
}
@keyframes contactGradShift {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
@keyframes locGradShift {
    0%,100% { background-position: 20% 80%; }
    50%      { background-position: 80% 20%; }
}
@keyframes svcGlowPulse {
    0%,100% { text-shadow: 0 0 0 transparent; }
    50%      { text-shadow: 0 0 45px rgba(14,165,233,.75), 0 0 80px rgba(125,211,252,.35); }
}
@keyframes contactGlowPulse {
    0%,100% { text-shadow: 0 0 0 transparent; }
    50%      { text-shadow: 0 0 45px rgba(56,189,248,.8), 0 0 80px rgba(186,230,253,.4); }
}
@keyframes locGlowPulse {
    0%,100% { text-shadow: 0 0 0 transparent; }
    50%      { text-shadow: 0 0 45px rgba(14,165,233,.7), 0 0 80px rgba(125,211,252,.3); }
}
@keyframes rippleRing {
    0%   { transform: translate(-50%,-50%) scale(0.4); opacity: .7; }
    100% { transform: translate(-50%,-50%) scale(2.8); opacity: 0; }
}
@keyframes locDotBlink {
    0%,100% { opacity: .12; transform: scale(1); }
    50%      { opacity: .45; transform: scale(1.5); }
}
@keyframes gridLineMove {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}
@keyframes chipFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Shared container & element rules --- */
.ph-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ph-particles { position:absolute; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
.ph-pt {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    animation: phParticle linear infinite;
}

.ph-icon {
    position: absolute;
    color: rgba(255,255,255,.07);
    animation: phFloatIcon ease-in-out infinite;
    pointer-events: none;
}

.ph-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: phFadeInDown .7s cubic-bezier(.22,1,.36,1) both,
               phPulseRing 3s ease 1.8s infinite;
}

.ph-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    animation: phFadeInDown .78s cubic-bezier(.22,1,.36,1) both;
}

.ph-highlight { color: var(--sky-300); }
.svc-glow     { animation: svcGlowPulse 3.5s ease 2s infinite; }
.contact-glow { animation: contactGlowPulse 3.5s ease 2s infinite; }
.loc-glow     { animation: locGlowPulse 3.5s ease 2s infinite; }

.ph-subtitle {
    color: var(--sky-100);
    font-size: 1.02rem;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.8;
    animation: phFadeInUp .8s cubic-bezier(.22,1,.36,1) both;
}

.ph-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
    animation: phFadeInUp .8s cubic-bezier(.22,1,.36,1) both;
}

.ph-btn-solid {
    background: #fff;
    color: var(--sky-700);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: .93rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.ph-btn-solid:hover {
    background: var(--sky-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
    color: var(--sky-800);
}

.ph-btn-outline {
    background: transparent;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: .93rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.65);
    transition: all .3s;
}
.ph-btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.ph-breadcrumb {
    animation: phFadeInUp .75s cubic-bezier(.22,1,.36,1) both;
}

/* ============================================================
   Services Hero
   ============================================================ */
.svc-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 35%, #0ea5e9 65%, #38bdf8 100%);
    background-size: 280% 280%;
    animation: svcGradShift 14s ease infinite;
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}

/* Animated grid lines overlay */
.svc-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridLineMove 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.svc-hero-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* Service pills */
.svc-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.svc-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    animation: phPillPop .55s cubic-bezier(.22,1,.36,1) both;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

/* ============================================================
   Contact Hero
   ============================================================ */
.contact-hero {
    background: linear-gradient(135deg, #082f49 0%, #0c4a6e 30%, #0284c7 65%, #0ea5e9 100%);
    background-size: 260% 260%;
    animation: contactGradShift 16s ease infinite;
    padding: 90px 0 74px;
    position: relative;
    overflow: hidden;
}

.con-hero-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* Ripple rings centred in hero */
.con-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.con-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1.5px solid rgba(125,211,252,.2);
    animation: rippleRing 5s ease-out infinite;
}

/* Contact info chips */
.con-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    animation: chipFadeUp .8s cubic-bezier(.22,1,.36,1) both;
}
.con-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .25s, transform .25s;
}
.con-chip:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   Locations Hero
   ============================================================ */
.loc-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 30%, #0369a1 60%, #0ea5e9 100%);
    background-size: 270% 270%;
    animation: locGradShift 15s ease infinite;
    padding: 90px 0 74px;
    position: relative;
    overflow: hidden;
}

.loc-hero-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* Animated dot grid */
.loc-dot-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    padding: 24px;
    pointer-events: none;
    z-index: 0;
}
.loc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    place-self: center;
    animation: locDotBlink 2.8s ease-in-out infinite;
}

/* Location stat chips */
.loc-stat-chips {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    padding: 16px 8px;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
    animation: phScaleIn .85s cubic-bezier(.22,1,.36,1) both;
}
.loc-stat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 26px;
    border-right: 1px solid rgba(255,255,255,.18);
}
.loc-stat-chip:last-child { border-right: none; }
.loc-stat-num {
    font-family: 'Lora', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.loc-stat-lbl {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--sky-200);
    margin-top: 5px;
}

/* ============================================================
   Responsive – disable heavy animations on mobile
   ============================================================ */
@media (max-width: 768px) {
    .svc-hero, .contact-hero, .loc-hero {
        animation: none !important;
    }
    .svc-hero { background: linear-gradient(135deg,#0c4a6e,#0ea5e9); }
    .contact-hero { background: linear-gradient(135deg,#082f49,#0ea5e9); }
    .loc-hero { background: linear-gradient(135deg,#0c4a6e,#0ea5e9); }
    .svc-hero-icons, .con-hero-icons, .loc-hero-icons,
    .ph-particles, .svc-hero-grid, .con-rings, .loc-dot-grid { display: none; }
    .svc-glow, .contact-glow, .loc-glow { animation: none; }
    .loc-stat-chips { gap: 8px; padding: 12px 6px; }
    .loc-stat-chip { padding: 4px 14px; border-right: none; }
    .con-chips { flex-direction: column; align-items: center; }
    .svc-hero-pills { gap: 6px; }
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-item {
    border: 1.5px solid var(--sky-100);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
    background: #fff;
}

.faq-item:hover {
    border-color: var(--sky-300);
}

.faq-item.faq-open {
    border-color: var(--sky-400);
    box-shadow: 0 6px 24px rgba(14,165,233,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--sky-50);
}

.faq-item.faq-open .faq-question {
    background: var(--sky-50);
    color: var(--primary-dark);
}

.faq-icon {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    border-top: 1px solid var(--sky-100);
    padding-top: 14px;
}

/* ============================================================
   Services Page – Image Card
   ============================================================ */
.svc-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    line-height: 0;
}

.svc-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.svc-img-wrap:hover img {
    transform: scale(1.05);
}

/* Coloured icon badge — bottom-left corner */
.svc-img-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}

/* Service number — top-right corner */
.svc-img-num {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.92);
    border: 2px solid;
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 4px 12px;
    line-height: 1.4;
}

/* ============================================================
   About hero wrapper */
.about-hero {
    background: linear-gradient(135deg, var(--sky-900) 0%, var(--sky-800) 30%, var(--sky-600) 70%, var(--sky-500) 100%);
    background-size: 280% 280%;
    animation: ahGradientShift 16s ease infinite;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Particles */
.about-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ah-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    animation: ahParticleDrift linear infinite;
}

/* Background floating icons */
.ah-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ah-icon-float {
    position: absolute;
    color: rgba(255,255,255,0.07);
    animation: ahFloatIcon ease-in-out infinite;
}

/* Eyebrow badge */
.ah-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: ahFadeInDown 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both,
               ahPulseRing 3s ease 1.5s infinite;
}

/* Main title */
.ah-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    animation: ahFadeInDown 0.75s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}

.ah-title-highlight {
    color: var(--sky-300);
    animation: ahTitleGlow 3.5s ease 2s infinite;
    display: inline;
}

/* Subtitle */
.ah-subtitle {
    color: var(--sky-100);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.75;
    animation: ahFadeInUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}

/* Stats row */
.ah-stats-row {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 18px 10px;
    margin-bottom: 24px;
    animation: ahScaleIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.6s both;
}

.ah-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 28px;
    animation: ahStatReveal 0.6s cubic-bezier(0.22,1,0.36,1) both;
}

.ah-stat-pill:nth-child(1) { animation-delay: 0.8s; }
.ah-stat-pill:nth-child(3) { animation-delay: 1s; }
.ah-stat-pill:nth-child(5) { animation-delay: 1.2s; }
.ah-stat-pill:nth-child(7) { animation-delay: 1.4s; }

.ah-stat-pill .ah-stat-num,
.ah-stat-pill span:nth-child(2) {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-family: 'Lora', serif;
}

.ah-stat-pill span:nth-child(2) {
    font-size: 1.4rem;
    color: var(--sky-300);
}

.ah-stat-label {
    font-size: 0.72rem;
    color: var(--sky-200);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

.ah-stat-divider {
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    margin: 0;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        animation: none;
        background: linear-gradient(135deg, var(--sky-900) 0%, var(--sky-700) 50%, var(--sky-500) 100%);
    }
    .ah-bg-icons,
    .about-hero-particles { display: none; }
    .ah-stats-row { gap: 8px; padding: 14px 8px; }
    .ah-stat-pill { padding: 4px 14px; }
    .ah-stat-divider { display: none; }
    .ah-title-highlight { animation: none; }
}

/* --- Footer --- */
.footer-main {
    background: var(--sky-900);
    padding: 72px 0 36px;
}

.footer-main h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.footer-main p,
.footer-main a {
    color: var(--sky-200);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s;
}

.footer-main a:hover { color: #fff; }

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Lora', serif;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--sky-200) !important;
    margin-right: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px);
}

.footer-bottom {
    background: var(--sky-950, #082f49);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: var(--sky-300);
    font-size: 0.85rem;
    margin: 0;
}

/* --- About Page --- */
.feature-list li {
    padding: 8px 0;
}

.story-box-animate {
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: all 0.3s ease;
}

.story-box-animate:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.2);
}

.float-icon {
    animation: float 3s ease-in-out infinite !important;
}
    border-bottom: 1px solid var(--sky-50);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.85rem;
}

/* ============================================================
   UTILITY CLASSES FOR REDUCED INLINE STYLES
============================================================ */

/* Location Cards */
.location-card-hover {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}



/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: #f59e0b;
    font-size: 0.85rem;
}

/* Emergency Response Banner */
.emergency-banner {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 14px 20px;
    margin: 24px 0;
    backdrop-filter: blur(10px);
}

.emergency-banner-title {
    color: #7dd3fc;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-banner-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    margin: 4px 0 0;
    padding-left: 26px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 180px;
    padding: 12px 16px;
    border-radius: 6px;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    color: #1e293b;
}

.newsletter-button {
    background: #fff;
    color: #0369a1;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #f0f9ff;
}

/**
 * Responsive adjustments for newsletter on mobile
 */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }
}

/* ========== INTERACTIVE MAP & DISTANCE CALCULATOR ========== */

/**
 * Google Maps Container — responsive, maintains aspect ratio
 */
#locationMap {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.13);
}

/**
 * Map info window styling (Google Maps popup)
 */
.gm-style-iw {
    border-radius: 8px !important;
    padding: 12px !important;
}

.gm-style-iw-d {
    overflow: hidden !important;
}

/**
 * Distance result text styling
 */
#distanceResult {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
}

#distanceResult i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/**
 * Responsive map container for mobile
 */
@media (max-width: 992px) {
    #locationMap {
        height: 350px;
    }
}

@media (max-width: 576px) {
    #locationMap {
        height: 300px;
    }
}

/* ========== CONTACT FORM ENHANCEMENTS ========== */

/**
 * Callback modal styling
 */
#callbackModal {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/**
 * Modal content fade-in animation
 */
#callbackModal > div {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/**
 * Form input styling
 */
#callbackModal input,
#callbackModal textarea,
#callbackModal select {
    transition: all 0.3s ease;
}

#callbackModal input:focus,
#callbackModal textarea:focus,
#callbackModal select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/**
 * Success alert styling
 */
.alert-success {
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================================
   PEST COMPARISON TABLE & FAQ SEARCH STYLES
============================================================ */

/* Pest Comparison Table */
.pest-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.pest-comparison-table thead tr {
    background: #0369a1;
    color: #fff;
}

.pest-comparison-table th {
    padding: 14px;
    text-align: left;
    border: 1px solid #bae6fd;
}

.pest-comparison-table tbody tr {
    background: #fff;
    border-bottom: 1px solid #e0f2fe;
}

.pest-comparison-table tbody tr:nth-child(even) {
    background: #f0f9ff;
}

.pest-comparison-table td {
    padding: 14px;
    border: 1px solid #e0f2fe;
}

.pest-comparison-table .risk-high {
    color: #dc2626;
    font-weight: 600;
}

.pest-comparison-table .risk-critical {
    color: #991b1b;
    font-weight: 700;
}

/* FAQ Search Input */
#faqSearch {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#faqSearchStatus {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 6px;
}

/* FAQ Item Hidden State */
.faq-item[style*="display: none"] {
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
}

.faq-item[style*="display: none"] ~ .faq-item[style*="display: none"] {
    /* No extra space for hidden items */
}

/* Service Quick Navigation Links */
.service-quick-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.service-quick-link div {
    background-size: cover;
    background-position: center;
}

/**
 * Responsive table for pest comparison on mobile
 */
@media (max-width: 768px) {
    .pest-comparison-table {
        font-size: 0.8rem;
    }
    
    .pest-comparison-table th,
    .pest-comparison-table td {
        padding: 10px;
    }
}

/* --- Utilities --- */
.bg-sky-light { background-color: var(--sky-50); }
.bg-sky-pale  { background-color: var(--sky-100); }
.text-sky     { color: var(--primary) !important; }
.border-sky   { border-color: var(--sky-200) !important; }

section { padding: 80px 0; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-section { min-height: 70vh; text-align: center; }
    .contact-form-wrap { padding: 30px 20px; }
    section { padding: 56px 0; }
}

/* ============================================================
   Hero Section – Animations & Effects
   ============================================================ */

/* --- Keyframes --- */
@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
    50%       { text-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 0 40px rgba(125,211,252,0.7); }
}

@keyframes badgePulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
    80%  { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

@keyframes particleDrift {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-180px) translateX(10px); opacity: 0; }
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes carouselGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 30px rgba(14,165,233,0.15); }
    50%       { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 60px rgba(125,211,252,0.45); }
}

@keyframes btnShine {
    0%   { left: -100%; }
    40%  { left: 150%; }
    100% { left: 150%; }
}

/* --- Animated gradient background --- */
.hero-section {
    background: linear-gradient(135deg, var(--sky-900) 0%, var(--sky-800) 30%, var(--sky-700) 60%, var(--sky-500) 100%);
    background-size: 250% 250%;
    animation: gradientShift 14s ease infinite;
}

/* --- Ensure container stays above particles --- */
.hero-section > .container {
    position: relative;
    z-index: 1;
}

/* --- Entrance animations --- */
.hero-badge {
    animation: heroFadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both,
               badgePulseRing 2.5s ease 2s infinite;
}

.hero-section h1 {
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-section h1 span {
    display: inline;
    color: var(--sky-300);
    animation: textGlow 3s ease 1.5s infinite;
}

.hero-section p.lead {
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-btns {
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-trust {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
.hero-trust .fa-check-circle { color: #7dd3fc; }

/* --- Carousel column entrance --- */
.hero-carousel-col {
    position: relative;
    animation: heroFadeInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* --- Carousel glow pulse --- */
.hero-carousel-inner-wrap {
    border-radius: 20px;
    overflow: hidden;
    animation: carouselGlow 4s ease-in-out infinite;
}
.hero-carousel-inner-wrap .carousel-item img {
    height: 420px;
    object-fit: cover;
}

/* --- Floating stat cards --- */
.hero-floating-card {
    position: absolute;
    top: 20px;
    left: -20px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 10;
    animation: floatCard 4s ease-in-out infinite;
}
.hero-float-label {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}
.hero-float-value {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-floating-card-2 {
    position: absolute;
    bottom: 40px;
    right: -10px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 10;
    animation: floatCard 5s ease-in-out 0.8s infinite;
}

/* --- Button shine sweep effect --- */
.btn-sky {
    position: relative;
    overflow: hidden;
}

.btn-sky::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: btnShine 5s ease 2.5s infinite;
    pointer-events: none;
}

/* --- Floating particles --- */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    animation: particleDrift linear infinite;
}

/* --- Responsive: disable heavy animations on mobile --- */
@media (max-width: 768px) {
    .hero-section {
        animation: none;
        background: linear-gradient(135deg, var(--sky-900) 0%, var(--sky-700) 50%, var(--sky-500) 100%);
    }
    .hero-section h1 span { animation: none; }
    .hero-particles { display: none; }
}

/* ============================================================
   SECTION BACKGROUND UTILITIES
   ============================================================ */
.hero-lead    { max-width: 520px; }
.section-desc { max-width: 560px; margin: 0 auto; font-size: 0.95rem; }
.section-bg-light         { background: #f8fafc; }
.section-bg-white         { background: #fff; }
.section-bg-gradient-sky  { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }
.section-newsletter       { background: linear-gradient(135deg, #0369a1, #0ea5e9); padding: 60px 0; }

/* ============================================================
   SERVICE CARD COMPONENT CLASSES
   ============================================================ */
.svc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.svc-card-title  { font-size: 1.1rem; margin-bottom: 8px; }
.svc-card-desc   { color: #64748b; font-size: 0.88rem; margin-bottom: 14px; line-height: 1.55; }
.svc-price-row   { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.svc-price-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Lora', serif;
}
.svc-price-label  { font-size: 0.78rem; color: #94a3b8; font-weight: 500; }
.svc-features     { list-style: none; padding: 0; margin: 0 0 18px; font-size: 0.82rem; color: #475569; }
.svc-feature-item { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.svc-feature-item:last-child { margin-bottom: 0; }
.svc-feature-icon { flex-shrink: 0; }
.svc-card-cta {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.svc-card-cta:hover { opacity: 0.88; color: #fff; }

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-us-box {
    background: linear-gradient(135deg, var(--sky-100), var(--sky-50));
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
}
.why-us-box-icon  { font-size: 5rem; color: var(--primary); margin-bottom: 20px; display: block; }
.why-us-box-title { color: var(--primary-darker); font-size: 2rem; }
.why-us-box-desc  { color: #475569; font-size: 0.9rem; margin-top: 12px; }
.reason-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
}
.reason-icon-wrap i { font-size: 1.1rem; }
.reason-title { font-size: 1rem; margin-bottom: 4px; }
.reason-desc  { color: #64748b; font-size: 0.88rem; margin: 0; }

/* ============================================================
   CTA SECTION BUTTONS & TEXT
   ============================================================ */
.cta-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.cta-title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-text  { color: #bae6fd; font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }
.cta-btn-white {
    background: #fff;
    color: #0369a1;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Lora', serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn-white:hover { background: var(--sky-50); color: var(--sky-800); transform: translateY(-2px); }
.cta-btn-outline-white {
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Lora', serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s;
    display: inline-block;
}
.cta-btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; transform: translateY(-2px); }

/* ============================================================
   LOCATION PREVIEW GRID (home / about)
   ============================================================ */
.loc-preview-icon  { color: var(--primary); font-size: 1.8rem; display: block; margin-bottom: 12px; }
.loc-preview-title { font-size: 0.95rem; margin: 0 0 4px; color: var(--text-dark); font-weight: 600; }
.loc-preview-text  { font-size: 0.78rem; color: #94a3b8; margin: 0; }

/* ============================================================
   REVIEW / TESTIMONIAL CARDS
   ============================================================ */
.stat-card      { background: #fff; border-radius: 12px; padding: 24px; }
.stat-card-text { color: #64748b; margin: 0; font-size: 0.9rem; }
.stat-value-amber { font-size: 2.2rem; color: #f59e0b; font-weight: 700; margin-bottom: 8px; }
.stat-value-green { font-size: 2.2rem; color: #10b981; font-weight: 700; margin-bottom: 8px; }
.stat-value-sky   { font-size: 2.2rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.review-text { margin: 0 0 16px; color: #334155; font-size: 0.9rem; line-height: 1.6; font-style: italic; }
.review-name { margin: 0; font-weight: 700; color: #1e293b; font-size: 0.9rem; }
.review-loc  { margin: 0; font-size: 0.8rem; }

/* ============================================================
   NEWSLETTER SECTION EXTRAS
   ============================================================ */
.newsletter-title     { color: #fff; font-size: clamp(1.8rem, 3vw, 2.2rem); margin-bottom: 14px; }
.newsletter-desc      { color: rgba(255,255,255,0.9); font-size: 1rem; margin-bottom: 0; line-height: 1.7; }
.newsletter-fine-print{ color: rgba(255,255,255,0.7); font-size: 0.78rem; margin: 12px 0 0; }

/* ============================================================
   SERVICE MAP SECTION (home)
   ============================================================ */
.area-list    { list-style: none; padding: 0; margin-bottom: 28px; }
.area-list li { padding: 6px 0; color: #334155; font-size: 0.92rem; }
.area-list .fa-location-dot { color: var(--primary); }
.map-caption  { color: #94a3b8; font-size: 0.82rem; margin-top: 12px; text-align: center; }

/* ============================================================
   ABOUT PAGE – INFO BOXES
   ============================================================ */
.info-box-gradient {
    background: linear-gradient(135deg, var(--sky-100), var(--sky-50));
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.info-box-icon-bg   { font-size: 8rem; color: var(--primary); opacity: 0.2; position: absolute; top: 20px; right: 20px; pointer-events: none; }
.info-box-main-icon { font-size: 4rem; color: var(--primary-darker); margin-bottom: 20px; display: block; }
.info-box-heading   { color: var(--primary-darker); }
.info-stat-value    { color: var(--primary); margin: 0; font-size: 1.6rem; }
.info-stat-label    { color: #64748b; font-size: 0.75rem; margin: 0; }

/* ============================================================
   ABOUT – BREADCRUMB IN PAGE HERO
   ============================================================ */
.page-hero .breadcrumb            { font-size: 0.85rem; }
.page-hero .breadcrumb-item > a   { color: var(--sky-300); }
.page-hero .breadcrumb-item.active{ color: var(--sky-200); }

/* ============================================================
   ABOUT – REASON CARDS (Why Choose Us)
   ============================================================ */
.reason-card {
    background: var(--sky-50);
    border-radius: 16px;
    border: 1px solid var(--sky-200);
    padding: 1.5rem;
    transition: all 0.3s;
}
.reason-card:hover { background: var(--sky-100); transform: translateY(-4px); }
.reason-card-icon  {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.6rem;
}
.reason-card-title { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-dark); }
.reason-card-desc  { color: var(--text-muted); font-size: 0.82rem; margin: 0; line-height: 1.6; }

/* ============================================================
   ABOUT – PROCESS STEPS
   ============================================================ */
.process-step  { flex: 0 0 20%; }
.process-num   {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
}
.process-title  { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-dark); }
.process-desc   { color: var(--text-muted); font-size: 0.8rem; margin: 0; line-height: 1.5; }
.process-arrow  { text-align: center; padding: 0 8px; color: #cbd5e1; }
.process-arrow .fa-arrow-right { font-size: 1.2rem; margin-top: 16px; }

/* ============================================================
   ABOUT – COVERAGE BOXES
   ============================================================ */
.coverage-box        { padding: 20px; border-radius: 12px; }
.coverage-box-blue   { background: #e0f2fe; }
.coverage-box-blue   h6 { color: #0369a1;  margin-bottom: 8px; }
.coverage-box-green  { background: #dcfce7; }
.coverage-box-green  h6 { color: #166534;  margin-bottom: 8px; }
.coverage-box-amber  { background: #fef3c7; }
.coverage-box-amber  h6 { color: #92400e;  margin-bottom: 8px; }
.coverage-box-pink   { background: #fce7f3; }
.coverage-box-pink   h6 { color: #831843;  margin-bottom: 8px; }
.coverage-box p      { color: #64748b; font-size: 0.85rem; margin: 0; }
.coverage-link       { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.coverage-link:hover { color: var(--primary-dark); }

/* ============================================================
   ABOUT – FAQ CTA BOX
   ============================================================ */
.about-faq-cta    { padding: 28px; background: #fff; border-radius: 16px; border: 1px solid var(--sky-100); text-align: center; }
.about-faq-cta h4 { color: #0369a1; margin-bottom: 10px; }
.about-faq-cta p  { color: #64748b; font-size: 0.9rem; margin-bottom: 16px; }

/* ============================================================
   STICKY MOBILE CTA BUTTON
   ============================================================ */
.sticky-cta-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
    display: none;
    z-index: 9999;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    animation: slideInUp 0.4s ease-out;
}

.sticky-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(14, 165, 233, 0.6);
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.sticky-cta-button.show {
    display: flex;
}

/* Mobile only - hide on desktop */
@media (min-width: 992px) {
    .sticky-cta-button {
        display: none !important;
    }
}

/* Responsive positioning for very small phones */
@media (max-width: 480px) {
    .sticky-cta-button {
        bottom: 16px;
        right: 16px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Animation for sticky button appearance */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for active/pulse effect */
@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
    }
    50% {
        box-shadow: 0 8px 48px rgba(14, 165, 233, 0.7);
    }
}

.sticky-cta-button.pulse {
    animation: ctaPulse 2s ease-in-out infinite;
}

/* FAQ Accordion — replace chevron with +/− */
.accordion .accordion-button::after,
.accordion-button::after {
    background-image: none !important;
    background-size: 0 !important;
    content: '+' !important;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: #0ea5e9;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    transition: none !important;
}
.accordion .accordion-button:not(.collapsed)::after,
.accordion-button:not(.collapsed)::after {
    content: '−' !important;
    color: #0ea5e9;
    transform: none !important;
}
/* Hide ? icon inside FAQ accordion buttons */
.accordion-button i.fa-circle-question {
    display: none !important;
}

