/* ========================================
   SAXENA PROPERTY SERVICES - STYLES
   ======================================== */

/* CSS Variables */
:root {
    --primary: #3CB371;
    --primary-hover: #2E8B57;
    --dark: #2A2A2A;
    --dark-light: #4A4A4A;
    --gray: #6B6B6B;
    --gray-light: #888;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --orange: #F97316;
    --cyan: #06B6D4;
    --purple: #8B5CF6;
    --yellow: #FBBF24;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #1a1a1a;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Icons */
.icon-sm {
    width: 16px;
    height: 16px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--dark-light);
    padding: 10px 0;
}

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

.top-bar-text {
    font-size: 13px;
    color: #ccc;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.top-bar-phone svg {
    color: var(--primary);
}

.main-nav {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-light);
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    border-radius: 8px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.mobile-cta {
    width: 100%;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.6) 70%, rgba(255,255,255,0) 100%);
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(60, 179, 113, 0.1);
    border: 1px solid rgba(60, 179, 113, 0.3);
    color: var(--primary-hover);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.trust-badge svg {
    fill: var(--primary);
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-green {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    padding: 3px;
}

.benefit span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-light);
}

/* Quote Form */
.quote-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.form-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-hover));
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 8px;
}

.form-header h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(60, 179, 113, 0.1);
    background: var(--white);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 16px;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--dark);
    padding: 60px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.trust-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.3s;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.trust-item h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 4px;
}

.trust-subtitle {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trust-desc {
    color: #999;
    font-size: 14px;
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 44px;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   INDUSTRIES
   ======================================== */
.industries {
    padding: 100px 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.industry-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: var(--white);
}

.industry-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.industry-content p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.industry-card:hover .industry-content p {
    opacity: 1;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s;
}

.industry-card:hover .industry-link {
    gap: 16px;
}

.industry-link svg {
    width: 16px;
    height: 16px;
}

.industry-tall {
    grid-row: span 2;
}

.industry-wide {
    grid-column: span 2;
    grid-row: span 2;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.service-icon.orange { background: var(--orange); }
.service-icon.green { background: var(--primary); }
.service-icon.cyan { background: var(--cyan); }
.service-icon.purple { background: var(--purple); }

.service-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

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

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-container {
    position: relative;
}

.steps-line {
    display: none;
    position: absolute;
    top: 56px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), rgba(60, 179, 113, 0.5), var(--primary));
}

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

.step {
    text-align: center;
}

.step-circle {
    width: 112px;
    height: 112px;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: all 0.3s;
}

.step:hover .step-circle {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-circle svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--gray);
    max-width: 240px;
    margin: 0 auto;
}

/* ========================================
   STANDARDS
   ======================================== */
.standards {
    padding: 100px 0;
    background: var(--white);
}

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

.standard-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s;
}

.standard-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.standard-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.standard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.standard-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 50px;
}

.standard-content {
    padding: 24px;
    border-top: 3px solid var(--primary);
}

.standard-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.standard-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.contact-info h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-card-icon.green { background: var(--primary); }
.contact-card-icon.dark { background: var(--dark); }
.contact-card-icon.yellow { background: var(--yellow); }
.contact-card-icon.yellow svg { color: var(--dark); }

.contact-card-text strong {
    display: block;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card-text span {
    font-size: 14px;
    color: var(--gray);
}

.why-choose {
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.1), var(--white));
    border: 1px solid rgba(60, 179, 113, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.why-choose h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
}

.why-choose ul {
    list-style: none;
}

.why-choose li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--dark-light);
    margin-bottom: 12px;
}

.why-choose li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Contact Form */
.contact-form-container {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-hover));
}

.contact-form-container h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
    padding-top: 8px;
}

.contact-form-container > p {
    color: #999;
    font-size: 14px;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1a1a1a;
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.footer-links h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

.footer-bottom span {
    color: #555;
    font-size: 12px;
}

/* ========================================
   TOAST
   ======================================== */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--dark);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .industry-tall,
    .industry-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-line {
        display: none;
    }
    
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-text {
        display: none;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (min-width: 1025px) {
    .steps-line {
        display: block;
    }
}
