/* Add this to the end of styles.css or replace the whole file? I will replace the whole file to be safe and ensure the mobile CTA and other tweaks are correctly integrated. */
:root {
    --primary-color: #369b9e; /* Custom Bago Teal */
    --secondary-color: #df9c5c; /* Custom Bago Orange/Sand */
    --accent-color: #277477; /* Darker Teal */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #121212;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #369b9e;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.7; /* Increased for better readability */
    background-color: var(--white);
    padding-bottom: 0; /* Will be adjusted by media query for mobile sticky CTA */
    overflow-x: hidden;
}

h1, h2, h3, .logo a {
    font-family: 'Outfit', sans-serif;
}

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

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

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mt-2 {
    margin-top: 1.5rem !important;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.top-bar-phone a {
    color: var(--white);
}

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

.emergency-badge {
    background: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    color: var(--white);
    display: inline-block;
}

.emergency-badge:hover {
    background: #bf360c;
}

/* Main Header */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 1.2rem 0;
}

.header-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.logo a {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: baseline;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(56, 142, 60, 0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #2e7d32;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
    color: var(--white);
}

.cta-button.secondary-cta {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
}

.cta-button.secondary-cta:hover {
    background: var(--white);
    color: var(--primary-color);
}

.cta-button.white-border {
    border-color: var(--white);
    color: var(--white);
}

.cta-button.white-border:hover {
    background: var(--white);
    color: var(--primary-color);
}

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

.cta-button.white-btn:hover {
    background: var(--light-bg);
    color: #bf360c;
}

.massive-call {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    background: rgba(0,0,0,0.45);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-stress {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffcc80;
    margin-bottom: 1.2rem;
}

.hero-specialties {
    margin-top: 2rem;
    text-align: left;
    display: inline-block;
}

.hero-specialties ul {
    list-style: none;
    column-count: 2;
    column-gap: 3rem;
    margin-top: 0.8rem;
}

.hero-specialties li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.hero-specialties li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.serving-area {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #90caf9;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-badges-row span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
}

.trust-badges-row i {
    color: #4caf50;
}

/* Immediate Trust */
.immediate-trust {
    background: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.immediate-trust .stars {
    color: #fbc02d;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.immediate-trust blockquote {
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-style: italic;
    line-height: 1.4;
}

.reviewer {
    font-weight: 700;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.outline-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

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

/* Agitation & Solution */
.agitation-solution {
    padding: 8rem 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.split-layout.align-center {
    align-items: center;
}

.agitation-box h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.bad-list, .good-list {
    list-style: none;
    margin-bottom: 2rem;
}

.bad-list li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bad-list i {
    color: #d32f2f;
    margin-top: 0.25rem;
}

.solution-box {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.solution-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.good-list li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 500;
}

.good-list i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

/* Services Intro */
.services-intro {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.services-intro h2 {
    font-size: 2.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Service Blocks */
.service-block {
    padding: 7rem 0;
}

.split-layout.reverse-layout .service-content {
    order: 2;
}

.split-layout.reverse-layout .service-media {
    order: 1;
}

.service-content h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pain-list, .fix-list {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.seo-tags {
    margin: 2.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.seo-tags span {
    font-size: 0.85rem;
    color: #777;
    background: #f0f0f0;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
}

/* Video Frame */
.video-frame {
    background: var(--white);
    border-radius: 30px;
    padding: 1.2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.placeholder-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #e0e0e0;
    transition: transform 0.3s ease;
}

.video-frame:hover .placeholder-embed {
    transform: scale(1.02);
}

.placeholder-embed i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

/* Financing Banner */
.financing-banner {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.financing-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.financing-banner p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

/* Why Us / Trust Section */
.why-us {
    padding: 8rem 0;
    color: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.section-heading h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.why-us .section-heading h2 {
    color: #fff;
    text-shadow: none;
}

.core-values {
    list-style: none;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.core-values li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.core-values li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.trust-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tf-item {
    background: var(--light-bg);
    padding: 1.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tf-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.tf-item i {
    color: var(--success-color);
    font-size: 1.5rem;
}

/* Certifications */
.certifications {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    background: var(--white);
}

.certifications h3 {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.5rem;
}

.cert-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.cert-placeholder {
    padding: 1.5rem 3rem;
    background: var(--light-bg);
    border: 2px dashed #ccc;
    color: #888;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
}

.small-note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 2rem;
}

/* About Us Team */
.about-us {
    padding: 8rem 0;
}

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

.team-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.placeholder-photo {
    height: 300px;
    background: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
}

.placeholder-photo i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.team-info {
    padding: 2.5rem;
}

.team-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.team-info ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.team-bio {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: #555;
    font-size: 1.1rem;
}

/* FAQs */
.faqs {
    padding: 8rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.8rem;
    background: transparent;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer > div {
    padding: 0 1.8rem 1.8rem;
    font-size: 1.15rem;
}

/* Testimonials Grid */
.testimonials {
    padding: 8rem 0;
    background: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.test-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.test-card .stars {
    color: #fbc02d;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.test-card p {
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    text-align: center;
    background: var(--white);
}

.final-cta h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.problem-list-horizontal {
    font-size: 1.4rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

.problem-list-horizontal span {
    color: var(--secondary-color);
}

.final-assurance {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    line-height: 1.4;
}

.final-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-actions .secondary-cta {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.final-actions .secondary-cta:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 6rem 0 3rem;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.sticky-mobile-cta a {
    display: block;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
}

.sticky-mobile-cta a i {
    margin-right: 0.5rem;
}

.sticky-mobile-cta a:hover {
    background: #bf360c;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        padding-bottom: 60px; /* Space for sticky CTA */
    }

    .sticky-mobile-cta {
        display: block;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .split-layout.reverse-layout .service-content {
        order: 1;
    }

    .split-layout.reverse-layout .service-media {
        order: 2;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-specialties ul {
        column-count: 1;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .massive-call {
        width: 100%;
    }
    
    .section-inline-img {
        height: auto !important;
        aspect-ratio: 16/9;
    }
}

/* Service Grid Buttons */
.service-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
}

.service-btn:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mission Link Buttons */
.mission-link-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: transparent;
    transition: var(--transition);
}

.mission-link-btn:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white) !important;
}

/* How It Works Section */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.how-it-works-grid::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(223, 156, 92, 0.3);
}

.step-title {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.step-desc {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
    .how-it-works-grid::before {
        display: none;
    }
}

/* Static FAQ Cards */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-static-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 6px solid var(--secondary-color);
    padding: 2rem;
    text-align: left;
}

.faq-static-question {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: bold;
    line-height: 1.4;
}

.faq-static-answer p, .faq-static-answer ul {
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

.faq-static-answer ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

/* New FAQ Layout Classes */
.faq-row {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.faq-media {
    flex: 1;
}

.faq-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .faq-row {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .reverse-mobile {
        flex-direction: column-reverse !important;
    }

    .faq-media, .faq-content {
        width: 100%;
        flex: none;
    }
    
    .faq-media {
        order: -1; /* Always put media on top on mobile if desired, or let reverse-mobile handle it */
    }
}

/* Global Image Responsiveness & Fixes */
img {
    max-width: 100%;
    height: auto;
}

/* Preserve carousel image dimensions */
.carousel-track img {
    height: 250px !important;
    max-width: none !important;
}

/* Fix for mobile background scrolling issue (iOS fixed background zoom bug) */
@media (max-width: 1024px) {
    section, div, header, footer {
        background-attachment: scroll !important;
    }
}

/* Advanced Mobile Responsiveness Overrides */
@media (max-width: 900px) {
    .split-layout > div {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .split-layout > div.contact-info,
    .contact-info {
        padding: 2rem 4.5rem 2rem 2rem !important;
    }
}

@media (max-width: 768px) {
    .hero, .agitation-solution, .service-block, .why-us, .about-us, .immediate-trust, .financing-banner {
        padding: 3rem 0 !important;
    }
    .hero h1 {
        font-size: 2.5rem !important;
    }
    h2 {
        font-size: 2rem !important;
    }
    .hero-actions {
        flex-direction: column;
    }
    .solution-card, .test-card, .team-card, .faq-static-card {
        padding: 2rem 1.5rem !important;
    }
    .carousel-track img {
        height: 180px !important;
        margin: 0 0.5rem !important;
    }
    .header-container {
        padding: 0 1rem;
    }
    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .hero-expansion-text {
        padding-right: 0 !important;
    }
    .hero-specialties-box {
        padding: 1.5rem 4.5rem 1.5rem 1.5rem !important;
    }
    .split-layout > div.hero-specialties-box {
        padding: 1.5rem 4.5rem 1.5rem 1.5rem !important;
    }
    .split-layout > div.solution-box,
    .split-layout > div.why-us-box,
    .split-layout > div.agitation-box,
    .solution-box,
    .solution-card,
    .why-us-box,
    .agitation-box {
        padding: 2rem 4.5rem 2rem 2rem !important;
    }
    .trust-factors-grid, .team-grid {
        grid-template-columns: 1fr !important;
    }
}


@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem 4.5rem 1.5rem 1.5rem !important;
    }
}


/* Sticky Side Navigation */
.sticky-nav {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}
.sticky-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}
.sticky-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}
.sticky-nav a::after {
    content: attr(data-title);
    position: absolute;
    right: 60px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    pointer-events: none;
}
.sticky-nav a:hover::after {
    opacity: 1;
    visibility: visible;
    right: 70px;
}
@media (max-width: 768px) {
    .sticky-nav {
        right: 10px;
        gap: 10px;
    }
    .sticky-nav a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .sticky-nav a::after {
        display: none; /* Hide tooltips on mobile since there is no hover */
    }
}


.logo-b {
    height: 1.2em;
    margin-right: 2px;
    transform: translateY(2px); /* Nudge down slightly to visually match bottom baseline of rounded font */
}


/* Floating Side Menu */
.floating-side-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-side-menu a {
    background-color: var(--white);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.floating-side-menu a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-side-menu {
        right: 10px;
        gap: 10px;
    }
    .floating-side-menu a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Floating Side Menu Tooltips */
.floating-side-menu a {
    position: relative;
}

.floating-side-menu a::before {
    content: attr(data-title);
    position: absolute;
    right: 130%; 
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    font-weight: 600;
    visibility: hidden;
}

.floating-side-menu a:hover::before {
    opacity: 1;
    visibility: visible;
    right: 115%; /* Slide in effect */
}

@media (max-width: 768px) {
    .floating-side-menu a::before {
        display: none; /* Hide tooltips on mobile since there is no hover */
    }
}

