/*
================================================
TABLE OF CONTENTS
================================================
1.  GLOBAL STYLES & RETRO VARIABLES
2.  HELPER CLASSES & GRID OVERLAYS
3.  HEADER & NAVIGATION
4.  MOBILE NAVIGATION
5.  FOOTER
6.  BUTTONS & FORMS (RETRO STYLE)
7.  HERO SECTION (GLITCH & NEON)
8.  GENERAL SECTION STYLING
9.  SERVICES SECTION (NEON CARDS)
10. ABOUT SECTION
11. TESTIMONIALS SECTION (MARQUEE)
12. CTA SECTION
13. SUBPAGE STYLES
14. POPUP STYLES
15. ANIMATIONS & KEYFRAMES
16. RESPONSIVE DESIGN
================================================
*/

/* 1. GLOBAL STYLES & RETRO VARIABLES */
:root {
    --color-pink: #ff00ff;
    --color-blue: #00ffff;
    --color-purple: #9400d3;
    --color-background: #0d0221;
    --color-surface: #1a0a38;
    --color-text: #f0f0f0;
    --color-text-muted: #a0aec0;
    --color-border: #ff00ff80;

    --font-heading: 'Righteous', cursive;
    --font-body: 'Poppins', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --glow-shadow-pink: 0 0 5px var(--color-pink), 0 0 10px var(--color-pink), 0 0 20px var(--color-pink);
    --glow-shadow-blue: 0 0 5px var(--color-blue), 0 0 10px var(--color-blue), 0 0 20px var(--color-blue);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Scanlines Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0px, rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    text-shadow: 0 0 5px var(--color-blue);
}

h1 {
    font-size: 4.5rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--color-text);
    text-shadow: var(--glow-shadow-blue);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. HELPER CLASSES & GRID OVERLAYS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.hero-grid-overlay,
.cta-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, var(--color-pink) 1px, transparent 1px),
        linear-gradient(to bottom, var(--color-pink) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: pan-grid 30s linear infinite;
    z-index: 0;
}

@keyframes pan-grid {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}


/* 3. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(13, 2, 33, 0.8);
    border-bottom: 1px solid var(--color-border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--color-pink)) brightness(0) invert(1);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-pink);
    box-shadow: var(--glow-shadow-pink);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1100;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    box-shadow: 0 0 3px var(--color-blue);
}

.bar-top {
    top: 0;
}

.bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

.bar-bottom {
    bottom: 0;
}

.mobile-toggle[aria-expanded="true"] .bar-top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .bar-middle {
    opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .bar-bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/* 4. MOBILE NAVIGATION */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-surface);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open {
    transform: translateX(0);
    display: flex;
}

.mobile-nav nav ul {
    text-align: center;
}

.mobile-nav nav li {
    margin: 2rem 0;
}

.mobile-nav nav a {
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 600;
}

/* 5. FOOTER */
.footer {
    background-color: var(--color-surface);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--color-border);
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, var(--color-pink) 0%, transparent 70%);
    opacity: 0.2;
}

.footer-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
    background: radial-gradient(circle, var(--color-blue) 0%, transparent 70%);
    opacity: 0.2;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--color-pink)) brightness(0) invert(1);
}

.footer-about-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    background-color: var(--color-blue);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow-blue);
}

.footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--color-pink);
    text-shadow: 0 0 5px var(--color-pink);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--color-text-muted);
}

.footer-links ul li a:hover {
    color: var(--color-blue);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--color-pink);
    margin-top: 5px;
}

.contact-info a {
    color: var(--color-text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}


/* 6. BUTTONS & FORMS (RETRO STYLE) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-pink);
    color: var(--color-text);
    border: 2px solid var(--color-pink);
    box-shadow: var(--glow-shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 10px var(--color-pink), 0 0 30px var(--color-pink), 0 0 50px var(--color-pink);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

.btn-secondary:hover {
    background-color: var(--color-blue);
    color: var(--color-background);
    box-shadow: var(--glow-shadow-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--color-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-family: var(--font-body);
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.5);
}


/* 7. HERO SECTION (GLITCH & NEON) */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, var(--color-surface) 0%, var(--color-background) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    color: var(--color-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    border: 2px solid var(--color-blue);
    padding: 1rem;
    box-shadow: var(--glow-shadow-blue);
    background-color: rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper img {
    filter: hue-rotate(180deg) contrast(1.2);
    mix-blend-mode: lighten;
}

.glitch {
    position: relative;
    display: block;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, .75), -0.025em -0.05em 0 rgba(0, 255, 0, .75), 0.025em 0.05em 0 rgba(0, 0, 255, .75);
    animation: glitch 500ms infinite;
}

.glitch:nth-child(2) {
    animation-delay: 80ms;
}

.glitch span {
    position: absolute;
    top: 0;
    left: 0;
}

.glitch span:first-child {
    animation: glitch 650ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-0.025em, -0.0125em);
    opacity: 0.8;
}

.glitch span:last-child {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    transform: translate(0.0125em, 0.025em);
    opacity: 0.8;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, .75), -0.05em -0.025em 0 rgba(0, 255, 0, .75), -0.025em 0.05em 0 rgba(0, 0, 255, .75);
    }

    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, .75), -0.05em -0.025em 0 rgba(0, 255, 0, .75), -0.025em 0.05em 0 rgba(0, 0, 255, .75);
    }

    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, .75), 0.025em 0.025em 0 rgba(0, 255, 0, .75), -0.05em -0.05em 0 rgba(0, 0, 255, .75);
    }

    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, .75), 0.025em 0.025em 0 rgba(0, 255, 0, .75), -0.05em -0.05em 0 rgba(0, 0, 255, .75);
    }

    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, .75), 0.05em 0 0 rgba(0, 255, 0, .75), 0 -0.05em 0 rgba(0, 0, 255, .75);
    }

    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, .75), 0.05em 0 0 rgba(0, 255, 0, .75), 0 -0.05em 0 rgba(0, 0, 255, .75);
    }

    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, .75), -0.025em -0.025em 0 rgba(0, 255, 0, .75), -0.025em -0.05em 0 rgba(0, 0, 255, .75);
    }
}

/* 8. GENERAL SECTION STYLING */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* 9. SERVICES SECTION (NEON CARDS) */
.services-section {
    background-color: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: transparent;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.service-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-10px);
    box-shadow: var(--glow-shadow-blue);
}

.service-card-inner {
    padding: 2.5rem 2rem;
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform var(--transition-speed) ease;
    text-shadow: var(--glow-shadow-blue);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(15deg);
}

.service-title {
    margin-bottom: 1rem;
    color: var(--color-pink);
}

.service-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    font-weight: 600;
    color: var(--color-blue);
    display: inline-block;
    text-transform: uppercase;
}

.service-link i {
    transition: transform var(--transition-speed);
    display: inline-block;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 10. ABOUT SECTION */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--color-pink);
    box-shadow: var(--glow-shadow-pink);
}

.about-image-wrapper img {
    filter: saturate(0.8);
}

.about-experience-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-pink);
    color: var(--color-text);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--glow-shadow-pink);
}

.experience-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
}

.experience-text {
    font-family: var(--font-body);
    font-weight: 500;
}

.about-features {
    margin: 1.5rem 0 2.5rem;
}

.about-features li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.about-features i {
    color: var(--color-blue);
    margin-top: 5px;
}

/* 11. TESTIMONIALS SECTION (MARQUEE) */
.testimonials-section {
    overflow: hidden;
}

.testimonial-marquee {
    display: flex;
    width: max-content;
}

.testimonial-track {
    display: flex;
    animation: marquee 60s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    margin: 0 1rem;
    padding: 2rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.testimonial-card:hover {
    border-color: var(--color-blue);
    transform: scale(1.05);
    box-shadow: var(--glow-shadow-blue);
    z-index: 10;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-blue);
}

.author-name {
    font-size: 1.1rem;
    margin: 0;
    color: var(--color-text);
    text-shadow: none;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 12. CTA SECTION */
.cta-section {
    padding: 100px 0;
    background-color: var(--color-surface);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-pink);
    text-shadow: 0 0 10px var(--color-pink);
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

/* 13. SUBPAGE STYLES */
body.subpage {
    padding-top: var(--header-height);
}

.page-header {
    background-color: var(--color-surface);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--color-border);
}

.page-header h1 {
    color: var(--color-pink);
    text-shadow: var(--glow-shadow-pink);
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

.breadcrumbs span {
    color: var(--color-blue);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin: 2.5rem 0 1rem;
    color: var(--color-pink);
    text-shadow: 0 0 5px var(--color-pink);
}

/* 14. POPUP STYLES */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 2, 33, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--color-surface);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 450px;
    transform: scale(0.9);
    transition: transform var(--transition-speed) ease;
    border: 2px solid var(--color-pink);
    box-shadow: var(--glow-shadow-pink);
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-text-muted);
    line-height: 1;
}

.popup-content .fa-check-circle {
    font-size: 4rem;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-shadow-blue);
}

/* 15. ANIMATIONS & KEYFRAMES */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 16. RESPONSIVE DESIGN */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 3rem;
    }

    .hero-text {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .testimonial-card {
        width: 300px;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 70px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-card {
        width: 280px;
    }
}