/**
 * ACT Solutions For All - Modern Homepage Styles
 *
 * Color Palette:
 * Primary Blue: #0072BC
 * Dark Gray: #333333
 * White: #FFFFFF
 * Light Gray: #F5F7FA
 *
 * @since 1.3.0
 */

/* ===========================
   GLOBAL & TYPOGRAPHY
   =========================== */

.actsolutions-homepage {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333333;
    background: #FFFFFF;
    overflow-x: hidden;
}

.container-80 {
    max-width: 1400px;
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    color: #0072BC;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(0, 114, 188, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
    margin: 0 0 20px;
}

.text-blue {
    color: #0072BC;
}

.section-description,
.section-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-center .section-intro {
    max-width: 700px;
    margin: 16px auto 0;
}

/* ===========================
   HERO SECTION
   =========================== */

.actsolutions-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 50px 0 80px;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://actsolutionsforall.com.au/wp-content/uploads/2025/12/IMG-20251208-WA0019.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 114, 188, 0.95) 0%, rgba(0, 90, 148, 0.90) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 40px 40px;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    text-align: left;
    color: #FFFFFF;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge svg {
    stroke: #FFFFFF;
}

.hero-title {
    font-size: 55px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-highlight {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 600px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero.btn-primary {
    background: #FFFFFF;
    color: #0072BC;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

.hero-features {
/*     display: flex; */
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
	margin-bottom: 10px;
}

.hero-feature-item svg {
    flex-shrink: 0;
	fill: white;
}

/* Hero Form Styles */
.hero-form-wrapper {
    position: relative;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #0072BC;
    margin: 0 0 8px;
}

.hero-form-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 30px;
}

/* Hero Quote Form Styles */
.hero-quote-form .form-group {
    margin-bottom: 20px;
}

.hero-quote-form input,
.hero-quote-form select,
.hero-quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.hero-quote-form input:focus,
.hero-quote-form select:focus,
.hero-quote-form textarea:focus {
    outline: none;
    border-color: #0072BC;
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.hero-quote-form input::placeholder,
.hero-quote-form textarea::placeholder {
    color: #9CA3AF;
}

.hero-quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #0072BC;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-form-submit:hover {
    background: #005A94;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 114, 188, 0.3);
}

.btn-form-submit svg {
    stroke: currentColor;
}

/* Contact Form 7 Overrides for Hero Form */
.hero-form-card .wpcf7-form p {
    margin-bottom: 20px;
}

.hero-form-card .wpcf7-form input[type="text"],
.hero-form-card .wpcf7-form input[type="email"],
.hero-form-card .wpcf7-form input[type="tel"],
.hero-form-card .wpcf7-form select,
.hero-form-card .wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.hero-form-card .wpcf7-form input:focus,
.hero-form-card .wpcf7-form select:focus,
.hero-form-card .wpcf7-form textarea:focus {
    outline: none;
    border-color: #0072BC;
    box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.hero-form-card .wpcf7-form textarea {
    min-height: 80px;
}

.hero-form-card .wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 16px 32px;
    background: #0072BC;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-form-card .wpcf7-form .wpcf7-submit:hover {
    background: #005A94;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 114, 188, 0.3);
}

/* ===========================
   STATS SECTION
   =========================== */

.actsolutions-stats {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 114, 188, 0.2);
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0072BC;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.actsolutions-about {
    padding: 120px 0;
    background: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 114, 188, 0.15);
    position: relative;
    height: 500px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 40px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 16px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333333;
    font-size: 15px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.about-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.point-icon {
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 6px;
}

.point-text p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.actsolutions-services {
    padding: 120px 0;
    background: #F5F7FA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 114, 188, 0.15);
    border-color: #0072BC;
}

.service-card.featured {
    border-color: #0072BC;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.service-card.emergency {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #0072BC;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.emergency {
    background: #dc3545;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e6f3ff 0%, #d1e9ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
}

.service-card:hover .service-icon-wrapper svg path,
.service-card:hover .service-icon-wrapper svg rect,
.service-card:hover .service-icon-wrapper svg circle {
    stroke: #FFFFFF;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 16px;
}

.service-brief {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-list li {
    font-size: 14px;
    color: #333333;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0072BC;
    font-weight: 700;
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0072BC;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===========================
   PROCESS SECTION
   =========================== */

.actsolutions-process {
    padding: 120px 0;
    background: #FFFFFF;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #0072BC 0%, #0072BC 33%, #0072BC 66%, #0072BC 100%);
    opacity: 0.2;
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 24px;
    background: #F5F7FA;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #e6f3ff;
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #0072BC;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 114, 188, 0.3);
    z-index: 1;
}

.step-icon {
    display: flex;
    justify-content: center;
    margin: 24px 0 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 12px;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* ===========================
   PROJECTS SECTION
   =========================== */

.actsolutions-projects {
    padding: 120px 0;
    background: #F5F7FA;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 114, 188, 0.2);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 114, 188, 0.9) 0%, rgba(0, 90, 148, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 24px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.project-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-title a:hover {
    color: #0072BC;
}

/* ===========================
   REVIEWS SECTION
   =========================== */

.actsolutions-reviews {
    padding: 120px 0;
    background: #FFFFFF;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background: #F5F7FA;
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid #0072BC;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 114, 188, 0.15);
    background: #FFFFFF;
}

.review-stars {
    margin-bottom: 20px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar span {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}

.author-location {
    font-size: 13px;
    color: #666666;
}

/* ===========================
   CTA SECTION
   =========================== */

.actsolutions-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
    position: relative;
    overflow: hidden;
}

.actsolutions-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 30px 30px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta.btn-white {
    background: #FFFFFF;
    color: #0072BC;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1200px) {
    .container-80 {
        width: 90%;
    }

    .hero-grid {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-form-card {
        padding: 32px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content-wrapper {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container-80 {
        width: 95%;
    }

    .actsolutions-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .projects-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .actsolutions-about,
    .actsolutions-services,
    .actsolutions-process,
    .actsolutions-projects,
    .actsolutions-reviews,
    .actsolutions-cta {
        padding: 80px 0;
    }

    .actsolutions-stats {
        margin-top: -40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-form-card {
        padding: 24px;
    }

    .hero-form-title {
        font-size: 24px;
    }

    .hero-form-subtitle {
        font-size: 14px;
    }

    .hero-quote-form input,
    .hero-quote-form select,
    .hero-quote-form textarea,
    .hero-form-card .wpcf7-form input,
    .hero-form-card .wpcf7-form select,
    .hero-form-card .wpcf7-form textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .btn-form-submit,
    .hero-form-card .wpcf7-form .wpcf7-submit {
        padding: 14px 28px;
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .service-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .service-name {
        font-size: 20px;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card,
.service-card,
.process-step,
.project-card,
.review-card {
    animation: fadeInUp 0.6s ease-out;
}
