* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Helper Utility */
.divider {
    height: 2px;
    background-color: #eee;
    width: 100%;
    margin: 20px 0;
}

.divider-small {
    height: 3px;
    background-color: var(--primary-color);
    width: 60px;
    margin: 10px 0 20px;
}

/* TOP BAR */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
    text-align: right;
    position: relative;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* HEADER INFO AREA */
.header-info-area {
    background-color: var(--white);
    padding: 15px 0;
}

.header-info-area .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 80px;
}

.info-widgets {
    display: flex;
    gap: 30px;
}

.info-widget {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-widget .icon-box {
    font-size: 1.5rem;
    color: var(--primary-color);
    padding-top: 5px;
}

.info-widget h4 {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-widget p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* MAIN NAV */
.main-nav {
    background-color: var(--secondary-color);
    color: var(--white);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.main-nav nav ul {
    display: flex;
    height: 100%;
}

.main-nav nav a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    height: 100%;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.main-nav nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* SUBMENU STYLES - DESKTOP */
.main-nav nav ul li {
    position: relative;
}

.main-nav nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.main-nav nav ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    
}

.main-nav nav .sub-menu li {
    display: block;
    width: 100%;
}

.main-nav nav .sub-menu a {
    padding: 12px 20px;
    height: auto;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: none;
    white-space: nowrap;
}

.main-nav nav .sub-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    padding-left: 25px;
    background-color: var(--primary-color);
}

.main-nav nav .sub-menu li:last-child a {
    border-bottom: none;
}

.main-nav nav .has-submenu i {
    margin-left: 5px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.main-nav nav ul li:hover .has-submenu i {
    transform: rotate(180deg);
}

.nav-btn {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    /* Slight angle effect if exact */
    /* Or just standard button */
    padding-left: 40px;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}

/* HERO BANNER */
.hero-banner {
    width: 100%;
    height: 400px;
    /* Adjust height based on look */
    overflow: hidden;
    position: relative;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Focus on the hazmat suit area */
}

/* MAIN CONTENT */
main {
    padding: 0;
    background-color: var(--white);
}

/* Section Separators */
main > section,
main > div:not(.cta-bar) {
    position: relative;
}

main > section:not(:first-child)::before,
main > div:not(.cta-bar):not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7ab332);
    border-radius: 2px;
    z-index: 1;
}



/* Alternating Background Colors for Sections */
.intro-section {
    background-color: var(--white);
    padding: 60px 0;
}

.why-need-us-section {
    background-color: var(--white);
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.service-areas-section {
    background-color: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.case-study-section {
    background-color: var(--white);
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.pricing-section {
    background-color: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.faq-section {
    background-color: var(--white);
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.reviews {
    padding: 60px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.contact-section {
    background-color: var(--white);
    border-top: 1px solid #e8e8e8;
}

.intro-section {
    max-width: 1100px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.small-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.small-logo img {
    height: 50px;
}

.sub-heading {
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 1px;
}

.main-heading {
    color: var(--secondary-color);
    font-size: 2rem;
    text-align: left;
    /* Screenshot shows left, or centered? */
    /* Screenshot analysis: "GET YOUR INSPECTION..." looks Left aligned actually, wait. */
    /* Looking at the screen shot, "GET YOUR INSPECTION..." is Left aligned. "Turn to the exports" is centered above it? No. */
    /* Wait, checking screenshot again. */
    /* "Turn to the experts" is centered. */
    /* "GET YOUR INSPECTION..." is left aligned below the centered logo/text. */
    text-align: left;
    margin-bottom: 20px;
}

.intro-text {
    margin-bottom: 40px;
    color: #555;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-heading {
    font-size: 1.5rem;
    margin-top: 20px;
}

.content-right img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA BAR */
.cta-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 60px 0;
    text-transform: uppercase;
    font-family: var(--font-heading);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.cta-bar i {
    font-size: 1.5rem;
}

/* REVIEWS */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow */
    border: 1px solid #eee;
    text-align: left;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}

.stars {
    color: #ffd700;
    /* Gold/Yellow stars? Check screenshot. Screenshot has GREEN stars? */
    /* Screenshot stars are Greenish yellow or Green. */
    color: var(--primary-color);
    font-size: 0.8rem;
}

.review-meta {
    display: flex;
    justify-content: flex-end;
}

.platform-logo {
    /* Platform icon styling */
    font-weight: bold;
    color: #333;
}

.review-author {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.author-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    color: #ccc;
    font-size: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
    display: block;
}

.dot.active {
    background-color: var(--secondary-color);
}

/* FOOTER INFO BAR */
.footer-info-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(135, 195, 59, 0.9) 100%);
    padding: 50px 0;
    margin-top: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-info-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-info-bar .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer-widget {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.footer-widget:hover {
    transform: translateY(-3px);
}

.footer-widget-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-widget:hover .footer-widget-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.footer-widget-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.footer-widget .text {
    flex: 1;
    min-width: 0;
}

.footer-widget h5 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-widget p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
}

.footer-widget p a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget p a:hover {
    opacity: 1;
    text-decoration: underline;
    transform: translateX(3px);
}



/* MAIN FOOTER */
footer {
    background: linear-gradient(180deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 70px 0 50px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

footer .container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.logo-col {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(135, 195, 59, 0.4);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 15px;
    opacity: 1;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-col {
    padding-left: 20px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.footer-cta {
    margin-top: auto;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 195, 59, 0.3);
}

.footer-cta-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 195, 59, 0.5);
}

/* BOTTOM FOOTER */
.bottom-footer {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.6);
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    text-align: center;
    width: 100%;
}

.copyright-text p {
    margin: 0 0 10px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 5px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}


/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-heading);
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
    z-index: 10;
    position: relative;
}

.mobile-menu-toggle:hover {
    background-color: var(--primary-color);
}

.mobile-menu-toggle i {
    margin-right: 8px;
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* SIDE DRAWER MENU */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background-color: var(--secondary-color);
    z-index: 1000;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
    left: 0;
}

.mobile-drawer-header {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-drawer-header .logo {
    max-width: 150px;
}

.mobile-drawer-header .logo img {
    max-height: 50px;
    width: auto;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.mobile-drawer-close:hover {
    color: var(--primary-color);
}

.mobile-drawer nav {
    padding: 0;
}

.mobile-drawer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-drawer nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 44px;
    width: 100%;
}

.mobile-drawer nav a i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

/* MOBILE SUBMENU STYLES */
.mobile-drawer nav .menu-item-has-children {
    position: relative;
}

.mobile-drawer nav .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
}

.mobile-drawer nav .menu-item-has-children.active .sub-menu {
    max-height: 500px;
}

.mobile-drawer nav .menu-item-has-children.active > a i {
    transform: rotate(180deg);
}

.mobile-drawer nav .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer nav .sub-menu a {
    padding: 15px 20px 15px 40px;
    font-size: 0.85rem;
    text-transform: none;
    font-weight: 500;
}

.mobile-drawer nav .sub-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 45px;
}

.mobile-drawer nav a:hover,
.mobile-drawer nav a:active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.mobile-drawer .nav-btn {
    margin: 20px;
    width: calc(100% - 40px);
    justify-content: center;
    clip-path: none;
    padding: 15px 30px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* TABLET STYLES */

/* MOBILE PHONE STYLES */
.owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
}


.owl-dot span {
  width: 10px;
  height: 10px;
  background:var(--secondary-color);
  display: block;
  border-radius: 50%;
}

.owl-dot.active span {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  display: block;
  border-radius: 50%;
}

.theme-selector{
    position: absolute;
    left: 5px;
    top: 5px;
    display: flex;
    justify-content: end;
    gap: 3px;
    flex-wrap: wrap;
    max-width: calc(100% - 10px);
}

.theme-selector a {
    padding: 3px 12px;
    border-radius: 3px;
    margin: 0;
    display: block;
    font-size: 0.7rem;
    white-space: nowrap;
}

.relative{
    position: relative;
}

.owl-carousel .item .review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    min-height: 200px; /* optional base */
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* FAQ SECTION */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-section .section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-top: 15px;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: rgba(135, 195, 59, 0.05);
}

.faq-item.active .faq-question {
    background-color: rgba(135, 195, 59, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    padding-top: 15px;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.faq-cta p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.faq-cta a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-cta a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* CASE STUDY SECTION */
.case-study-section {
    padding: 60px 0;
}

.case-study-section .section-header {
    margin-bottom: 50px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.case-study-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.case-location {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.case-location i {
    font-size: 0.75rem;
}

.case-type {
    background-color: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}

.case-study-details {
    flex: 1;
}

.case-detail-item {
    margin-bottom: 20px;
}

.case-detail-item:last-child {
    margin-bottom: 0;
}

.case-detail-item h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.case-detail-item h4 i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.case-detail-item.highlight {
    background-color: rgba(135, 195, 59, 0.05);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.case-detail-item.highlight h4 {
    color: var(--primary-color);
}

.case-detail-item p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.case-study-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.case-study-cta p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.case-study-cta a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-study-cta a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 0;
}

.contact-section .section-header {
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container,
.contact-info-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3,
.contact-info-container h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(135, 195, 59, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    text-transform: none;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #7ab332;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 195, 59, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* CONTACT INFO */
.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    background-color: rgba(135, 195, 59, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-details p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-cta-box h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    font-size: 0.95rem;
}

.cta-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--secondary-color);
}

/* PRICING SECTION */
.pricing-section {
    padding: 60px 0;
}

.pricing-section .section-header {
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 35px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 5px 20px rgba(135, 195, 59, 0.2);
}

.pricing-card.popular:hover {
    box-shadow: 0 10px 35px rgba(135, 195, 59, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(135, 195, 59, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-name {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-price {
    margin-bottom: 15px;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    line-height: 1;
}
.pricing-price .price-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

.pricing-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-features li span {
    flex: 1;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 15px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.pricing-card.popular .pricing-btn {
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    box-shadow: 0 3px 10px rgba(135, 195, 59, 0.3);
}

.pricing-btn:hover {
    background-color: #7ab332;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 195, 59, 0.3);
}

.pricing-card.popular .pricing-btn:hover {
    box-shadow: 0 5px 20px rgba(135, 195, 59, 0.4);
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto 50px;
}

.note-box {
    background: linear-gradient(135deg, rgba(135, 195, 59, 0.1), rgba(135, 195, 59, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.note-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.note-content h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.note-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.note-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.note-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.note-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.note-link:hover i {
    transform: translateX(5px);
}

.pricing-faq {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-faq h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pricing-faq .faq-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.pricing-faq .faq-item h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-faq .faq-item h4 i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.pricing-faq .faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* SERVICE AREAS SECTION */
.service-areas-section {
    padding: 60px 0;
}

.service-areas-section .section-header {
    margin-bottom: 50px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.service-area-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7ab332);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-area-card:hover::before {
    transform: scaleX(1);
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.area-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.area-icon {
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(135, 195, 59, 0.3);
}

.area-name {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
}

.area-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex: 1;
}

.area-locations {
    margin-bottom: 25px;
}

.area-locations h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
}

.location-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.area-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.area-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.area-btn:hover {
    background-color: #7ab332;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 195, 59, 0.3);
}

.area-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.area-btn:hover i {
    transform: translateX(5px);
}

.service-areas-cta {
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: var(--secondary-color);
}

.coverage-info {
    max-width: 1000px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-item {
    text-align: center;
    padding: 25px 20px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.info-icon {
    background: linear-gradient(135deg, rgba(135, 195, 59, 0.1), rgba(135, 195, 59, 0.05));
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.info-item h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* WHY NEED US SECTION */
.why-need-us-section {
    padding: 60px 0;
}

.why-need-us-section .section-header {
    margin-bottom: 50px;
}

/* Statistics Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(135, 195, 59, 0.3);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #7ab332);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.benefit-icon {
    background: linear-gradient(135deg, rgba(135, 195, 59, 0.1), rgba(135, 195, 59, 0.05));
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    color: var(--white);
}

.benefit-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(135, 195, 59, 0.3);
}

.benefit-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.benefit-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Differentiators Section */
.differentiators-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 10px;
}

.differentiator-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.differentiator-content h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.differentiator-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.differentiator-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.differentiator-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.differentiator-list li:last-child {
    margin-bottom: 0;
}

.differentiator-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), #7ab332);
    color: var(--white);
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(135, 195, 59, 0.3);
}

.highlight-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight-box h4 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.highlight-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.highlight-stat {
    display: flex;
    flex-direction: column;
}

.highlight-stat strong {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-stat span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Section */
.why-cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.why-cta-section h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: #7ab332;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(135, 195, 59, 0.4);
}

.cta-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}
.d-none{
    display: none !important;
}

.main-nav.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease, border 0.3s ease;
}
.intro-with-cta {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.intro-with-cta .intro-text {
    flex: 2;
}

.cta-box {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(135, 195, 59, 0.3);
    text-align: center;
    border-radius: 10px;
    min-width: 240px;
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-box {

    .cta-buttons {
        margin-top: 10px;

        a {
            padding: 10px;
        }
    }
}

@media (max-width: 768px) {
    .intro-with-cta {
        flex-direction: column;
    }
}
