/*
  Theme: Meta Heroes: The Algorithm Wars
  Colors:
    --primary-color (Algorithm Blue): #3D5AFE
    --secondary-color (Viral Pink): #FF4081
    --dark-color (Graphite): #0E0E0E
    --bg-color: #121212
    --text-color: #E0E0E0
    --light-gray: #BDBDBD
    --border-color: rgba(61, 90, 254, 0.2)
*/

/* 1. ROOT VARIABLES & RESET */
:root {
    --primary-color: #3D5AFE;
    --secondary-color: #FF4081;
    --dark-color: #0E0E0E;
    --bg-color: #121212;
    --text-color: #E0E0E0;
    --light-gray: #BDBDBD;
    --border-color: rgba(61, 90, 254, 0.2);
    --header-height: 80px;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Share Tech Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    color: #FFFFFF;
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--light-gray);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.highlight {
    color: var(--secondary-color);
}

/* 2. CUSTOM CURSOR */
.cursor,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
}

body:hover .cursor,
body:hover .cursor-dot {
    opacity: 1;
}

.cursor.hovered {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(61, 90, 254, 0.1);
    border-color: var(--secondary-color);
}

/* 3. PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo {
    text-align: center;
}

.preloader-logo img {
    width: 100px;
    filter: invert(1);
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-bar {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-top: 20px;
    border-radius: 3px;
    animation: loading 2s ease-out forwards;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* 4. HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 40px;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: rotate(10deg) scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-secondary);
    color: var(--text-color);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}


/* 5. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn i {
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(61, 90, 254, 0.5), 0 0 20px rgba(61, 90, 254, 0.3);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(61, 90, 254, 0.8), 0 0 30px rgba(61, 90, 254, 0.5);
}

.btn-primary::before {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* 6. HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, rgba(14, 14, 14, 0.8) 0%, var(--bg-color) 70%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    top: 10%;
    left: 10%;
    animation: move-blob 15s infinite alternate;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: var(--secondary-color);
    bottom: 15%;
    right: 15%;
    animation: move-blob 20s infinite alternate-reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background-color: #4e54c8;
    bottom: 40%;
    left: 30%;
    animation: move-blob 18s infinite alternate;
}

@keyframes move-blob {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, 100px) scale(1.2);
    }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* 7. GENERAL SECTION STYLING */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* 8. VILLAINS SECTION */
.villains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.villain-card {
    background-color: var(--dark-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.villain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--border-color);
}

.villain-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.villain-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* 9. SERVICES SECTION (HERO ARSENAL) */
.services-section {
    background-color: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    transform-style: preserve-3d;
    min-height: 350px;
    position: relative;
    border-radius: 15px;
}

.service-card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transform: translateZ(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-inner {
    transform: translateZ(50px);
    box-shadow: 0 0 20px rgba(61, 90, 254, 0.4), 0 0 40px rgba(255, 64, 129, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transform: translateZ(40px);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateZ(30px);
}

.service-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-cta {
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}


/* 10. PROCESS SECTION */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-1px);
}

.process-step {
    display: flex;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    padding-right: 50px;
    justify-content: flex-end;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dark-color);
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.process-step:nth-child(odd) .process-icon {
    right: -31px;
}

.process-step:nth-child(even) .process-icon {
    left: -29px;
}

.process-content {
    background-color: var(--dark-color);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-title span {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}


/* 11. TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--dark-color);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-content::before,
.testimonial-content::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.5;
}

.testimonial-content::before {
    content: '\f10d';
    top: -10px;
    left: 0;
}

.testimonial-content::after {
    content: '\f10e';
    bottom: -10px;
    right: 0;
}

.author-name {
    font-size: 1.1rem;
    color: #fff;
}

.author-title {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-color);
}

/* 12. CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, rgba(61, 90, 254, 0.1), rgba(255, 64, 129, 0.1)), url('path/to/circuit-bg.png');
    background-size: cover;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    margin-bottom: 2rem;
}


/* 13. FOOTER */
.footer {
    background-color: var(--dark-color);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column .logo img {
    height: 45px;
    filter: invert(1);
    margin-bottom: 1.5rem;
}

.footer-about-text {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-contact ul li a,
.footer-contact ul li span {
    color: var(--light-gray);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom ul {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom ul li a {
    color: var(--light-gray);
}

.footer-bottom ul li a:hover {
    color: #fff;
}


/* 14. PAGE-SPECIFIC STYLES: LEGAL & CONTACT */
.page-header-section {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.page-header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* LEGAL PAGES */
.legal-page .page-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--dark-color);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-page strong {
    color: var(--secondary-color);
    font-weight: 500;
}

/* CONTACT PAGE */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background-color: var(--dark-color);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--light-gray);
    margin: 0;
}

.contact-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(61, 90, 254, 0.5);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233D5AFE' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* CONTACT POPUP */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--dark-color);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(61, 90, 254, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--light-gray);
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.popup-close-btn {
    margin-top: 1.5rem;
}


/* 15. RESPONSIVENESS */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title,
    .page-title {
        font-size: 2.5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        padding-top: 100px;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-btn {
        display: none;
    }

    .process-timeline {
        max-width: 100%;
    }

    .timeline-line {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
        text-align: left;
    }

    .process-step:nth-child(odd) .process-icon,
    .process-step:nth-child(even) .process-icon {
        left: 0;
        right: auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .cursor,
    .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title,
    .page-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .villains-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact ul li {
        text-align: left;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}