/*
====================================================================
Table of Contents
====================================================================
1.  Setup & Variables
2.  Global Styles & Resets
3.  Utility Classes
4.  Buttons & Forms
5.  Header & Navigation
6.  Footer
7.  Animations & Keyframes
8.  Page-Specific Styles
    8.1. Index Page: Hero Section
    8.2. Index Page: Services Section
    8.3. Index Page: Process Section
    8.4. Index Page: Calculator Section
    8.5. Index Page: Industry Section
    8.6. Index Page: Report Section
    8.7. Index Page: Testimonials Section
    8.8. Index Page: CTA Section
    8.9. Contact Page
    8.10. Legal Pages
9.  Responsiveness (Media Queries)
====================================================================
*/


/* =================================================================
   1. Setup & Variables
   ================================================================= */

:root {
    --primary-color: #e65100;
    /* Deep Orange */
    --secondary-color: #ff8f00;
    /* Amber Accent */
    --accent-color: #ffb74d;
    /* Light Orange Highlight */
    --dark-bg: #1b1b1b;
    /* Charcoal Black for Header/Footer */
    --light-bg: #fff8f0;
    /* Soft Warm White for Sections */
    --text-light: #ffffff;
    --text-dark: #2b2b2b;
    --text-muted: #7a7a7a;
    --border-color: #f0d8c0;

    --font-family: 'Inter', sans-serif;
    --header-height: 80px;
    --border-radius: 10px;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s ease-in-out;
}



/* =================================================================
   2. Global Styles & Resets
   ================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition-speed);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =================================================================
   3. Utility Classes
   ================================================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--accent-color);
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Animation Initial State */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================
   4. Buttons & Forms
   ================================================================= */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(3, 169, 244, 0.2);
}

textarea {
    resize: vertical;
}

/* =================================================================
   5. Header & Navigation
   ================================================================= */

.site-header {
    background-color: var(--dark-bg);
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed);
}

.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(16, 24, 32, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo a {
    display: block;
}

.logo img {
    height: 40px;
    transition: var(--transition-speed);
}

.logo img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}


/* =================================================================
   6. Footer
   ================================================================= */

.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-muted);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #aab2bb;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-legal h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: #aab2bb;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    color: #aab2bb;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Icon Placeholders */
[class^="icon-"]:before {
    font-family: 'Poppins';
    /* Dummy family */
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
}

.icon-map:before {
    content: '📍';
}

.icon-phone:before {
    content: '📞';
}

.icon-email:before {
    content: '✉️';
}

/* =================================================================
   7. Animations & Keyframes
   ================================================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* =================================================================
   8. Page-Specific Styles
   ================================================================= */

/* 8.1. Index Page: Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 150px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-content h1 {
    color: var(--text-light);
    margin-bottom: 20px;
    animation-delay: 0.2s;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation-delay: 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation-delay: 0.6s;
}

.hero-stats {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    animation-delay: 0.8s;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.stat-item p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}


/* 8.2. Index Page: Services Section */
.services-section {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all var(--transition-speed);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: var(--transition-speed);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    transform: rotate(360deg);
}

.service-card h3 {
    margin-bottom: 15px;
}


/* 8.3. Index Page: Process Section */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-color);
    opacity: 0.2;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: -1;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
    text-align: left;
}

.process-icon {
    position: absolute;
    top: 20px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-speed);
}

.process-step:hover .process-icon {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

.process-step:nth-child(odd) .process-icon {
    right: -30px;
}

.process-step:nth-child(even) .process-icon {
    left: -30px;
}

.process-content {
    padding: 20px 30px;
    background-color: var(--light-bg);
    position: relative;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.process-step:nth-child(odd) .process-content {
    margin-right: 30px;
}

.process-step:nth-child(even) .process-content {
    margin-left: 30px;
}

.process-content h3 {
    margin-bottom: 10px;
}


/* 8.4. Index Page: Calculator Section */
.calculator-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: var(--secondary-color);
    padding: 50px;
    border-radius: var(--border-radius);
}

.calculator-info h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.calculator-info p,
.calculator-info li {
    color: rgba(255, 255, 255, 0.8);
}

.calculator-info ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.calculator-form {
    background-color: #fff;
    color: var(--text-dark);
    padding: 30px;
    border-radius: var(--border-radius);
}

.calculator-form h3 {
    margin-bottom: 20px;
}

.calculator-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.calculator-form .form-group input[type="checkbox"] {
    width: auto;
    margin-right: 15px;
    transform: scale(1.4);
    accent-color: var(--primary-color);
}

.calculator-form .form-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.calculator-result {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.calculator-result p {
    margin-bottom: 5px;
    color: var(--text-muted);
}

#estimateResult {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* 8.5. Index Page: Industry Section */
.industry-section {
    background-color: var(--light-bg);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.industry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.industry-item:hover img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transition: var(--transition-speed);
}

.industry-item:hover .industry-overlay {
    background: linear-gradient(to top, rgba(13, 71, 161, 0.9), transparent);
}

.industry-overlay h3 {
    color: #fff;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.industry-item:hover .industry-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

/* 8.6. Index Page: Report Section */
.report-mockup-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.report-mockup {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: #f7f7f7;
}

.report-header h4 {
    margin: 0;
}

.report-header .report-logo img {
    height: 30px;
    filter: grayscale(100%) contrast(0%) brightness(0.7);
}

.report-body {
    padding: 30px;
}

.report-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.kpi-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
}

.kpi-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.kpi-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 5px 0;
}

.kpi-change {
    font-weight: 600;
}

.kpi-change.positive {
    color: #4caf50;
}

.kpi-change.negative {
    color: #f44336;
}

/* 8.7. Index Page: Testimonials Section */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonial-slider-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--accent-color);
    transition: var(--transition-speed);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card p::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 8.8. Index Page: CTA Section */
.cta-section {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(21, 101, 192, 0.9)), url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-content .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-content .btn-primary:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* 8.9. Contact Page */
.page-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 10px auto 0;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-row .form-group {
    flex: 1;
}

/* 8.10. Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-content p {
    color: #555;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}


/* =================================================================
   9. Responsiveness (Media Queries)
   ================================================================= */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-slider-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .report-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.5rem;
    }

    .nav-open .hamburger {
        background-color: transparent;
    }

    .nav-open .hamburger::before {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-open .hamburger::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .header-actions .btn {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .process-step:nth-child(even),
    .process-step:nth-child(odd) {
        left: 0;
        text-align: left;
    }

    .process-step .process-icon {
        left: 0;
    }

    .process-step .process-content {
        margin-left: 30px;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about,
    .footer-links,
    .footer-legal,
    .footer-contact {
        text-align: center;
    }

    .footer-links h4::after,
    .footer-legal h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .report-kpis {
        grid-template-columns: 1fr;
    }

    .testimonial-slider-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
}