/* Home Renovators FL - Main Stylesheet */

/* ===== VARIABLES ===== */
:root {
    /* Florida-Inspired Professional Palette - Enhanced Sunshine Colors */
    --primary-color: #1a3a52;          /* Deep Ocean Blue - Professional & Trustworthy */
    --secondary-color: #ff6b35;        /* Sunset Orange - Florida Warmth */
    --accent-color: #00a896;           /* Turquoise - Florida Waters */
    --gold-accent: #f4c430;            /* Brighter Gold - Sunshine */
    --sunshine-yellow: #ffd93d;        /* Florida Sunshine Yellow */
    --coral: #ff7e67;                  /* Coral Sunset */

    /* Neutrals */
    --text-dark: #2d2d2d;
    --text-light: #6e7884;
    --bg-light: #fafbfc;
    --bg-white: #ffffff;
    --bg-warm: #fff8f3;
    --bg-sunshine: #fffdf7;            /* Warm sunshine tint */
    --border-color: #e8ecef;

    /* Feedback Colors */
    --success-color: #10b981;
    --error-color: #ef4444;

    /* Shadows with color */
    --shadow-sm: 0 2px 8px rgba(26, 58, 82, 0.08);
    --shadow: 0 4px 16px rgba(26, 58, 82, 0.12);
    --shadow-lg: 0 12px 32px rgba(26, 58, 82, 0.15);
    --shadow-warm: 0 8px 24px rgba(255, 107, 53, 0.15);
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes sunRise {
    0% {
        box-shadow: 0 0 20px rgba(255, 211, 61, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 211, 61, 0.6);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 211, 61, 0.3);
    }
}

/* ===== SCROLL-TRIGGERED ANIMATIONS ===== */

/* Additional animation keyframes for scroll effects */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(800px) rotateY(-60deg);
    }
    to {
        opacity: 1;
        transform: perspective(800px) rotateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Sections start hidden and animate on scroll */
section.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Different animation styles for variety */
section.animate-on-scroll:nth-child(even) {
    transform: translateX(-50px);
}

section.animate-on-scroll:nth-child(odd) {
    transform: translateX(50px);
}

section.animate-on-scroll:nth-child(3n) {
    transform: scale(0.85);
}

/* When section comes into view, animate it */
section.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Animate children with stagger effect */
.animate-child {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-child.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Special animations for specific sections */
.hero {
    animation: fadeIn 1.2s ease-out;
}

.services-preview .service-card {
    transition-delay: calc(var(--delay, 0) * 100ms);
}

.why-choose .feature:nth-child(1) { --delay: 0; }
.why-choose .feature:nth-child(2) { --delay: 1; }
.why-choose .feature:nth-child(3) { --delay: 2; }
.why-choose .feature:nth-child(4) { --delay: 3; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-lg);
}

.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    text-decoration: none;
}

.phone-link {
    background: var(--secondary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
    transition: all 0.3s;
}

.phone-link:hover {
    background: #e55a28;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d2438 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 211, 61, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 150, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(255, 126, 103, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.92;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--coral) 100%);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a28 0%, #ff6b5a 100%);
    border-color: #e55a28;
    text-decoration: none;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
    animation: sunRise 2s ease-in-out infinite;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ===== SERVICES ===== */
.services-preview,
.why-choose {
    background: var(--bg-light);
}

.services-preview h2,
.why-choose h2,
.featured-projects h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 400;
}

.services-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card,
.feature {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before,
.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 211, 61, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover,
.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-warm);
    border-left-color: var(--sunshine-yellow);
}

.service-card:hover::before,
.feature:hover::before {
    left: 100%;
}

.service-icon,
.feature-icon {
    display: none; /* Remove emoji icons */
}

.service-card h3,
.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p,
.feature p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.text-center {
    text-align: center;
}

/* ===== SERVICE AREAS ===== */
.service-areas {
    text-align: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.areas-list span {
    background: var(--bg-warm);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
}

.areas-list span:nth-child(even) {
    animation-delay: 0.1s;
}

.areas-list span:nth-child(odd) {
    animation-delay: 0.2s;
}

.areas-list span:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--sunshine-yellow) 100%);
    color: white;
    border-color: var(--sunshine-yellow);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 211, 61, 0.4);
}

/* ===== PROJECTS/GALLERY ===== */
.projects-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card,
.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover,
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.before-after,
.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-color);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrapper .label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-card h3,
.gallery-item h3 {
    padding: 15px 20px 5px;
    font-size: 1.25rem;
}

.project-card p,
.gallery-item p {
    padding: 0 20px 15px;
    color: var(--text-light);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.calendar-container {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.calendar-container iframe {
    display: block;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--sunshine-yellow) 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 211, 61, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 126, 103, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ===== PAGES ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Services Page */
.service-detail {
    padding: 60px 0;
}

.service-detail.alt {
    background: var(--bg-light);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail.alt .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-text li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.contact-method .small {
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
    display: block;
}

/* Appointment Scheduler */
.appointment-scheduler {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.appointment-scheduler h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.calendar-wrapper {
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.emergency-contact {
    text-align: center;
    padding: 60px 0;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.credentials {
    background: var(--bg-light);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.credential-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value {
    text-align: center;
}

.value h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-grid,
    .features-grid,
    .projects-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail.alt .service-content {
        grid-template-columns: 1fr;
    }

    .service-detail.alt .service-image {
        order: -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    h2 {
        font-size: 1.875rem !important;
    }
}
