@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/**
 * SEO Specialist USA - Design System
 * 
 * Official Brand Colors & Poppins Typography
 * Fully Responsive (Mobile + Tablet + Desktop)
 * Performance Optimized
 */

:root {
    /* Brand Colors */
    --brand-red: #BF0A30;
    --brand-blue: #002868;
    --brand-accent: #C63B482B;
    --brand-black: #000000;
    --brand-white: #FFFFFF;

    /* Typography */
    --font-global: 'Poppins', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.row>* {
    padding-left: calc(var(--bs-gutter-x) * 0.9) !important;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-global);
    color: var(--brand-black);
    background-color: var(--brand-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-global);
    color: var(--brand-blue);
    font-weight: 700;
    line-height: 1.2;
}

/* 
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
} */

/* Accessibility: Skip to Content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand-red);
    color: white;
    padding: 8px;
    z-index: 2000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Layout Containers */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-base);
    text-decoration: none;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.btn-primary-custom {
    background-color: var(--brand-red);
    color: white;
}

.btn-primary-custom:hover {
    background-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--brand-red);
}

.btn-white:hover {
    background-color: #f8f9fa;
    color: var(--brand-blue);
}

.btn-blue-outline {
    background-color: var(--brand-blue);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark-blue {
    background-color: var(--brand-blue);
    color: white;
}

/* Utility Classes */
.text-brand-red {
    color: var(--brand-red);
}

.text-brand-blue {
    color: var(--brand-blue);
}

.text-white {
    color: white !important;
}

.bg-brand-red {
    background-color: var(--brand-red);
}

.bg-brand-blue {
    background-color: var(--brand-blue);
}

.bg-brand-accent {
    background-color: var(--brand-accent);
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.w-100 {
    width: 100%;
}

/* Section Spacing */
.section-padding {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

/* Hero Section */
.hero-banner {
    position: relative;
    padding: 45px 0;
    background-color: var(--brand-blue);
    /* Placeholder background */
    background-image: linear-gradient(118deg, #002868D1 1%, #BF0A30 100%), url('../images/home/seospecialistusa-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--brand-white);
    overflow: hidden;
}

.hero-row {
    gap: 40px;
    display: flex;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    /* min-width: 300px;
    max-width: 700px; */
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--brand-white);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-form-column {
    flex: 0 0 400px;
    max-width: 100%;
}

/* Hero Form Card */
.hero-contact-card {
    background-color: var(--brand-white);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 40, 104, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.hero-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
}

.hero-contact-card .form-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: var(--brand-blue);
}

.hero-form .form-group {
    margin-bottom: 20px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 2px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    font-family: var(--font-global);
    font-size: 0.95rem;
    color: var(--brand-black);
    transition: var(--transition-base);
    border-radius: 0;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-bottom-color: var(--brand-red);
}

.hero-form textarea {
    height: 90px;
    resize: none;
}

.hero-form select {
    cursor: pointer;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right center;
    padding-right: 20px;
}

/* Custom Multi-select Dropdown */
.custom-multiselect-wrapper {
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.multiselect-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 2px solid #e2e8f0;
    cursor: pointer;
    font-size: 0.95rem;
    color: #64748b;
    transition: var(--transition-base);
}

.multiselect-header i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-multiselect-wrapper.active .multiselect-header {
    border-bottom-color: var(--brand-red);
}

.custom-multiselect-wrapper.active .multiselect-header i {
    transform: rotate(180deg);
}

.multiselect-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #002868;
    border-radius: 8px;
    margin-top: 8px;
    padding: 15px;
    z-index: 100;
    display: none;
    box-shadow: 0 15px 30px rgba(0, 0, 28, 0.15);
}

.custom-multiselect-wrapper.active .multiselect-options {
    display: block;
    animation: fadeInSlide 0.2s ease-out;
    height: 180px;
    overflow-x: auto;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    color: #1e293b;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.option-item:hover {
    color: var(--brand-red);
}

.option-item input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    accent-color: var(--brand-red);
    margin: 0 !important;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness for Hero */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 60px 0;
    }

    .hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-form-column {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .hero-ctas {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-contact-card {
        padding: 18px 12px;
    }
}

/* About Section */
.section-about {
    background-color: var(--brand-white);
}

.about-content h2 {
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.about-text-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-base);
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.badge.bg-brand-red {
    background-color: var(--brand-red);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* Stats Section */
.section-stats {
    background-color: var(--brand-white);
}

.stats-dashboard-wrapper {
    max-width: 572px;
    margin: 0 auto;
    border: 2px solid var(--brand-red);
    border-radius: 20px;
    padding: 10px;
}

.stat-pill {
    padding: 1.5rem 1.5rem;
    border-radius: 100px;
    color: white;
    transition: var(--transition-base);
}

.stat-pill:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    /* max-width: 200px; */
    margin: 0 auto;
    opacity: 0.9;
}

/* Services Section */
.section-services {
    background-color: var(--brand-blue);
    background-image: linear-gradient(135deg, rgba(0, 40, 104, 0.85) 0%, rgba(162, 8, 41, 0.85) 100%), url('../images/home/services-bg-pattern.jpg');
    background-size: cover;
}

.service-card {
    padding: 1.5rem 28px;
    border-radius: 15px;
    height: 100%;
    transition: var(--transition-base);
}

.dark-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.bright-card {
    background: white;
    color: var(--brand-black);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--brand-red);
}

.bright-card .service-icon {
    color: var(--brand-red);
}

.service-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* CTA Banner Section */
.cta-banner-box {
    background: linear-gradient(45deg, black, transparent), url(../images/grow-faster-scaled.jpg);
    border: 15px solid var(--brand-red);
    padding: 4rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-banner-graphic {
    position: absolute;
    bottom: -20px;
    right: 10%;
    width: 300px;
    height: 150px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    pointer-events: none;
    opacity: 0.3;
}

/* Why Choose Us Section */
.why-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    border-radius: 15px;
    height: 100%;
}

.card-blue {
    background-color: var(--brand-blue);
    color: white;
}

.card-red {
    background-color: var(--brand-red);
    color: white;
}

.why-icon {
    flex-shrink: 0;
}

.why-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-text {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-banner-box {
        padding: 2rem;
        border-width: 10px;
        text-align: center;
    }

    .stat-pill {
        border-radius: 30px;
    }

    .reverse-row-mobile {
        flex-direction: column-reverse;
    }
}

/* Growth Section */
.bg-light-soft {
    background-color: #fdeaea;
    /* Pale pink/red tint to match design */
}

.growth-card {
    background: white;
    padding: 8px;
    border-radius: 12px;
    transition: var(--transition-base);
}

.growth-card img {
    width: 100%;
    height: auto;
    display: block;
}

.growth-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.section-process {
    background-image: linear-gradient(135deg, rgba(162, 8, 41, 0.9) 0%, rgba(0, 40, 104, 0.9) 100%), url('../images/home/our-proven-seo-process-for-lasting-growth.jpg');
    background-size: cover;
    background-position: center;
}

.process-steps-wrapper {
    position: relative;
    padding-top: 30px;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.process-step-item {
    position: relative;
    z-index: 2;
}

.step-number-box {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
}

.step-number-box.active {
    background: var(--brand-blue);
    color: white;
}

.process-step-item:hover .step-number-box {
    transform: scale(1.15);
    background: var(--brand-red);
    color: white;
}

/* Case Studies Section */
.section-case-studies {
    background-image: linear-gradient(135deg, rgba(162, 8, 41, 0.95), rgba(0, 40, 104, 0.95)), url('../images/home/case-studies-images/banner-case-study.jpg');
}

.case-image {
    height: 160px;
}

.btn-filter {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: white;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-filter.active {
    background: var(--brand-blue);
}

.btn-filter:hover:not(.active) {
    background: var(--brand-red);
}

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.case-image {
    position: relative;
    overflow: hidden;
}

.case-image img {
    transition: var(--transition-base);
}

.case-badge {
    position: absolute;
    top: 15px;
    right: 0;
    background: var(--brand-red);
    color: white;
    padding: 6px 15px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-body {
    padding: 1.5rem;
}

.case-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--brand-black);
}

.case-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-study-card:hover .case-image img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonial-slider {
    transition: transform 0.3s ease;
}

.testimonial-card .client-meta img {
    object-fit: cover;
    border: 2px solid #eee;
}

.testimonials-container .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.testimonials-container .dot.active {
    background: var(--brand-red);
    width: 25px;
    border-radius: 20px;
}

/* Experts CTA Section */
.shadow-premium {
    box-shadow: 0 0 50px rgba(191, 10, 48, 0.25);
}

.experts-box {
    background: white;
}

.experts-box h2 {
    line-height: 1.2;
}

.expert-image-container img {
    transition: var(--transition-base);
}

.experts-box:hover .expert-image-container img {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .process-line {
        display: none;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

/* FAQ Section */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
}

.accordion-button {
    padding: 1.5rem;
    font-size: 1.1rem;
    box-shadow: none !important;
    background: white !important;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-blue) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23BF0A30' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    background-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23002868' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Locations Section */
.location-list {
    margin: 0;
}

.location-item {
    border-color: rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition-base);
}

.location-item:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-red) !important;
}

.btn-white {
    background-color: #fff;
    color: var(--brand-red);
}

.btn-white:hover {
    background-color: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

/* Header Styles */
.top-bar {
    background-color: var(--brand-red);
    color: var(--brand-white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar a {
    color: var(--brand-white);
    text-decoration: none;
    transition: var(--transition-base);
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Sticky Header Styles */
.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    transition: var(--transition-base);
}

.site-header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    animation: headerSlideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header.header-fixed .top-bar {
    display: none;
}

.site-header.header-fixed .main-header {
    padding: 10px 0;
    /* Slightly smaller on scroll */
    border-bottom: none;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Add padding to body to prevent jump when header becomes fixed */
body.header-scrolled {
    padding-top: 130px;
    /* Approximate height of header (top-bar + main-header) */
}

@media (max-width: 991px) {
    body.header-scrolled {
        padding-top: 110px;
        /* Adjust for mobile */
    }
}

.main-header {
    background-color: var(--brand-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--brand-accent);
    transition: var(--transition-base);
}

.site-logo {
    width: 10%;
    flex-shrink: 0;
}

.site-logo img {
    width: 100%;
}

.footer-logo .site-logo {
    width: 50%;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    margin: 0;
}

/* Branded Navigation Box (Desktop) */
.nav-menu-wrapper {
    background-color: var(--brand-accent);
    border: 1px solid var(--brand-red);
    border-radius: 50px;
    padding: 2px 25px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-base);
    display: block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-blue);
    transition: var(--transition-base);
}

.nav-menu a:hover,
.nav-menu .current-menu-item>a {
    color: var(--brand-blue);
}

.nav-menu .current-menu-item>a::after {
    width: 100%;
}

/* Services Mega Menu Styling */
.site-header {
    position: relative;
}

/* Ensure parents don't clip or offset the mega menu */
.nav-menu-wrapper,
.nav-menu,
.nav-menu li {
    position: static !important;
}

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 75% !important;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    padding-top: 20px;
}

/* Show Mega Menu on Hovering Services item */
.nav-menu li.menu-item-has-mega-menu:hover .mega-menu-container,
.mega-menu-container:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    background-color: var(--brand-blue) !important;
    border: 2px solid var(--brand-red) !important;
    border-radius: 20px !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    padding: 18px 10px !important;
}

.megamenu-header {
    background-color: var(--brand-red) !important;
    margin-bottom: 20px !important;
    transition: var(--transition-base);
}

.megamenu-header:hover {
    filter: brightness(1.1);
}

.megamenu-header h4 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}

.megamenu-links li {
    margin-bottom: 5px !important;
}

.megamenu-links li a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    padding: 4px 0 !important;
    display: flex !important;
    align-items: center;
    transition: var(--transition-base);
}

.megamenu-links li a:hover {
    color: var(--brand-white) !important;
    transform: translateX(8px);
}

.megamenu-links li a i {
    font-size: 12px;
    margin-right: 12px;
    color: var(--brand-white);
    opacity: 0.8;
}

.megamenu-links li a:hover i {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .mega-menu-container {
        display: none !important;
    }
}

/* WhatsApp Icon */
.whatsapp-btn {
    color: #25d366;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Footer Styles */
.site-footer {
    background-color: var(--brand-blue);
    color: white;
    position: relative;
    margin-top: 100px;
}

/* Floating Footer CTA */
.footer-cta-wrapper {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.footer-cta {
    background-color: var(--brand-red);
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-title {
    color: white;
    font-size: 1.75rem;
    margin: 0;
    max-width: 600px;
}

.whatsapp-icon-round {
    background-color: #25d366;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: var(--transition-base);
}

.main-header .header-actions a.whatsapp-icon-round {
    width: 215px;
    text-decoration: none;
}

.main-header .header-actions a.whatsapp-icon-round svg {
    margin-right: 10px;
}

.search-icon-round {
    background-color: var(--brand-blue);
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    transition: var(--transition-base);
}

.search-icon-round:hover {
    background-color: var(--brand-red);
    transform: scale(1.05);
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 104, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: rotate(90deg);
}

.search-overlay-content {
    max-width: 900px;
    width: 90%;
    text-align: center;
}

.search-label {
    display: block;
    color: var(--brand-red);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-overlay-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 4px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 4rem;
    font-weight: 900;
    padding: 20px 0;
    text-align: center;
    transition: all 0.3s ease;
}

.search-overlay-input:focus {
    outline: none;
    border-bottom-color: var(--brand-red);
}

.search-overlay-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.search-overlay-submit:hover {
    color: var(--brand-red);
}

.search-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
}

.search-hint span {
    color: white;
    font-weight: 700;
}

@media (max-width: 767px) {
    .search-overlay-input {
        font-size: 2rem;
    }

    .search-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Footer Main Content */
.footer-main {
    padding: 100px 0 50px;
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-base);
}

.footer-links-list a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-box {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: var(--transition-base);
}

.social-box:hover {
    background-color: var(--brand-red);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
}

/* --- RESPONSIVENESS (MOBILE, TABLET, DESKTOP) --- */

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--brand-blue);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--brand-blue);
    left: 0;
    transition: var(--transition-base);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.is-active .hamburger {
    background-color: transparent;
}

.menu-toggle.is-active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.is-active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Tablet and Smaller (991px and down) */
@media (max-width: 991px) {

    /* Header Tablet */
    .top-bar-left span {
        display: none;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--brand-white);
        border: none;
        border-radius: 0;
        padding: 80px 30px;
        transition: var(--transition-base);
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu-wrapper.is-open {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .header-actions {
        order: 1;
        margin-left: auto;
        margin-right: 15px;
    }

    .btn-premium {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Footer Tablet */
    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .site-footer {
        margin-top: 150px;
    }

    .footer-main {
        padding-top: 120px;
    }
}

/* Mobile (767px and down) */
@media (max-width: 767px) {
    .container-custom {
        padding: 0 1rem;
    }

    .top-bar-right {
        gap: 1rem;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .nav-menu-wrapper {
        width: 85%;
    }

    .header-actions .whatsapp-btn {
        display: none;
    }

    .footer-col {
        margin-bottom: 40px;
    }

    .footer-bottom .container-custom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-padding {
        padding-top: var(--space-md);
        padding-bottom: var(--space-md);
    }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
    .btn-premium {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* About Page - Specific Styles */
.about-hero-banner {
    padding: 40px 0 130px;
    background: linear-gradient(118deg, rgba(0, 40, 104, 0.92) 1%, rgba(191, 10, 48, 0.92) 100%), url('../images/about/about-us-banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.breadcrumb-glass {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-hero-title {
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.btn-whatsapp {
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #128C7E;
    color: white;
}

.about-hero-graphic {
    position: relative;
    margin-top: -195px !important;
    z-index: 10;
}

.graphic-container {
    background: white;
    padding: 10px;
    max-width: 650px;
    margin: 0 auto;
}

/* About Stats */
.about-stat-pill {
    /* min-height: 180px; */
    transition: var(--transition-base);
}

.about-stat-pill:hover {
    transform: translateY(-10px);
}

.about-stat-pill h3 {
    color: white !important;
}

/* Who We Are */
.who-we-are-image {
    position: relative;
}

.image-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(0, 40, 104, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 50%;
}

.shadow-premium {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Why Choose List Specifics */
.why-icon-box {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.why-item-content p strong {
    color: white;
}

/* What We Do - About Page */
.section-what-we-do {
    overflow: hidden;
}

.do-card {
    transition: var(--transition-base);
    border: 2px solid var(--brand-red) !important;
}

.do-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 40, 104, 0.2);
}

.do-icon i {
    color: var(--brand-white);
}

.section-what-we-do .h2 {
    letter-spacing: -0.5px;
}

@media (max-width: 991px) {
    .about-hero-banner {
        padding: 50px 0 100px;

    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-graphic {
        margin-top: 20px;
    }

    .do-card {
        padding: 30px 20px !important;
    }
}

/* Mission & Vision Section */
.mission-card,
.vision-card {
    transition: var(--transition-base);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateX(10px);
}

.object-fit-cover {
    object-fit: cover;
}

/* Grow Together Banner Section */
.grow-together-wrapper {
    box-shadow: 0 40px 100px -20px rgba(0, 40, 104, 0.4);
    z-index: 1;
}

.grow-together-form {
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.grow-together-form .form-title {
    color: var(--brand-red) !important;
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
}

.grow-together-form input,
.grow-together-form select,
.grow-together-form textarea,
.grow-together-form .multiselect-header {
    border-bottom: 1px solid #ddd !important;
}

@media (max-width: 991px) {
    .grow-together-wrapper {
        padding: 40px 25px !important;
        border-radius: 30px !important;
    }
}

/* Case Studies Page - Specific Styles */
.case-studies-hero {
    padding: 120px 0 100px;
    background: linear-gradient(118deg, rgba(0, 40, 104, 0.94) 1%, rgba(191, 10, 48, 0.94) 100%), url('../images/case-studies/case-studies-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.case-hero-title {
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.section-case-studies.bg-light-gradient {
    padding-top: 80px;
    /* background: #f8fafc; */
    /* Neutral background for grid contrast */
}

/* Custom Case Card Tweaks for Page */
.case-studies-hero+.about-stats-section {
    position: relative;
    z-index: 10;
    background-color: transparent !important;
}

@media (max-width: 991px) {
    .case-studies-hero {
        padding: 80px 0 60px;
    }

    .case-hero-title {
        font-size: 2.8rem;
    }
}

/* FAQs Page - Specific Styles */
.faqs-hero {
    padding: 140px 0 100px;
    background: linear-gradient(118deg, rgba(0, 40, 104, 0.95) 1%, rgba(191, 10, 48, 0.95) 100%), url('../images/faqs/faqs-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faqs-hero-title {
    letter-spacing: -1px;
    line-height: 1.1;
}

@media (max-width: 991px) {
    .faqs-hero {
        padding: 100px 0 60px;
    }

    .faqs-hero-title {
        font-size: 2.5rem;
    }
}

/* On-Page SEO Service Page Styles */
.on-page-hero {
    padding: 60px 0 40px;
    background: linear-gradient(118deg, #bf0a30b3 0%, #002868de 100%), url('../images/pages/on-page/on-page-banner-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.on-page-hero-title {
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-get-in-touch {
    z-index: 10;
    border: 2px solid var(--brand-red);
}

.hero-get-in-touch h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.on-page-bottom-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    z-index: 20;
}

.btn-pill-red {
    background: linear-gradient(90deg, #BF0A30 0%, #D81B43 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 1.1rem;
    display: inline-block;
}

.btn-pill-red:hover {
    transform: scale(1.05);
    background: var(--brand-blue);
    color: white;
    box-shadow: 0 15px 30px rgba(191, 10, 48, 0.4);
}

.btn-whatsapp-square {
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 24px;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-whatsapp-square:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

/* Why Matters Section */
.why-icon-item {
    border-left: 4px solid var(--brand-red) !important;
}

.why-icon-item:hover {
    transform: translateX(10px);
    border-color: var(--brand-blue) !important;
}

/* Expert Services Accordion */
.custom-expert-accordion .accordion-item {
    border: 1px solid rgba(191, 10, 48, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.custom-expert-accordion .accordion-button {
    font-size: 1.15rem !important;
    letter-spacing: -0.2px;
    color: var(--brand-blue) !important;
}

.custom-expert-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--brand-blue) !important;
    box-shadow: none;
}

.custom-expert-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-expert-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23BF0A30'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3e%3c/svg%3e") !important;
    content: "";
    width: 22px;
    height: 22px;
    background-size: contain;
}

.custom-expert-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23002868'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e") !important;
}


/* Process Section */
.process-box-fancy {
    border: 2px solid transparent;
}

.process-box-fancy:hover {
    border-color: var(--brand-red);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 40, 104, 0.3);
}

.process-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.checkmark-icon i {
    font-size: 20px;
}

.why-choose-graphic img {
    border: 1px solid rgba(191, 10, 48, 0.2);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .on-page-hero {
        padding: 80px 0 120px;
        text-align: center;
    }

    .on-page-hero-title {
        font-size: 2.8rem;
    }

    .about-breadcrumb {
        justify-content: center;
    }

    .on-page-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .on-page-bottom-cta {
        transform: translateY(30%);
    }

    .why-choose-graphic img {
        min-height: 300px !important;
        margin-top: 30px;
    }
}

/* On-Page Packages Banner */
.packages-banner-wrapper {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    border: 15px solid var(--brand-red) !important;
    z-index: 1;
}

.packages-rocket-bg {
    pointer-events: none;
    z-index: 0;
}

/* On-Page Results Section */
.results-graphic {
    border: 1px solid rgba(191, 10, 48, 0.1);
}

/* On-Page FAQ Section */
.on-page-faq-accordion .accordion-button {
    background-color: transparent !important;
    color: white !important;
    box-shadow: none !important;
}

.on-page-faq-accordion .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: white !important;
    box-shadow: none !important;
}

.on-page-faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    background-size: 20px;
}

.on-page-faq-accordion .accordion-item {
    transition: var(--transition-base);
}

.on-page-faq-accordion .accordion-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Bottom CTA Red Form */
.on-page-bottom-cta-form .cta-form-box {
    border: 2px solid var(--brand-red);
}

.on-page-bottom-cta-form .display-4 {
    letter-spacing: -2px;
    line-height: 1.1;
}

@media (max-width: 991px) {
    .on-page-packages .display-4 {
        font-size: 2.2rem;
    }

    .on-page-bottom-cta-form {
        text-align: center;
    }

    .on-page-bottom-cta-form .display-4 {
        font-size: 2.5rem;
    }

    .packages-banner-wrapper {
        border-width: 8px !important;
        padding: 40px 20px !important;
    }
}

/* Off-Page SEO Service Page Styles */
.off-page-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(118deg, #bf0a30b3 0%, #002868de 100%), url('../images/pages/off-page/off-page-hero-banner.webp');
}

.off-page-hero-bg {
    z-index: 0;
}

.off-page-v-tabs .nav-link {
    text-align: left;
    background-color: #f3f3f3;
    color: var(--brand-blue);
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.off-page-v-tabs .nav-link:hover {
    background-color: #e9e9e9;
    transform: translateX(5px);
}

.off-page-v-tabs .nav-link.active {
    background-color: var(--brand-blue) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(0, 40, 104, 0.2);
    border-color: var(--brand-blue);
}

.off-page-v-tabs .nav-link.active:hover {
    transform: none;
}

.essential-item {
    transition: all 0.3s ease;
    cursor: default;
}

.essential-item:hover {
    border-color: var(--brand-blue) !important;
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.off-page-process .process-step,
.off-page-choose .choose-item {
    transition: transform 0.3s ease;
}

.off-page-process .process-step:hover,
.off-page-choose .choose-item:hover {
    transform: translateX(8px);
}

.off-page-form-box {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.btn-brand-red {
    background-color: var(--brand-red);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-brand-red:hover {
    background-color: var(--brand-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(191, 10, 48, 0.3);
}

@media (max-width: 991px) {
    .off-page-hero {
        text-align: center;
        padding-top: 100px;
    }

    .off-page-hero .breadcrumb {
        justify-content: center;
    }

    .off-page-hero .d-flex {
        justify-content: center;
    }

    .off-page-v-tabs {
        flex-direction: row !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .off-page-v-tabs .nav-link {
        white-space: nowrap;
        margin-right: 10px;
        margin-bottom: 0;
    }
}

/* Technical SEO Service Page Styles */
.technical-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(118deg, #bf0a30b3 0%, #002868de 100%), url('../images/pages/technical-seo/search-engine-optimization.jpg');
    background-size: cover;
    background-position: center;
}

.technical-hero-bg {
    z-index: 0;
}

.tech-feature-item {
    background-color: #fff;
    border: 1px solid rgba(0, 40, 104, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tech-feature-item:hover {
    border-color: var(--brand-blue) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.tech-v-tabs .nav-link {
    text-align: left;
    background-color: #f7f7f7;
    color: var(--brand-blue);
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-v-tabs .nav-link:hover {
    background-color: #efefef;
}

.tech-v-tabs .nav-link.active {
    background-color: var(--brand-blue) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(0, 40, 104, 0.2);
}

.tech-tabs-content {
    min-height: 350px;
}

.technical-problems .problems-list li i {
    font-size: 0.9rem;
}

/* Technical FAQ Custom Styles */
.technical-faq .accordion-item {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.technical-faq .accordion-button {
    background-color: transparent !important;
    color: #fff !important;
    padding: 20px 0 !important;
    box-shadow: none !important;
}

.technical-faq .accordion-button::after {
    display: none !important;
}

.technical-faq .accordion-button:not(.collapsed) {
    color: #fff !important;
}

.technical-faq .faq-icon-wrapper {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technical-faq .faq-icon-wrapper i {
    font-size: 1.1rem;
    color: #bf0a30;
    transition: all 0.3s ease;
}

.technical-faq .accordion-button.collapsed .fa-minus,
.technical-faq .accordion-button:not(.collapsed) .fa-plus {
    display: none;
}

.technical-faq .accordion-body {
    padding: 0 0 20px 0 !important;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Dental SEO Styles */
.dental-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.dental-hero-bg {
    background: linear-gradient(118deg, rgba(0, 40, 104, 0.9) 1%, rgba(144, 21, 104, 0.7) 100%), url('../images/pages/dental-seo/dental-seo-services-banner-scaled.jpg.webp');
    background-size: cover;
    background-position: center;
}

.dental-benefits-list li i {
    font-size: 0.8rem;
}

.dental-mockup-wrapper .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
}

.carousel-dot.active {
    background-color: #333;
}

.dental-steps-timeline .steps-line {
    top: 55px;
}

.dental-steps-timeline .step-dot-wrapper {
    position: relative;
    z-index: 2;
}

.dental-partnership .partnership-wrapper h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
}

.dental-benefit-card {
    transition: all 0.3s ease;
    background: #fff;
}

.dental-benefit-card:hover {
    transform: translateX(10px);
    border-color: #bf0a30 !important;
    box-shadow: 0 5px 15px rgba(191, 10, 48, 0.1);
}

.dental-illustration {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-studies-inner {
    transition: all 0.3s ease;
}

.case-studies-inner:hover {
    box-shadow: 0 15px 40px rgba(191, 10, 48, 0.2);
}

.dental-results .results-list li i {
    font-size: 1rem;
}

/* E-Commerce SEO Styles */
.ecommerce-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #000;
}

.ecommerce-hero-bg {
    background: linear-gradient(118deg, #002868D1 1%, #BF0A30 100%), url('../images/pages/ecommerce/e-commerce-banner-scaled.jpg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.ecommerce-hero-form-wrapper {
    z-index: 10;
}

.hover-translate-x {
    transition: all 0.3s ease;
}

.hover-translate-x:hover {
    transform: translateX(10px);
    border-color: #bf0a30 !important;
}

.timeline-line-vertical {
    left: 50%;
}

.timeline-card {
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
}

.ecommerce-matters-graphic img {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

/* Lawyer SEO Styles */
.lawyer-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #000;
}

.lawyer-hero-bg {
    background: linear-gradient(118deg, rgba(160, 4, 34, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%), url('../images/pages/lawyer/Lawyer-image-banner.jpg.webp');
    background-size: cover;
    background-position: center;
}

.bg-brand-purple {
    background: linear-gradient(45deg, #8343a4 0%, #a453cd 100%);
}

.lawyer-slider-container {
    box-shadow: 0 20px 50px rgba(131, 67, 164, 0.2);
}

.slider-arrow {
    transition: opacity 0.3s ease;
}

.slider-arrow:hover {
    opacity: 0.7;
}

.process-card {
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.lawyer-benefit-item {
    transition: all 0.3s ease;
}

.lawyer-benefit-item:hover {
    border-color: #bf0a30 !important;
    transform: translateX(10px);
}




@media (max-width: 991px) {
    .technical-hero {
        text-align: center;
        padding-top: 100px;
    }

    .technical-hero .breadcrumb {
        justify-content: center;
    }

    .technical-hero .d-flex {
        justify-content: center;
    }

    .tech-v-tabs {
        flex-direction: row !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .tech-v-tabs .nav-link {
        white-space: nowrap;
        margin-right: 10px;
        margin-bottom: 0;
    }
}

/* --- Vermont SEO Page Styles --- */
.vermont-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/pages/locations-pages/vermont/vermont-banner-image.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 24px;
}

.vermont-hero-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vermont-hero-form h3 {
    color: var(--brand-blue);
    text-align: center;
    margin-bottom: 25px;
}

.vermont-hero-form .form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 0;
    margin-bottom: 20px;
    background: transparent;
}

.vermont-hero-form .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--brand-red);
}

.vermont-hero-form .btn-submit {
    width: 100%;
    background: var(--brand-blue);
    color: white;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    margin-top: 10px;
}

.why-vermont-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-left: 5px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.why-vermont-card:hover {
    border-left-color: var(--brand-red);
    transform: translateX(10px);
}

.vt-service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.vt-service-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.vt-service-card i {
    font-size: 2.5rem;
    color: var(--brand-red);
    margin-bottom: 20px;
    display: block;
}

.vt-service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--brand-blue);
}

.vt-service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.insight-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.insight-item i {
    font-size: 1.5rem;
    color: var(--brand-red);
    flex-shrink: 0;
    margin-top: 5px;
}

.insight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--brand-blue);
}

.insight-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.industry-list li {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.industry-list span {
    color: var(--brand-red);
    font-weight: 700;
    margin-right: 10px;
}

.local-insights-vt {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/pages/locations-pages/vermont/ExploreVermont.jpg.webp');
    background-size: cover;
    background-position: center;
}

.vt-tabs-sidebar {
    list-style: none;
    padding: 0;
}

.vt-tab-btn {
    display: block;
    width: 100%;
    padding: 15px 25px;
    background: #f1f5f9;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--brand-blue);
}

.vt-tab-btn.active {
    background: var(--brand-red);
    color: white;
}

.vt-tab-content {
    display: none;
}

.vt-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.btn-vermont-primary {
    background: linear-gradient(135deg, #BF0A30 0%, #990826 100%);
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(191, 10, 48, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    border: none;
}

.btn-vermont-primary:hover {
    transform: translateY(-4px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media(max-width:991px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

section.section-padding.bg-light-vermont.services-grid-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/pages/locations-pages/vermont/amazing-shot-us-flag-park-manhattan-skyline-background-scaled.jpg.webp');
}

/* Workflow Section */
.workflow-card-vt {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--brand-red);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.workflow-card-vt:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.workflow-icon {
    color: var(--brand-red);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.workflow-card-vt h4 {
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.workflow-card-vt p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Why Choose Section */
.why-item-vt {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.why-item-vt i {
    color: var(--brand-red);
    font-size: 1.2rem;
    margin-top: 5px;
}

.why-item-vt h4 {
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.why-item-vt p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* FAQ Section */
.vt-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.vt-accordion .accordion-button {
    font-weight: 700;
    color: var(--brand-blue);
    padding: 20px 0;
}

.vt-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--brand-red);
}

.vt-accordion .accordion-button:focus {
    box-shadow: none;
}

.vt-accordion .accordion-body {
    padding: 0 0 20px;
    color: #555;
}

/* Footer CTA adjustments */
.vt-footer-cta .form-title {
    color: var(--brand-blue) !important;
    font-size: 2rem !important;
}

/* --- Wyoming SEO Page Styles --- */
.wyoming-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/pages/locations-pages/wyoming/wyoming-banner.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    position: relative;
}

.wyoming-hero-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.wyoming-hero-form input:focus,
.wyoming-hero-form textarea:focus {
    outline: none;
    border-bottom-color: var(--brand-red);
}

.bg-light-red {
    background-color: #fce4ec;
}

.wy-market-list li i {
    font-size: 0.9rem;
    margin-top: 6px;
}

.wy-service-card-white {
    transition: all 0.3s ease;
}

.wy-service-card-white:hover {
    border-color: var(--brand-red) !important;
    transform: translateY(-5px);
}

.wy-s-icon {
    color: var(--brand-red);
    font-size: 2rem;
}

.wy-process-card {
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.wy-process-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-5px);
}

.step-badge {
    display: inline-block;
    background: #eee;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.wy-process-card .step-icon i {
    opacity: 0.8;
}

/* Wyoming Footer CTA */
.wy-footer-cta .step-start-list ul li i {
    font-size: 0.8rem;
    margin-top: 5px;
}

.wy-footer-cta .form-title {
    color: var(--brand-blue) !important;
    font-size: 2.2rem !important;
    margin-bottom: 25px !important;
}

.wy-footer-cta .btn-premium.btn-primary-custom {
    background: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    color: white !important;
}

.wy-footer-cta .btn-premium.btn-primary-custom:hover {
    background: #001a45 !important;
}

/* ============================================
   Delaware SEO Page Styles
   ============================================ */

/* Hero */
.delaware-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.delaware-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/pages/locations-pages/delaware/Delaware-banner.webp');
    background-size: cover;
    background-position: center top;
}

/* Famous / Boost Section */
.del-boost-item {
    transition: all 0.3s ease;
}

.del-boost-item:hover {
    border-color: var(--brand-red) !important;
    transform: translateX(5px);
}

.del-boost-icon {
    flex-shrink: 0;
}

/* Services Accordion */
.delaware-services-accordion .accordion-button {
    justify-content: space-between;
}

.delaware-services-accordion .accordion-button::after {
    display: none;
}

.delaware-services-accordion .accordion-button .fa-arrow-up {
    transition: transform 0.3s ease;
}

.delaware-services-accordion .accordion-button.collapsed .fa-arrow-up {
    transform: rotate(180deg);
}

.delaware-services-accordion .accordion-body {
    line-height: 1.7;
}

/* Process Section */
.del-process-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.del-process-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-5px);
}

.del-step-circle {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #ddd;
}

.del-step-circle span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-blue);
    background: white;
    border: 1px solid var(--brand-blue);
    border-radius: 20px;
    padding: 2px 8px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.del-step-circle i {
    color: var(--brand-red);
    font-size: 1.6rem;
    margin-top: 10px;
}

/* FAQ */
.delaware-faq .custom-faq-btn {
    display: flex;
    align-items: center;
    border: none;
    width: 100%;
    padding: 0;
}

.delaware-faq .faq-icon-wrapper {
    flex-shrink: 0;
}

.delaware-faq .faq-icon-wrapper .fa-minus {
    display: none;
}

.delaware-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-plus {
    display: none;
}

.delaware-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-minus {
    display: inline;
}

/* Footer CTA */
.delaware-footer-cta .form-title {
    color: var(--brand-blue) !important;
}

.delaware-footer-cta .bg-brand-blue {
    background-color: var(--brand-blue) !important;
}

.delaware-footer-cta .bg-brand-blue:hover {
    background-color: #001a45 !important;
}

/* Trust & Why Partner Cards */
.del-trust-card,
.del-gain-card {
    transition: all 0.3s ease;
}

.del-trust-card:hover,
.del-gain-card:hover {
    border-color: var(--brand-red) !important;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(191, 10, 48, 0.1) !important;
}

.del-trust-icon,
.del-gain-icon {
    flex-shrink: 0;
}

/* ============================================
   Rhode Island SEO Page Styles
   ============================================ */

/* Hero */
.ri-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.ri-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/pages/locations-pages/rhode-island/Rhode-Island-banner.webp');
    background-size: cover;
    background-position: center top;
}

/* Service Cards */
.ri-service-card {
    transition: all 0.3s ease;
    border-color: #e5e5e5 !important;
}

.ri-service-card:hover {
    border-color: var(--brand-red) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(191, 10, 48, 0.08) !important;
}

/* Process Cards */
.ri-process-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ri-process-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-5px);
}

/* Benefits */
.ri-benefits-img img {
    object-fit: cover;
}

/* CTA Audit Dark BG */
.ri-cta-audit {
    position: relative;
}

.ri-cta-audit .btn-outline-light {
    border-width: 2px;
}

.ri-cta-audit .btn-outline-light:hover {
    background-color: white;
    color: #0a0a0a;
}

/* FAQ — White Background variant */
.ri-faq .accordion-item {
    background: transparent;
}

.ri-faq .custom-faq-btn {
    display: flex;
    align-items: center;
    border: none;
    width: 100%;
    padding: 12px 0;
}

.ri-faq .faq-icon-wrapper {
    flex-shrink: 0;
}

.ri-faq .faq-icon-wrapper .fa-minus {
    display: none;
}

.ri-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-plus {
    display: none;
}

.ri-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-minus {
    display: inline;
}

.ri-faq .accordion-button:not(.collapsed) {
    color: var(--brand-red) !important;
}

/* ============================================
   Montana SEO Page Styles
   ============================================ */

/* Hero */
.mt-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.mt-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/pages/locations-pages/montana/Montana-banner.webp');
    background-size: cover;
    background-position: center top;
}

/* Why Choose */
.mt-why-img img {
    object-fit: cover;
}

/* Solutions */
.mt-solution-item {
    transition: all 0.2s ease;
}

.mt-sol-bullets li {
    transition: color 0.2s ease;
}

/* Industries */
.mt-industry-list li {
    transition: opacity 0.2s ease;
}

.mt-industry-list li:hover {
    opacity: 0.85;
}

/* Process */
.mt-process-step {
    transition: transform 0.2s ease;
}

.mt-process-step:not([style*="bf0a30"]):hover {
    transform: translateX(5px);
}

/* Benefits Cards */
.mt-benefit-card {
    transition: all 0.3s ease;
}

.mt-benefit-card:hover {
    border-color: var(--brand-red) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(191, 10, 48, 0.08) !important;
}

/* CTA */
.mt-cta-audit .btn-outline-light {
    border-width: 2px;
}

.mt-cta-audit .btn-outline-light:hover {
    background-color: white;
    color: #0a0a0a;
}

/* FAQ */
.mt-faq .accordion-item {
    background: transparent;
}

.mt-faq .custom-faq-btn {
    display: flex;
    align-items: center;
    border: none;
    width: 100%;
    padding: 12px 0;
}

.mt-faq .faq-icon-wrapper {
    flex-shrink: 0;
}

.mt-faq .faq-icon-wrapper .fa-minus {
    display: none;
}

.mt-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-plus {
    display: none;
}

.mt-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-minus {
    display: inline;
}

.mt-faq .accordion-button:not(.collapsed) {
    color: var(--brand-red) !important;
}

/* ============================================
   New Mexico SEO Page Styles
   ============================================ */

/* Hero */
.nm-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.nm-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/pages/locations-pages/new-mexico/Mexico-banner.jpg.webp');
    background-size: cover;
    background-position: center top;
}

/* Services Cards */
.nm-svc-card {
    transition: all 0.3s ease;
}

.nm-svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Industry Cards */
.nm-industry-card {
    transition: all 0.3s ease;
}

.nm-industry-card:hover {
    border-color: var(--brand-red) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(191, 10, 48, 0.08) !important;
}

/* Comparison Table */
.nm-comparison-table thead th {
    border-color: transparent;
}

.nm-comparison-table tbody td {
    padding: 14px 20px;
}

.nm-comparison-table tbody tr:hover td {
    background-color: #fff5f5;
}

/* Process Cards */
.nm-process-card {
    transition: all 0.3s ease;
}

.nm-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

/* CTA */
.nm-cta-audit .btn-outline-light {
    border-width: 2px;
}

.nm-cta-audit .btn-outline-light:hover {
    background-color: white;
    color: #0a0a0a;
}

/* FAQ */
.nm-faq .accordion-item {
    background: transparent;
}

.nm-faq .custom-faq-btn {
    display: flex;
    align-items: center;
    border: none;
    width: 100%;
    padding: 12px 0;
}

.nm-faq .faq-icon-wrapper {
    flex-shrink: 0;
}

.nm-faq .faq-icon-wrapper .fa-minus {
    display: none;
}

.nm-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-plus {
    display: none;
}

.nm-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-minus {
    display: inline;
}

.nm-faq .accordion-button:not(.collapsed) {
    color: var(--brand-red) !important;
}

/* ============================================
   Arkansas SEO Page Styles
   ============================================ */

/* Hero */
.ar-hero {
    /* min-height: 85vh; */
    display: flex;
    align-items: center;
}

.ar-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/pages/locations-pages/arkansas/Arkansas-banner-scaled.jpg.webp');
    background-size: cover;
    background-position: center top;
}

/* Why Arkansas */
.ar-why .ar-why-img img {
    object-fit: cover;
}

/* Services Cards */
.ar-svc-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ar-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(191, 10, 48, 0.15) !important;
}

/* Why Choose */
.ar-why-choose-img img {
    object-fit: cover;
}

/* Industries */
.ar-ind-item {
    transition: transform 0.2s ease;
}

.ar-ind-item:hover {
    transform: translateX(4px);
}

/* CTA */
.ar-cta {
    background-color: #0a0a0a;
}

.ar-cta .btn-premium {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ar-cta .btn-premium:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* FAQ Accordion */
.ar-faq .custom-faq-btn {
    padding: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.ar-faq .faq-icon-wrapper .fa-minus {
    display: none;
}

.ar-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-plus {
    display: none;
}

.ar-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-minus {
    display: inline;
}

.ar-faq .accordion-button:not(.collapsed) {
    color: var(--brand-red) !important;
}

/* Arkansas Process Table */
.ar-process-table {
    border-collapse: collapse;
    width: 100%;
}

.ar-process-table thead tr {
    background-color: #bf0a30;
}

.ar-process-table thead th {
    border: none;
    font-size: 0.95rem;
}

.ar-process-table tbody tr {
    transition: background-color 0.2s ease;
}

.ar-process-table tbody tr:hover {
    background-color: #fff0f3 !important;
}

.ar-process-table tbody td {
    border: none;
    vertical-align: middle;
    font-size: 0.9rem;
}

/* Arkansas Timeline Cards */
.ar-timeline-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ar-timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(191, 10, 48, 0.12) !important;
}

/* Arkansas Contact CTA Form */
.ar-contact-cta .ar-form-input {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0 !important;
    border-bottom: 2px solid #bf0a30 !important;
    font-size: 0.9rem;
    color: #333;
    padding-left: 0 !important;
}

.ar-contact-cta .ar-form-input:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: #002868 !important;
}

.ar-contact-cta .ar-form-input::placeholder {
    color: #aaa;
}

.ar-contact-form-card {
    border-radius: 16px;
}

/* Arkansas FAQ (updated) */
.ar-faq .custom-faq-btn {
    padding: 12px 0;
    display: flex;
    gap: 12px;
    align-items: center;
    background: transparent !important;
    border: none;
    width: 100%;
}

/* ============================================
   Utah SEO Page Styles
   ============================================ */

/* Hero */
.ut-hero {
    display: flex;
    align-items: center;
}

.ut-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/pages/locations-pages/utah/utah-banner.webp');
    background-size: cover;
    background-position: center top;
}

/* Why Utah */
.ut-why-block {
    transition: transform 0.2s ease;
}

.ut-why-block:hover {
    transform: translateX(4px);
}

.ut-why-img img {
    object-fit: cover;
}

/* Services */
.ut-svc-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ut-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(191, 10, 48, 0.15) !important;
}

/* Why Choose Feature Boxes */
.ut-feature-box {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ut-feature-box:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(191, 10, 48, 0.10) !important;
}

.ut-why-choose-img img {
    object-fit: cover;
}

/* Industries */
.ut-ind-item {
    transition: transform 0.2s ease;
}

.ut-ind-item:hover {
    transform: translateX(4px);
}

/* Process Table */
.ut-process-table {
    border-collapse: collapse;
    width: 100%;
}

.ut-process-table thead tr {
    background-color: #bf0a30;
}

.ut-process-table thead th {
    border: none;
    font-size: 0.95rem;
}

.ut-process-table tbody tr {
    transition: background-color 0.2s ease;
}

.ut-process-table tbody tr:hover {
    background-color: #fff0f3 !important;
}

.ut-process-table tbody td {
    border: none;
    vertical-align: middle;
    font-size: 0.9rem;
}

/* Timeline Cards */
.ut-timeline-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ut-timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(191, 10, 48, 0.12) !important;
}

/* FAQ */
.ut-faq .custom-faq-btn {
    padding: 12px 0;
    display: flex;
    gap: 12px;
    align-items: center;
    background: transparent !important;
    border: none;
    width: 100%;
}

.ut-faq .faq-icon-wrapper .fa-minus {
    display: none;
}

.ut-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-plus {
    display: none;
}

.ut-faq .accordion-button:not(.collapsed) .faq-icon-wrapper .fa-minus {
    display: inline;
}

.ut-faq .accordion-button:not(.collapsed) {
    color: var(--brand-red) !important;
}

/* SEO Audit */

.sa-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/pages/seo-audit/seo-audit-banner.webp');
}

/* SEO Audit Modal Form */
.modal-audit-form .modal-content {
    border: 3px solid #BF0A30;
    border-radius: 20px;
    padding: 10px;
    background: #fff;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-audit-form .modal-header {
    border-bottom: none;
    justify-content: center;
    padding-top: 30px;
}

.modal-audit-form .modal-header .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 5px;
    opacity: 1;
    background-size: 12px;
    z-index: 10;
}

.modal-audit-form .modal-title {
    color: #BF0A30;
    font-weight: 800;
    font-size: 2.8rem;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
}

.modal-audit-form .form-control {
    border: none !important;
    border-bottom: 2px solid #BF0A30 !important;
    border-radius: 0 !important;
    padding: 12px 10px !important;
    margin-bottom: 20px !important;
    font-size: 1.1rem !important;
    color: #333 !important;
    box-shadow: none !important;
}

.modal-audit-form .form-control::placeholder {
    color: #999;
}

.modal-audit-form textarea.form-control {
    min-height: 100px;
}

.modal-audit-form .btn-submit-modal {
    background-color: #BF0A30;
    color: #fff;
    border: none;
    padding: 10px 40px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-audit-form .btn-submit-modal:hover {
    background-color: #002868;
}

/* Floating Scroll CTA */
.floating-cta-wrapper {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 999;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 15px 30px;
    pointer-events: none;
}

.floating-cta-wrapper.show {
    bottom: 0;
}

.btn-floating-red {
    background: #BF0A30;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(191, 10, 48, 0.4);
    transition: all 0.3s ease;
    pointer-events: auto;
    border: none;
    text-align: center;
    max-width: 90%;
}

.btn-floating-red:hover {
    background: #002868;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 40, 104, 0.3);
}

@media (max-width: 767px) {
    .btn-floating-red {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
    }
}

/* Testimonials Slider - Professional Agency Redesign */
.testimonials-slider-wrapper {
    background: #002868;
    background: linear-gradient(135deg, #002868 0%, #001a43 100%);
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(0, 40, 104, 0.2);
    position: relative;
    overflow: visible;
}

.testimonials-swiper {
    padding-bottom: 60px !important;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px !important;
    padding: 35px !important;
    border: none !important;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    position: relative;
    border-left: 4px solid var(--brand-red) !important;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.client-img-wrap {
    width: 75px;
    height: 75px;
    min-width: 75px;
    flex-shrink: 0;
}

.client-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-img-wrap img {
    border-color: var(--brand-red);
    transform: scale(1.08);
}

.client-meta {
    border-bottom: 1px solid #f0f0f0 !important;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
}

.testimonial-rating {
    margin: 0 0 10px 0;
}

.testimonial-rating i {
    font-size: 0.8rem;
    color: #ffc107;
    margin-right: 2px;
}

.quote-icon-wrap {
    position: relative;
    height: 30px;
}

.quote-icon-wrap i {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon-wrap i {
    transform: rotate(-15deg);
    opacity: 0.5 !important;
}

.testimonial-text {
    line-height: 1.8;
    font-size: 1rem;
    color: #444 !important;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
}

/* Distinct Navigation Buttons */
.swiper-btn-custom {
    color: #002868 !important;
    background: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-btn-custom::after {
    font-size: 1rem !important;
    font-weight: 900;
}

.swiper-btn-custom:hover {
    background: var(--brand-red) !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next {
    right: 1px !important;
}

.swiper-button-prev {
    left: -1px !important;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: rgb(255 2 2 / 40%) !important;

    width: 8px;
    height: 8px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #002868 !important;
    width: 25px;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .testimonials-slider-wrapper {
        padding: 40px 20px;
        margin-top: 30px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .testimonials-swiper {
        padding-bottom: 50px !important;
    }
}

@media (max-width: 575px) {
    .testimonial-info h2 {
        font-size: 2.2rem;
    }
}

/* Case Study Single Page Style */
.cs-single-wrapper {
    color: var(--brand-black);
}

.cs-hero-single {
    background: linear-gradient(rgba(0, 40, 104, 0.85), rgba(0, 40, 104, 0.95)), url('../images/case-studies/case-studies-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
    color: white;
    text-align: center;
}

.cs-summary-bar {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid #eee;
}

.cs-section-title {
    color: var(--brand-red);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.cs-list {
    list-style: none !important;
    padding: 0 !important;
}

.cs-list li {
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 12px;
}

.cs-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--brand-red);
}

.strategy-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    height: 100%;
    transition: var(--transition-base);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-red);
}

.result-box {
    background: #fdf2f4;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(191, 10, 48, 0.1);
}

.result-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-red);
    display: block;
}

.chart-mockup {
    background: #0b1120;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-mockup img {
    width: 100%;
    border-radius: 10px;
}

.cs-conclusion {
    background: var(--brand-blue);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.location-link:hover {
    color: var(--brand-red) !important;
    padding-left: 5px;
}

.location-item {
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.05);
}


/* Check */