/* 
   VALORA CREST INVESTMENTS - STYLE SHEET
   Color Palette:
   - Primary: Deep Green (#0F5E3B)
   - Secondary: Gold (#D4A017)
   - White: #FFFFFF
   - Dark Gray: #333333
   - Light Gray background: #F5F5F5
*/

/* ----------------------------------------------------
   1. VARIABLES & DESIGN SYSTEM
---------------------------------------------------- */
:root {
    --primary: #0B5AA6;
    --primary-rgb: 11, 90, 166;
    --primary-light: #1E88E5;
    --primary-dark: #073866;
    --secondary: #F58220;
    --secondary-rgb: 245, 130, 32;
    --secondary-light: #FF9E42;
    --dark: #0F172A;
    --dark-rgb: 15, 23, 42;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --gray-light: #E2E8F0;
    --gray: #64748B;
    --transition-fast: 0.25s ease;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 15px rgba(245, 130, 32, 0.45);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --container-width: 1200px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* ----------------------------------------------------
   2. RESET & BASE STYLES
---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--light);
}

/* ----------------------------------------------------
   3. TYPOGRAPHY & COMMONS
---------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

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

.highlight-green {
    color: var(--primary);
}

.highlight-gold {
    color: var(--secondary);
}

/* ----------------------------------------------------
   4. BUTTONS & UI ELEMENTS
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 94, 59, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 160, 23, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.btn-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.btn-card-link svg {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    transition: var(--transition-fast);
}

.btn-card-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.btn-card-link:hover svg {
    transform: translateX(4px);
    color: var(--secondary);
}

.btn-block {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-medium);
    border: 2px solid var(--secondary);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ----------------------------------------------------
   5. TOP INFO BAR & HEADER / NAV
---------------------------------------------------- */
.top-bar {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item:hover {
    color: var(--secondary);
}

.top-bar-item svg {
    width: 15px;
    height: 15px;
    color: var(--secondary);
}

.top-bar-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

/* Navigation Header */
.header {
    background-color: var(--white);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header.scrolled .header-container {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 64px;
    width: auto;
    max-width: 270px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
    transition: var(--transition-medium);
}

.header.scrolled .brand-logo-img {
    height: 50px;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    max-width: 290px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    margin-bottom: 1.25rem;
    display: block;
}

.logo-icon-wrapper {
    width: 54px;
    height: 54px;
    transition: var(--transition-medium);
}

.header.scrolled .logo-icon-wrapper {
    width: 46px;
    height: 46px;
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 3.5px;
    color: var(--gray);
    margin-top: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.mobile-cta {
    display: none;
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger Open States */
.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ----------------------------------------------------
   6. HERO SECTION
---------------------------------------------------- */
.hero {
    position: relative;
    height: calc(100vh - 125px);
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('hero_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 90, 166, 0.92) 0%, rgba(11, 90, 166, 0.82) 45%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 750px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Hero Alert Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(245, 130, 32, 0.18);
    border: 1.5px solid var(--secondary);
    color: var(--secondary-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(4px);
    animation: badgePulse 2.5s infinite ease-in-out;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-glow);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(245, 130, 32, 0.7);
    }
}

/* Highlights Bar */
.hero-highlights {
    position: relative;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 5;
    border-top: 4px solid var(--secondary);
    padding: 1.75rem 0;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.highlight-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(15, 94, 59, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--primary);
    flex-shrink: 0;
}

.highlight-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

/* ----------------------------------------------------
   7. ABOUT US & STATS
---------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.about-text-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.about-text-content p strong {
    color: var(--dark);
}

/* Image Graphic container */
.about-graphic-block {
    position: relative;
}

.about-image-container {
    position: relative;
    padding: 1.5rem;
}

.image-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2.5rem);
    height: calc(100% - 2.5rem);
    border: 4px solid var(--secondary);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.shield-illustration {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    transform: translate(2rem, 2rem);
    transition: var(--transition-medium);
    border-bottom: 6px solid var(--primary);
}

.shield-illustration:hover {
    transform: translate(2rem, 1.5rem);
    box-shadow: var(--shadow-glow);
}

.graphic-svg {
    max-height: 300px;
    margin: 0 auto;
}

.pin-ring {
    animation: ringPulse 2s infinite ease-out;
    transform-origin: center;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2.25rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid transparent;
    transition: var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 94, 59, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1.5rem auto;
    border: 1px dashed var(--primary);
    transition: var(--transition-fast);
}

.stat-card:hover .stat-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
    border-style: solid;
}

.stat-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-plus {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

/* ----------------------------------------------------
   8. VISION, MISSION, & VALUES
---------------------------------------------------- */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4.5rem;
}

.vm-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    z-index: 1;
    border-left: 6px solid var(--primary);
    transition: var(--transition-medium);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary);
}

.card-glow-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition-medium);
}

.vm-card:hover .card-glow-bg {
    transform: translate(-10%, 10%);
}

.vm-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vm-icon-header svg {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.vm-icon-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.vm-text {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

/* Core Values Grid */
.core-values-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary);
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 160, 23, 0.1);
    color: var(--secondary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ----------------------------------------------------
   9. SERVICES SECTION
---------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary);
}

.service-icon-banner {
    background-color: rgba(15, 94, 59, 0.04);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-banner {
    background-color: var(--primary);
    color: var(--white);
}

.service-icon-banner svg {
    width: 44px;
    height: 44px;
}

.service-card-body {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-list {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-list li {
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li span {
    color: var(--secondary);
    font-weight: 700;
}

/* ----------------------------------------------------
   9.5 TERMITE SPOTLIGHT SECTION (Valora Shield™)
---------------------------------------------------- */
.termite-spotlight {
    background: linear-gradient(135deg, #073866 0%, #052E56 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--secondary);
}

.termite-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.termite-spotlight .container {
    position: relative;
    z-index: 2;
}

.termite-spotlight .section-tag {
    color: var(--secondary-light);
    font-weight: 700;
}

.termite-spotlight .section-title {
    color: var(--white);
}

.termite-spotlight-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
}

.termite-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.termite-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 300;
}

.termite-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--secondary);
    padding: 1.25rem 1.75rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.termite-stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.termite-stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.termite-services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.termite-service-item {
    display: flex;
    gap: 1.25rem;
}

.termite-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.15);
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    border: 1px solid var(--secondary);
    font-size: 0.9rem;
}

.termite-item-content h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.termite-item-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.5;
}

.termite-graphic {
    position: relative;
    display: flex;
    justify-content: center;
}

.termite-graphic-wrapper {
    position: relative;
    padding: 1rem;
    width: 100%;
    max-width: 420px;
}

.termite-image-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: visible;
}

.termite-image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 1.5rem);
    height: calc(100% - 1.5rem);
    border: 4px solid var(--secondary);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.termite-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(245, 130, 32, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: translate(1.25rem, 1.25rem);
    transition: var(--transition-medium);
}

.termite-image:hover {
    transform: translate(1.25rem, 0.75rem);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(245, 130, 32, 0.3);
}

.termite-badge-floating {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    z-index: 10;
    background: var(--secondary);
    color: var(--white);
    padding: 1.25rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.2;
    transform: rotate(-8deg);
    border: 3.5px solid var(--white);
    animation: floatingPulse 4s infinite ease-in-out;
}

@keyframes floatingPulse {
    0%, 100% {
        transform: translateY(0) rotate(-8deg);
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }
    50% {
        transform: translateY(-8px) rotate(-8deg);
        box-shadow: var(--shadow-lg), 0 0 25px rgba(245, 130, 32, 0.75);
    }
}

/* ----------------------------------------------------
   10. COMPETITIVE ADVANTAGES
---------------------------------------------------- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.adv-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.75rem;
    transition: var(--transition-medium);
    border-right: 4px solid transparent;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-right-color: var(--secondary);
}

.adv-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    background-color: var(--light);
    color: var(--gray);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.adv-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(15, 94, 59, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.adv-card:hover .adv-icon {
    background-color: var(--primary);
    color: var(--white);
}

.adv-icon svg {
    width: 28px;
    height: 28px;
}

.adv-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.adv-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ----------------------------------------------------
   11. OPERATIONAL STRUCTURE
---------------------------------------------------- */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--gray-light);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-node {
    position: relative;
    width: 50%;
    padding: 1.5rem 3rem;
    z-index: 2;
}

/* Left node alignment */
.timeline-node:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Right node alignment */
.timeline-node:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Badge overlay in the middle */
.node-badge {
    position: absolute;
    top: 1.75rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 3;
    transition: var(--transition-medium);
}

/* Position badge */
.timeline-node:nth-child(odd) .node-badge {
    right: -20px;
}

.timeline-node:nth-child(even) .node-badge {
    left: -20px;
}

.node-content {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border-bottom: 4px solid var(--primary);
}

.timeline-node:hover .node-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary);
}

.timeline-node:hover .node-badge {
    background-color: var(--secondary);
    transform: scale(1.1);
}

.node-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.node-content p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ----------------------------------------------------
   12. TESTIMONIAL SLIDER
---------------------------------------------------- */
.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 4.5rem 5rem 3.5rem 5rem;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--secondary);
    overflow: hidden;
}

.testimonial-slides {
    position: relative;
    height: auto;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium);
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-quote {
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(214, 160, 23, 0.15);
    line-height: 1;
    position: absolute;
    top: -3.5rem;
    left: -1rem;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.author-company {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Arrows controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--white);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-arrow.prev {
    left: 1.25rem;
}

.slider-arrow.next {
    right: 1.25rem;
}

/* Indicator dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-light);
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 5px;
}

/* ----------------------------------------------------
   13. FAQ ACCORDION
---------------------------------------------------- */
.faq-container-width {
    max-width: 800px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 94, 59, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    background-color: var(--white);
    transition: var(--transition-medium);
}

.faq-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition-medium);
}

.faq-arrow svg {
    width: 18px;
    height: 18px;
}

/* Active states */
.faq-question[aria-expanded="true"] {
    background-color: rgba(15, 94, 59, 0.02);
    border-bottom: 1px solid var(--gray-light);
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-inner {
    padding: 1.5rem 2rem;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    background-color: rgba(15, 94, 59, 0.01);
}

/* ----------------------------------------------------
   14. CONTACT US & MAP
---------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.contact-info-panel h3 {
    font-size: 1.65rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-panel-desc {
    color: var(--gray);
    margin-bottom: 2.5rem;
}

/* Contact detail list */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.contact-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.item-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition-fast);
}

.contact-list-item:hover .item-icon-circle {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.item-icon-circle svg {
    width: 22px;
    height: 22px;
}

.item-text {
    display: flex;
    flex-direction: column;
}

.item-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.item-val {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

/* Stylized Vector Map */
.map-placeholder {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

.map-art {
    display: block;
}

.pin-ring {
    transform-origin: 0px 0px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 94, 59, 0.95);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.map-overlay span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.map-overlay small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Form Panel */
.contact-form-panel {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 5px solid var(--secondary);
}

.form-title {
    font-size: 1.65rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 2.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.required {
    color: red;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background-color: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    color: var(--dark);
    transition: var(--transition-fast);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    background-color: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
}

/* Validation Style overrides */
.input-wrapper.error input,
.input-wrapper.error select,
.input-wrapper.error textarea {
    border-color: #e3342f;
    background-color: #fffafb;
}

.error-msg {
    display: none;
    color: #e3342f;
    font-size: 0.78rem;
    margin-top: 0.35rem;
    font-weight: 500;
}

.input-wrapper.error .error-msg {
    display: block;
}

/* Form success panel */
.success-banner {
    display: none;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Spinner element for submitting state */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Submitting state toggles */
.submitting .btn-text {
    display: none;
}

.submitting .spinner {
    display: inline-block;
}

.submitting {
    pointer-events: none;
    opacity: 0.8;
}

/* ----------------------------------------------------
   15. FOOTER
---------------------------------------------------- */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-top: 4px solid var(--secondary);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 4rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-svg {
    width: 48px;
    height: 48px;
}

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

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 1px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

/* Social icons layout */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-circle:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-circle svg {
    width: 18px;
    height: 18px;
}

/* Bottom Bar */
.footer-bottom {
    background-color: rgba(0,0,0,0.25);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 0.8rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ----------------------------------------------------
   16. ANIMATIONS & REVEALS
---------------------------------------------------- */
.reveal-fade,
.reveal-slide-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-slide-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

/* Animation triggers */
.active.reveal-fade,
.active.reveal-slide-up,
.active.reveal-left,
.active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

/* Delay helpers */
.active[data-delay="100"] { transition-delay: 0.1s; }
.active[data-delay="200"] { transition-delay: 0.2s; }
.active[data-delay="300"] { transition-delay: 0.3s; }
.active[data-delay="400"] { transition-delay: 0.4s; }

/* ----------------------------------------------------
   16.5 SUB-PAGE BANNERS
---------------------------------------------------- */
.page-banner {
    position: relative;
    padding: 5rem 0;
    background-image: url('hero_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 90, 166, 0.95) 0%, rgba(7, 56, 102, 0.98) 100%);
    z-index: 1;
}

.page-banner-container {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-banner-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ----------------------------------------------------
   17. RESPONSIVE DESIGN (MEDIA QUERIES)
---------------------------------------------------- */

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    /* Termite Spotlight Grid */
    .termite-spotlight-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3rem;
    }
    
    /* Services & Stats grids */
    .services-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Advantages Grid */
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    /* Action Gallery */
    .action-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .section-padding {
        padding: 4.5rem 0;
    }
    
    /* Termite Spotlight Grid */
    .termite-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .termite-graphic {
        max-width: 450px;
        margin: 0 auto;
    }
    
    /* Header menu hamburger */
    .nav-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Mobile slide in overlay menu */
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        z-index: 1050;
        transition: var(--transition-medium);
        padding: 6rem 2rem 2rem 2rem;
    }
    
    .nav-menu-wrapper.open {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .mobile-cta {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }
    
    .mobile-cta .btn {
        width: 100%;
    }
    
    /* Hero Layout updates */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 7rem 0 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* About split */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-bottom: 4rem;
    }
    
    .about-graphic-block {
        max-width: 450px;
        margin: 0 auto;
    }
    
    /* Vision Mission split */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Operational Structure timeline collapsed */
    .timeline-line {
        left: 20px;
    }
    
    .timeline-node {
        width: 100%;
        padding-left: 3.5rem;
        padding-right: 0;
    }
    
    .timeline-node:nth-child(odd),
    .timeline-node:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-node:nth-child(odd) .node-badge,
    .timeline-node:nth-child(even) .node-badge {
        left: 0px;
    }
    
    /* Contact grid split */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info-panel {
        order: 2;
    }
    
    .contact-form-panel {
        order: 1;
    }

    /* Gallery & Flyer responsive adjustments */
    .action-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flyer-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    /* Top Bar hide details on narrow screen */
    .top-bar-left {
        flex-direction: column;
        gap: 0.35rem;
    }
    
    .top-bar-right {
        display: none;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.15rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .highlights-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* About stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Testimonials slider padding */
    .testimonial-slider-container {
        padding: 4rem 2.5rem 3rem 2.5rem;
    }
    
    .slider-arrow {
        top: auto;
        bottom: 1.25rem;
        transform: none;
    }
    
    .slider-arrow.prev {
        left: 35%;
    }
    
    .slider-arrow.next {
        right: 35%;
    }
    
    .slider-dots {
        margin-top: 4.5rem;
    }
    
    /* FAQ accordion */
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer-inner {
        padding: 1.25rem 1.5rem;
    }
    
    /* Contact Form Panel */
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Gallery & Termite grid mobile adjustments */
    .action-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .termite-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .logo-title {
        font-size: 1.15rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 2.5px;
    }
    
    .logo-icon-wrapper {
        width: 42px;
        height: 42px;
    }
}

/* ----------------------------------------------------
   18. OPERATIONS GALLERY & CARD IMAGE TOPS
---------------------------------------------------- */
.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2.5px solid var(--secondary);
    transition: var(--transition-medium);
}

.service-card:hover .card-img-top {
    transform: scale(1.03);
}

/* Action Gallery */
.action-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--gray-light);
    transition: var(--transition-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
    color: var(--white);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    transform: translateY(10px);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-subcaption {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-light);
}

/* Promo Flyer Showcase */
.flyer-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    border-top: 5px solid var(--secondary);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.flyer-image-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition-medium);
}

.flyer-image-container img {
    width: 100%;
    display: block;
    transition: var(--transition-medium);
}

.flyer-image-container:hover img {
    transform: scale(1.03);
}

.flyer-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flyer-details h3 {
    font-size: 1.85rem;
    color: var(--primary);
    line-height: 1.25;
}

.flyer-details p {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.6;
}

.flyer-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.flyer-hl-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.flyer-hl-item span {
    color: var(--secondary);
    font-weight: bold;
}

/* Termite split image styling */
.termite-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.termite-img-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    aspect-ratio: 1 / 1;
}

.termite-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.termite-img-card:hover img {
    transform: scale(1.08);
}

.termite-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--white);
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-flyer-container {
    margin-top: 2rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
    transition: var(--transition-medium);
}

.contact-flyer-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-flyer-img {
    width: 100%;
    display: block;
}

/* ----------------------------------------------------
   19. FLOATING WHATSAPP BUTTON
---------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 0.65rem 1.25rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #FFFFFF;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 576px) {
    .whatsapp-float {
        padding: 0.65rem;
        border-radius: 50%;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-float span {
        display: none;
    }
}


