/*
=====================================================
    Theme: Digital Growth Architects
    Author: Asher and Wyatt Superior Home Inspections
    Version: 1.0
=====================================================

    TABLE OF CONTENTS
    ---------------------------------
    1.  Variables & Root Styles
    2.  Base & Reset Styles
    3.  Keyframes & Animations
    4.  Utility Classes
    5.  Header & Navigation
    6.  Hero Section
    7.  Trusted By Scroller
    8.  Services Section
    9.  Process Section
    10. ROI Calculator Section
    11. Philosophy Section
    12. Results Section (Stats)
    13. Testimonial Section
    14. Sample Report Section
    15. FAQ Section
    16. Final CTA Section
    17. Page Header (for subpages)
    18. Legal Content & Contact Page
    19. Footer
    20. Live Chat Widget
    21. Responsive Design
=====================================================
*/


/* 1. Variables & Root Styles
-------------------------------------------------- */
:root {
    --primary-color: #278EFF;
    /* Bright Blue */
    --secondary-color: #7ED957;
    /* Vibrant Green */
    --accent-color: #4B0082;
    /* Deep Indigo for gradients */
    --dark-bg: #0A1931;
    --dark-bg-secondary: #18335D;
    --light-bg: #F9FAFF;
    --text-light: #E0E7FF;
    --text-dark: #232E48;
    --text-muted: #9BA9C6;
    --border-color: rgba(224, 231, 255, 0.1);
    --shadow-color: rgba(39, 142, 255, 0.1);

    --font-primary: 'Satoshi', sans-serif;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    --transition-speed: 0.3s;
    --container-width: 1140px;
    --section-padding: 100px 0;
}


/* 2. Base & Reset Styles
-------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.7;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: var(--font-weight-black);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* 3. Keyframes & Animations
-------------------------------------------------- */
@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scroller {
    to {
        transform: translate(calc(-50% - 1.5rem));
    }
}

@keyframes shapeFloat1 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes shapeFloat2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, 15px) rotate(15deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.animate-on-load {
    opacity: 0;
    animation: slideInFromBottom 0.8s ease forwards;
}

.animate-on-load:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-on-load:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* 4. Utility Classes
-------------------------------------------------- */
.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.section-title {
    margin-bottom: 4rem;
}

.section-title.is-light h2,
.section-title.is-light p {
    color: #fff;
}

.section-title .subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.bg-dark-secondary {
    background-color: var(--dark-bg-secondary);
}

.bg-gradient-light {
    background: linear-gradient(180deg, var(--dark-bg), var(--dark-bg-secondary));
}

.bg-gradient-dark {
    background: linear-gradient(180deg, var(--dark-bg-secondary), var(--dark-bg));
}


.cta-button {
    display: inline-block;
    padding: 12px 28px;
    font-weight: var(--font-weight-bold);
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--dark-bg);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(126, 217, 87, 0.3);
    color: var(--dark-bg);
    background: #90ee69;
    /* Lighter green on hover */
}

.cta-button.outline-light {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.cta-button.outline-light:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}


/* 5. Header & Navigation
-------------------------------------------------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-speed) ease;
    background: transparent;
}

#main-header.scrolled {
    background: rgba(10, 25, 49, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link img {
    height: 80px;
    width: auto;
    transition: transform var(--transition-speed) ease;
    filter: brightness(0) invert(1);
}

#main-header.scrolled .logo-link img {
    height: 55px;
}

#main-nav {
    display: flex;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: var(--font-weight-bold);
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

#hamburger-btn {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
    z-index: 1001;
}

#hamburger-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all var(--transition-speed) ease-in-out;
}

.nav-open #hamburger-btn .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-open #hamburger-btn .bar:nth-child(2) {
    opacity: 0;
}

.nav-open #hamburger-btn .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 6. Hero Section
-------------------------------------------------- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
    overflow: hidden;
}

#hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

#hero h1 .highlight {
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 2rem 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--border-color);
}

/* Background shapes for hero */
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -50px;
    left: -100px;
    animation: shapeFloat1 15s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -100px;
    right: 5%;
    animation: shapeFloat2 12s infinite ease-in-out;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    bottom: 40%;
    left: 30%;
}


/* 7. Trusted By Scroller
-------------------------------------------------- */
#trusted-by {
    padding: 40px 0;
    background-color: var(--dark-bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.scroller {
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller-inner {
    display: flex;
    gap: 3rem;
    width: fit-content;
    animation: scroller 20s linear infinite;
}

.scroller-inner span {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-muted);
    white-space: nowrap;
}


/* 8. Services Section
-------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-bg-secondary);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 1.5rem;
}


/* 9. Process Section
-------------------------------------------------- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: flex-start;
}

.process-title-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 2px solid var(--border-color);
    padding-left: 3rem;
}

.step {
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    transition: background-color var(--transition-speed) ease;
}

.step:hover {
    background-color: var(--dark-bg-secondary);
}

.step::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 3px solid var(--dark-bg);
}

.step span {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    position: absolute;
    top: -1rem;
    left: 2rem;
    opacity: 0.05;
    z-index: -1;
}


/* 10. ROI Calculator Section
-------------------------------------------------- */
#calculator {
    text-align: center;
}

.calculator-card {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 3rem;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

#roi-calculator-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

#roi-calculator-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-bold);
}

#roi-calculator-form input {
    width: 100%;
    padding: 12px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
}

#calculator-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 8px;
    transition: all 0.5s ease;
    max-height: 0;
    overflow: hidden;
}

#calculator-results.results-visible {
    max-height: 200px;
}


/* 11. Philosophy Section
-------------------------------------------------- */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.philosophy-card .icon-wrapper {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}


/* 12. Results Section (Stats)
-------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item .stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: var(--font-weight-black);
    line-height: 1;
    display: inline-block;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item h3 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
}


/* 13. Testimonial Section
-------------------------------------------------- */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
}

.testimonial-card {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    padding: 3rem;
    background: var(--dark-bg-secondary);
    border-radius: 12px;
    text-align: center;
}

.testimonial-card .quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

.author h4 {
    margin: 0;
}

.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-nav button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}


/* 14. Sample Report Section
-------------------------------------------------- */
.report-preview .report-image {
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
}

.report-preview .report-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

.report-preview .cta-button i {
    margin-left: 0.5rem;
}


/* 15. FAQ Section
-------------------------------------------------- */
.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-light);
    text-align: left;
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    padding-right: 2rem;
    position: relative;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.faq-item.open .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    padding-top: 1rem;
    margin-bottom: 0;
    color: var(--text-muted);
}


/* 16. Final CTA Section
-------------------------------------------------- */
#final-cta {
    position: relative;
    color: #fff;
    padding: 120px 0;
    background-image: url('https://via.placeholder.com/1920x800/0A1931/E0E0E0?text=Background');
    /* Placeholder image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#final-cta .final-cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 49, 0.85);
    /* Dark overlay */
}

#final-cta .container {
    position: relative;
    z-index: 2;
}

#final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

#final-cta p {
    max-width: 600px;
    margin: 1.5rem auto 2.5rem;
}


/* 17. Page Header (for subpages)
-------------------------------------------------- */
.page-header {
    background: linear-gradient(180deg, var(--dark-bg-secondary), var(--dark-bg));
    padding-top: 180px;
    padding-bottom: 60px;
}

.page-header h1 {
    margin-bottom: 1rem;
}


/* 18. Legal Content & Contact Page
-------------------------------------------------- */
.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

#contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    padding: 2.5rem;
    background-color: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
    display: none;
}

input.error,
textarea.error {
    border-color: #ff6b6b;
}

.contact-info-wrapper h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item .icon-wrapper {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 0.2rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-muted);
}


/* 19. Footer
-------------------------------------------------- */
#main-footer {
    padding: 80px 0 0;
    background-color: var(--dark-bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 40px;
}

#footer-brand img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a,
.footer-col ul li {
    color: var(--text-muted);
}

.footer-col ul a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* 20. Live Chat Widget
-------------------------------------------------- */
#open-chat-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(39, 142, 255, 0.3);
    z-index: 1000;
}

#live-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    max-width: 90vw;
    height: 500px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 999;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-speed) ease;
}

#live-chat-widget:not(.live-chat-hidden) {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--dark-bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.chat-header #close-chat-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 18px;
    margin-bottom: 1rem;
    max-width: 80%;
}

.bot-message {
    background: var(--dark-bg-secondary);
    border-top-left-radius: 0;
    align-self: flex-start;
}

.user-message {
    background: var(--primary-color);
    border-top-right-radius: 0;
    margin-left: auto;
}

.chat-footer {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

#chat-input {
    flex-grow: 1;
    border: none;
    background: var(--dark-bg-secondary);
    padding: 10px;
    border-radius: 20px 0 0 20px;
    color: var(--text-light);
}

#chat-input:focus {
    outline: none;
}

#send-chat-btn {
    padding: 10px 15px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 0 20px 20px 0;
}


/* 21. Responsive Design
-------------------------------------------------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-title-sticky {
        position: static;
    }

    #contact-page .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .header-cta {
        display: none;
    }

    #hamburger-btn {
        display: block;
    }

    #main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-open #main-nav {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    #hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #hero p {
        margin: 2rem auto;
    }

    .hero-image {
        grid-row: 1;
    }

    .slider-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .slider-nav button {
        position: static;
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    #live-chat-widget {
        bottom: 80px;
        right: 15px;
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-card .quote {
        font-size: 1.1rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
}