:root {
    --primary-blue: #04406c;
    /* adjust to match image */
    --primary-red: #ed1b24;
    --text-dark: #333;
    --text-light: #fff;
    --text-blue-light: #11a0dc;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-bg: #ffffff;
    /* Manual logo sizing parameters */
    --logo-height-navbar: 95px;
    --logo-height-footer: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

/* Global Responsiveness Fixes */
section, .main-content, .hero-section, .container, .wrapper {
    max-width: 100%;
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
}

body {
    background-color: #f5f5f5;
    overflow-x: hidden;
}

/* Modern Minimalistic Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Global Button & Card Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card, .blog-card, .about-card, .feature-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.service-card:hover, .blog-card:hover, .about-card:hover, .feature-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Typography Utilities */
.text-blue {
    color: var(--primary-blue);
}

.text-red {
    color: var(--primary-red);
}

.text-blue {
    color: #2b5c7a;
}

/* for 'Trusted Service' */
.text-xs {
    font-size: 0.75rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 26, 46, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Glass Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    margin: 1.5rem 4rem;
    border-radius: 50px;
    /* Glassmorphism styles */
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Scrolled Navbar State */
.navbar.scrolled {
    background: rgba(2, 26, 46, 0.95) !important; /* Solid dark glass */
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 4rem; /* Slightly thinner */
}

/* Make logo white when scrolled */
.navbar.scrolled .logo img {
    filter: brightness(0) invert(1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo img {
    height: var(--logo-height-navbar);
    width: auto;
}

.logo .fa-bug {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--text-blue-light);
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    list-style: none;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background-color: rgba(17, 160, 220, 0.1);
    color: var(--text-blue-light) !important;
    padding-left: 2rem;
}

/* Dropdown Menu in Scrolled State */
.navbar.scrolled .dropdown-menu {
    background: rgba(2, 26, 46, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .dropdown-menu li a {
    color: var(--text-light) !important;
}

.navbar.scrolled .dropdown-menu li a:hover {
    background-color: rgba(17, 160, 220, 0.2);
    color: var(--text-blue-light) !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone-link {
    display: none !important;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #033356;
}

.btn-warning {
    display: inline-block;
    background-color: white;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-warning:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content Area */
.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom items */
    padding: 10rem 4rem 4rem 4rem;
    /* 10rem top padding for fixed navbar */
    flex: 1;
}

.left-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.main-heading {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

/* Popular Services (Bottom Left) */
.popular-services {
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 6rem;
}

.services-title {
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.service-tags {
    display: flex;
    gap: 1rem;
}

.tag {
    background-color: rgba(255, 255, 255, 0.95);
    color: #444;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Floating Card (Bottom Right) */
.right-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    width: 380px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    bottom: 2rem;
}

/* Optional glass effect for card to match theme if desired, but image shows solid white */
/* Keeping it solid white as per image */

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

.avatars {
    display: flex;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin-left: -15px;
}

.avatar:first-child {
    margin-left: 0;
}

.header-text {
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.card-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    color: #04406c;
    /* Dark navy */
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1;
}

.rating-score .fa-star {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.rating-text {
    color: #555;
    font-weight: 600;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-left: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 3.5rem;
    }

    .navbar {
        padding: 1rem 2rem;
        margin: 1rem 2rem;
    }

    .main-content {
        padding: 8rem 2rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .right-card {
        align-self: flex-start;
        margin-top: 3rem;
        bottom: 0;
    }


    .nav-right .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .main-content {
        padding: 8rem 1rem 2rem 1rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .service-tags {
        flex-wrap: wrap;
    }

    .right-card {
        width: 100%;
    }
}

/* Info Banner */
.info-banner {
    background-color: #e6f2fb;
    color: #04406c;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background-color: #f4f8fb;
    /* very light green/grey matching image */
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    position: relative;
}

.services-left {
    flex: 1;
    max-width: 400px;
    padding-top: 2rem;
}

.sub-heading {
    color: #4a5d54;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 3rem;
    color: #04406c;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.services-right {
    flex: 2;
    display: flex;
    gap: 2rem;
}

.service-card {
    flex: 1;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: #eee;
}

.service-card-content h3 {
    color: #04406c;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card-content p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Scroll Top Button */
.scroll-top {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: #04406c;
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background-color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .services-section {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .services-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-right {
        flex-direction: column;
    }

    .section-heading {
        font-size: 2.5rem;
    }
}

/* Features Section */
.features-section {
    display: flex;
    padding: 0 4rem 5rem 4rem;
    gap: 1.5rem;
    background-color: #f4f8fb;
}

.feature-card {
    flex: 1;
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

/* Red Card */
.red-card {
    background-color: #ed1b24;
    color: white;
    display: flex;
    align-items: center;
}

.red-card h3 {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.quote-bg {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(180, 0, 0, 0.2);
    z-index: 1;
}

/* Image Card */
.image-card {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.glass-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* White Card */
.white-card {
    background-color: #f7f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.white-card h2 {
    color: #04406c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.white-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.text-red {
    color: #ed1b24;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .features-section {
        flex-direction: column;
        padding: 0 2rem 3rem 2rem;
    }
}

/* About Section */
.about-section {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    background-color: #ffffff;
}

.about-left {
    flex: 1.2;
}

.about-card {
    background-color: #f7f9f9;
    border-radius: 16px;
    display: flex;
    padding: 1.5rem;
    gap: 2rem;
    height: 100%;
}

.about-card-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    min-height: 400px;
}

.about-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 0;
}

.top-content h3 {
    font-size: 1.5rem;
    color: #04406c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-blue-bold {
    color: var(--primary-blue);
    font-weight: 700;
}

.top-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.bottom-content .sub-title {
    color: #04406c;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background-color: #033356;
    /* Darker green */
}

.btn-icon i {
    font-size: 1.1rem;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.about-label {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.main-heading-dark {
    font-size: 3.5rem;
    color: #333;
    /* Dark grey */
    line-height: 1.1;
    margin-bottom: 3rem;
}

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

.accordion-item {
    background-color: #f7f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.accordion-item.active {
    background-color: #f7f9f9;
}

.accordion-item:not(.active) {
    background-color: transparent;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 1.5rem 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 1.3rem;
    color: #04406c;
}

.accordion-header i {
    font-size: 1.2rem;
    color: #04406c;
}

.accordion-content {
    margin-top: 1rem;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .about-card {
        flex-direction: column;
    }

    .about-card-img {
        min-height: 300px;
    }
}

/* CTA Parallax Section */
.cta-section {
    position: relative;
    padding: 5rem 4rem;
    background-image: url('assets/cta_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 64, 108, 0.4), rgba(0, 0, 0, 0.6));
    /* Subtle green to dark gradient */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
}

.cta-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ed1b24;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-red:hover {
    background-color: #d3141c;
}

@media (max-width: 768px) {
    .cta-section {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
        padding: 3rem 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    .main-heading-dark {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    .faq-container {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Parallax Info Section */
.parallax-info-section {
    position: relative;
    padding: 6rem 4rem;
    background-image: url('assets/parallax_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.parallax-info-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
}

.info-card {
    background-color: rgba(253, 254, 252, 0.95);
    /* Slight transparency */
    padding: 6rem 4rem;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
    font-size: 3rem;
    color: #032e4d;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-blue-alt {
    color: #04406c;
}

.info-card p {
    color: #777;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.card-footer {
    padding-top: 1.5rem;
    color: #032e4d;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .parallax-info-section {
        background-attachment: scroll;
        /* Disable parallax on mobile */
        padding: 4rem 2rem;
        justify-content: center;
    }

    .parallax-info-container {
        justify-content: center;
    }

    .info-card {
        padding: 2.5rem 2rem;
    }

    .info-card h2 {
        font-size: 2.2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    background-color: #ffffff;
    padding: 6rem 4rem 2rem 4rem;
    overflow: hidden;
}

.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 800;
    color: rgba(17, 160, 220, 0.4);
    /* Faded yellow/orange */
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}

.testimonials-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.test-left {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.main-worker-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Helps blend white background of image with section background */
    z-index: 2;
}

.pest-icon-img {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 180px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.test-right {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.testimonial-card {
    background-color: #fafafa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.glass-testimonial-card {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

.quote-icon-red {
    font-size: 3.5rem;
    color: #ed1b24;
    /* Red */
    margin-bottom: 1.5rem;
}

.test-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    font-weight: 500;
    margin-bottom: 2rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    color: #032e4d;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-details span {
    color: #777;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stars {
    color: #d3141c;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .testimonials-content {
        flex-direction: column;
    }

    .watermark-text {
        font-size: 8rem;
    }

    .test-left img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .watermark-text {
        font-size: 5rem;
    }

    .testimonials-section {
        padding: 4rem 2rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 6rem 4rem;
}

.faq-container {
    display: flex;
    gap: 4rem;
    width: 100%;
}

.faq-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Align menu to the right as per image */
    padding-top: 5rem;
}

.faq-menu {
    list-style: none;
    text-align: right;
    width: 100%;
}

.faq-menu li {
    font-size: 1.15rem;
    font-weight: 600;
    color: #444;
    padding: 1rem 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-menu li:hover {
    color: #ed1b24;
}

.faq-menu li.active {
    color: #ed1b24;
}

.faq-right {
    flex: 2.5;
}

.faq-header-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    border-radius: 12px;
    transition: all 0.3s;
}

.faq-item.active {
    background-color: #f7f9f9;
    /* light grey */
    padding: 1.5rem 2rem;
}

.faq-item:not(.active) {
    background-color: transparent;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 1.5rem 0;
}

.faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item-header h3 {
    font-size: 1.15rem;
    color: #04406c;
    font-weight: 600;
}

.faq-item-header i {
    font-size: 1.2rem;
    color: #04406c;
}

.faq-item-content {
    margin-top: 1rem;
}

.faq-item-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 4rem 2rem;
    }
    .faq-container {
        flex-direction: column;
        gap: 2rem;
    }

    .faq-left {
        align-items: flex-start;
        padding-top: 0;
        margin-bottom: 3rem;
    }

    .faq-menu {
        text-align: left;
    }
}

/* Contact Section */
.contact-section {
    display: flex;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-left {
    flex: 1;
    position: relative;
}

.contact-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.contact-right {
    flex: 1;
    padding: 6rem 4rem;
    position: relative;
    background-color: #ffffff;
}

.contact-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: #11a0dc;
    /* Light green blob */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    opacity: 0.8;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.contact-header-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #032e4d;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.text-red-alt {
    color: #ed1b24;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #032e4d;
    margin-bottom: 0.5rem;
}

.required {
    color: #ed1b24;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #04406c;
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.form-checkbox input {
    margin-top: 0.3rem;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

.btn-submit {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* Blog Section */
.blog-section {
    background-color: #f7f9f9;
    padding: 6rem 4rem;
    text-align: center;
}

.blog-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.blog-header-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.blog-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    height: 100%;
}

.blog-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 1rem;
}

.blog-meta i {
    margin-right: 0.4rem;
}

.blog-content h3 {
    font-size: 1.35rem;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 a {
    color: var(--primary-red);
}

.blog-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Section */
.footer-section {
    background-color: #021a2e;
    /* very dark green/black */
    padding: 6rem 4rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.text-cyan {
    color: #11a0dc;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: var(--logo-height-footer);
    width: auto;
}

.footer-col p {
    color: #9aa7a2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mt-2 {
    margin-top: 1rem;
}

.footer-phone {
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #9aa7a2;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 2rem;
}

.footer-watermark {
    font-size: 6vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin: 0;
    padding: 0 1rem;
    white-space: nowrap;
    text-transform: capitalize;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #04406c;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background-color: #032e4d;
}

@media (max-width: 992px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-left img {
        height: 400px;
        min-height: auto;
    }

    .contact-right {
        padding: 4rem 2rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-watermark {
        font-size: 7vw;
    }
}

/* About Page Styles */
.about-hero-section {
    padding: 11rem 4rem 8rem 4rem;
    background-color: #fcfdfa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-subtitle {
    color: #6b7b75;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 4rem;
    font-weight: 600;
    color: #0b2e35;
    margin-bottom: 4rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text-columns p {
    color: #829589;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid #e2e7e3;
    padding-top: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 0;
    display: block;
}

@media (max-width: 768px) {
    .about-text-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-title {
        font-size: 3rem;
    }
}

.no-overlay::before { display: none !important; }


/* Dynamic Transparent Navbar */
.navbar-transparent {
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease;
}

/* Light Mode (Dark Text on White Backgrounds) */
.text-dark-mode .nav-links li a {
    color: var(--primary-blue) !important;
}
.text-dark-mode .nav-links li a:hover {
    color: var(--text-blue-light) !important;
}
.text-dark-mode .phone-link span,
.text-dark-mode .phone-link i {
    color: var(--primary-blue) !important;
}
.text-dark-mode .logo img {
    filter: none !important;
}
.text-dark-mode .hamburger {
    color: var(--primary-blue) !important;
}

/* Force elements back to light mode when navbar is scrolled (since background becomes dark) */
.navbar.scrolled.text-dark-mode .logo img {
    filter: brightness(0) invert(1) !important;
}
.navbar.scrolled.text-dark-mode .hamburger {
    color: var(--text-light) !important;
}
.navbar.scrolled.text-dark-mode .nav-links li a,
.navbar.scrolled.text-dark-mode .phone-link span,
.navbar.scrolled.text-dark-mode .phone-link i {
    color: var(--text-light) !important;
}

/* Dark Mode (White Text on Dark Backgrounds) */
.text-light-mode .nav-links li a {
    color: #ffffff !important;
}
.text-light-mode .nav-links li a:hover {
    color: var(--text-blue-light) !important;
}
.text-light-mode .phone-link span,
.text-light-mode .phone-link i {
    color: #ffffff !important;
}
.text-light-mode .logo img {
    filter: brightness(0) invert(1) !important;
}


/* About Page Rectangle Image */
.about-rectangle-image {
    width: 100%;
    margin-top: 4rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-rectangle-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}


/* Trusted Experts Section */
.about-trusted-section {
    padding: 6rem 4rem;
    background-color: #fcfdfa;
}

.trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Trusted Card (Left Column) */
.trusted-card {
    background-color: #f4f6f5;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trusted-card-top {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.trusted-card-image img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.trusted-card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.text-green {
    color: #1e874b;
}

.trusted-card-content p {
    color: #6b7b75;
    line-height: 1.6;
}

.trusted-card-bottom h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.btn-green {
    background-color: #1e874b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: #156638;
    color: white;
}

/* Accordion Column (Right Column) */
.about-title-large {
    font-size: 3.5rem;
    color: #1d1d1f;
    line-height: 1.2;
    margin-bottom: 3rem;
}

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

.accordion-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef1f0;
}

.accordion-item.active {
    background-color: #f4f6f5;
    border-color: transparent;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
}

.accordion-header h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin: 0;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 0 2rem 2rem 2rem;
    color: #6b7b75;
    line-height: 1.6;
}

/* Stats Section */
.about-stats-section {
    margin-top: 8rem;
    text-align: center;
}

.stats-heading {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 4rem;
}

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

.stat-item h2 {
    font-size: 3.5rem;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6b7b75;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .trusted-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trusted-card-top {
        flex-direction: column;
    }
    .trusted-card-image img {
        width: 100%;
        height: auto;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Protect Homes Dark Section */
.about-protect-section {
    padding: 8rem 4rem;
    background-color: #0d1714;
    color: white;
}

.protect-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 6rem;
}

.protect-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 500;
    color: #f5f6f1; /* Off-white */
    flex: 1.5;
}

.text-lime {
    color: #d4f195;
}

.protect-desc {
    flex: 1;
    padding-top: 1rem;
}

.protect-desc p {
    color: #aebdb6;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.protect-image-card {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.protect-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.protect-dark-card {
    background-color: #1a2622;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.protect-dark-card p.text-lime {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 3rem;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    align-self: flex-start;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: #0d1714;
}

.protect-stats-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.protect-stat-card {
    background-color: #f5f6f1;
    border-radius: 12px;
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.protect-stat-card h3.stat-large {
    font-size: 4rem;
    color: #0b2e35;
    margin-bottom: 1rem;
    font-weight: 500;
}

.protect-stat-card h4 {
    font-size: 1.5rem;
    color: #0b2e35;
    margin-bottom: 0.5rem;
}

.protect-stat-card p {
    color: #6b7b75;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .protect-header {
        flex-direction: column;
    }
    .protect-grid {
        grid-template-columns: 1fr;
    }
    .protect-image-card img {
        min-height: 400px;
    }
}

/* Contact Form Section */
.about-contact-section {
    background-image: url('assets/contact_worker.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0;
    position: relative;
}

.contact-container {
    display: flex;
    justify-content: flex-end;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 4rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-card h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e0e6e4;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    background-color: #fcfdfa;
}

.form-control::placeholder {
    color: #aebdb6;
}

.form-control:focus {
    outline: none;
    border-color: #e88d14;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    accent-color: #e88d14;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #6b7b75;
    line-height: 1.5;
}

.text-orange {
    color: #e88d14;
    font-weight: 500;
}

.btn-orange {
    background-color: #e88d14;
    color: white;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-orange:hover {
    background-color: #cf7c0e;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        justify-content: center;
        padding: 0 2rem;
    }
    .about-contact-section {
        padding: 4rem 0;
    }
    .contact-form-card {
        padding: 2.5rem;
    }
}

/* Logo Carousel Section */
.logo-carousel-section {
    padding: 3rem 0;
    background-color: #fcfdfa;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eef1f0;
}

.carousel-track {
    display: flex;
    width: calc(250px * 10);
    animation: scrollCarousel 25s linear infinite;
    align-items: center;
}

.logo-slide {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slide img {
    max-width: 150px;
    opacity: 0.4;
    transition: opacity 0.3s ease, filter 0.3s ease;
    /* This filter forces the logos to be a semi-transparent single color (grey) */
    filter: grayscale(100%) contrast(0); 
}

.logo-slide img:hover {
    opacity: 0.8;
    filter: grayscale(100%) contrast(0) brightness(0.5); /* Slight darkening on hover to show interaction */
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

/* Pause animation on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Contact Inquiries Section */
.contact-inquiries-section {
    padding: 8rem 0;
    background-color: #fcfdfa; /* Off-white background */
}

.inquiries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

/* Left Column Info */
.contact-info-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #4a5d6e; /* Slate gray/blue */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-info-title {
    font-size: 3.5rem;
    color: #0b2e35; /* Dark teal/blue */
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info-desc {
    color: #99a5a1; /* Light gray */
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 90%;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    color: #6b7b75;
}

.contact-info-list li i {
    font-size: 1.2rem;
    color: #e88d14; /* Orange */
    /* Give icon orange outline look by just using the color */
    background: transparent;
}

.contact-info-list li strong {
    color: #0b2e35;
    font-weight: 700;
}

/* Right Column Form */
.inquiries-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group-top {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.form-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0b2e35;
}

.text-red {
    color: #e74c3c;
}

.input-light {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e0e6e4;
    border-radius: 6px;
    background-color: #fafbf9; /* Very light off-white */
    font-size: 1rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.input-light::placeholder {
    color: #c4cdc9;
}

.input-light:focus {
    outline: none;
    border-color: #7cb31c; /* Lime green focus */
}

textarea.input-light {
    resize: vertical;
    min-height: 140px;
}

.text-lime-green {
    color: #7cb31c;
    font-weight: 500;
}

.mt-3 {
    margin-top: 1.5rem;
}

.btn-lime {
    background-color: #7cb31c;
    color: white;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-lime:hover {
    background-color: #659316;
}

/* Responsive */
@media (max-width: 1024px) {
    .inquiries-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .contact-info-title {
        font-size: 2.8rem;
    }
}

/* Contact Map Section */
.contact-map-section {
    padding: 0 0 8rem 0;
    background-color: #fcfdfa;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Tabbed FAQ Section */
.contact-tabbed-faq {
    padding: 6rem 0;
    background-color: #ffffff;
}

.tabbed-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Sidebar */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.faq-image-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #ff3333; /* Red background for the no-bee placeholder */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 10px solid #f9f9f9;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-image-circle img {
    width: 70%;
    height: auto;
    z-index: 2;
}

/* Add the 'no' slash */
.faq-image-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: white;
    transform: rotate(-45deg);
    z-index: 3;
}

.faq-nav {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-nav li a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c; /* Dark text */
    transition: color 0.3s ease;
}

.faq-nav li a:hover {
    color: #ff3333; /* Red hover */
}

.faq-nav li a.active-tab {
    color: #ff3333;
}

/* Right Content Header */
.faq-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-subtitle i {
    font-size: 1.2rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    margin-bottom: 3rem;
}

/* Custom Accordion */
.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.custom-accordion-item {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.custom-accordion-item.active {
    background-color: #f5f7f6; /* Light gray background */
    border-bottom: none;
    border-radius: 12px;
}

.custom-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1.5rem 0;
    cursor: pointer;
}

.custom-accordion-item.active .custom-accordion-header {
    padding: 1.5rem;
}

.custom-accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.custom-accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}

.custom-accordion-body {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .tabbed-faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-nav {
        text-align: center;
    }
    .faq-sidebar {
        margin-bottom: 3rem;
    }
}

/* ==========================================================================
   Commercial Sector Pages Workflow Styles
   ========================================================================== */

/* Typography & Layout */
.commercial-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.commercial-section.bg-light {
    background-color: #f4f8fb;
}

.commercial-heading {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.commercial-subtext {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 2. Core Pain Points & Solutions Grid */
.commercial-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.commercial-pain-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.commercial-pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.commercial-pain-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.commercial-pain-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.commercial-pain-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.solution-box {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #eee;
}

.solution-box h4 {
    color: #11a0dc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* 3. How We Do It - Process Timeline */
.commercial-process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.commercial-process-wrapper::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: #eee;
    z-index: 1;
}

.commercial-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.commercial-process-step:hover .process-icon {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.1);
}

.commercial-process-step h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.commercial-process-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 4. Compliances and Safety Grid */
.commercial-compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(17, 160, 220, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.compliance-card img {
    height: 60px;
    width: auto;
    opacity: 0.8;
}

.compliance-card h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* 5. Commercial Contract Structure */
.commercial-contract-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contract-header {
    background: var(--primary-blue);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.contract-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contract-features {
    padding: 3rem;
}

.contract-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contract-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #444;
}

.contract-list li i {
    color: #8bc34a;
    font-size: 1.2rem;
    margin-top: 3px;
}

.contract-pricing {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.contract-pricing p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
}

/* 6. Sticky Bar CTA */
.commercial-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards 1s;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

.sticky-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.sticky-buttons {
    display: flex;
    gap: 1rem;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* Responsive adjustments */

@media (max-width: 1024px) {
    .main-heading {
        font-size: 3.5rem;
    }

    .nav-right .phone-link {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 80px;
        left: -1rem; /* Offset the 1rem left of navbar */
        transform: translateX(-100%);
        width: 100vw; /* Take full viewport width */
        height: calc(100vh - 80px);
        background-color: rgba(2, 26, 46, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .navbar {
        padding: 0.8rem 1rem;
        margin: 0.5rem auto;
        left: 1rem;
        right: 1rem;
        width: auto;
    }

    .main-content {
        padding: 10rem 2rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .right-card {
        align-self: flex-start;
        margin-top: 3rem;
        bottom: 0;
    }

    .popular-services {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }

    .nav-right {
        display: none;
    }

    .main-content {
        padding: 8rem 1rem 2rem 1rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .service-tags {
        flex-wrap: wrap;
    }

    .right-card {
        width: 100%;
    }

    /* Global mobile clutter fix: Override excessive horizontal padding on all sections */
    section, [class*="-section"] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 900px) {
    .commercial-process-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .commercial-process-wrapper::before {
        display: none;
    }
    .commercial-process-step {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }
    .contract-list {
        grid-template-columns: 1fr;
    }
    .commercial-sticky-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        text-align: center;
    }
}


/* ==========================================================================
   Services Subpages Workflow Styles
   ========================================================================== */

/* 2. The Core Threat (Dark Theme) */
.service-threat-section {
    background-color: #111827;
    color: #fff;
    padding: 5rem 4rem;
}

.service-threat-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.service-threat-heading span {
    color: var(--primary-red);
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.threat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.threat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 27, 36, 0.5);
}

.threat-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.threat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

.threat-card ul {
    list-style: none;
    padding: 0;
}

.threat-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #9ca3af;
    line-height: 1.5;
}

.threat-card ul li::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 0.9rem;
    top: 3px;
}

/* 3. The Intelligent Commercial Treatment Protocol */
.service-protocol-section {
    padding: 5rem 4rem;
    background-color: #f9fafb;
}

.protocol-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 4rem;
}

.protocol-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.protocol-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: #e5e7eb;
    z-index: 1;
}

.protocol-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.protocol-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 4px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.protocol-step:hover .protocol-icon {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.1);
}

.protocol-step h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.protocol-step p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 4. Sector - Specific Customization tabs */
.service-tabs-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #e5e7eb;
}

.tab-btn.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(4, 64, 108, 0.2);
}

.tab-content {
    display: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-text h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.tab-text p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.tab-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* 5. Compliance, Licencing & Safety Badges */
.service-compliance-section {
    padding: 4rem;
    background-color: var(--primary-blue);
    color: #fff;
    text-align: center;
}

.service-compliance-section h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.badge-item i {
    font-size: 3rem;
    color: #8bc34a;
}

.badge-item span {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* 6. The Contract & Plan */
.service-contract-section {
    padding: 5rem 4rem;
    background-color: #f9fafb;
}

.contract-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contract-header {
    background: #11a0dc;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.contract-header h3 {
    font-size: 1.8rem;
}

.contract-body {
    padding: 3rem;
}

.contract-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contract-grid li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #374151;
}

.contract-grid li i {
    color: #10b981;
    font-size: 1.3rem;
}

/* 7. Bottom CTA */
.service-bottom-cta {
    padding: 6rem 4rem;
    background-image: linear-gradient(rgba(2, 26, 46, 0.9), rgba(2, 26, 46, 0.9)), url('assets/bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.service-bottom-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-bottom-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-white {
    background: #fff;
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .protocol-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    .protocol-timeline::before {
        display: none;
    }
    .tab-content.active {
        grid-template-columns: 1fr;
    }
    .contract-grid {
        grid-template-columns: 1fr;
    }
    .service-threat-section, .service-protocol-section, .service-tabs-section, .service-contract-section, .service-bottom-cta {
        padding: 3rem 2rem;
    }
}

/* Responsive Navbar Adjustments */
@media (max-width: 1400px) {
    .navbar { padding: 1rem 2rem; margin: 1rem 2rem; }
    .nav-links { gap: 1.2rem; }
    .nav-right { gap: 1rem; }
    .nav-links li a { font-size: 0.9rem; }
}

@media (max-width: 1150px) {
    .navbar { padding: 0.8rem 1rem; margin: 0.8rem 1rem; }
    .nav-links { gap: 0.8rem; }
    .nav-right { gap: 0.8rem; }
    .nav-links li a, .phone-link { font-size: 0.85rem; }
    .navbar .btn { padding: 0.6rem 1rem; font-size: 0.85rem; }
    .logo img { height: 50px; }
}


/* Audit Modal */
.audit-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.audit-modal-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.close-audit-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}
.close-audit-modal:hover {
    color: #333;
}
.audit-modal-content h2 {
    color: #04406c;
    margin-bottom: 0.5rem;
}

/* Modern Sector Buttons */
.modern-sector-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    color: #04406c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.modern-sector-btn:hover {
    border-color: #04406c;
    background: #04406c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(4, 64, 108, 0.15);
}
.modern-sector-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.modern-sector-btn:hover i {
    transform: translateX(5px);
}
