/* ==========================================================================
   VIBRANT & DYNAMIC DESIGN - Captain Exhaust Systems
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Vibrant Color Palette */
    --primary-red: #E63946;
    --primary-dark: #1D3557;
    --accent-orange: #F77F00;
    --accent-yellow: #FCBF49;
    --bright-blue: #457B9D;
    --secondary-blue: #457B9D;
    --success-green: #06D6A0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E63946 0%, #F77F00 100%);
    --gradient-dark: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
    --gradient-warm: linear-gradient(135deg, #F77F00 0%, #FCBF49 100%);

    /* Neutrals */
    --text-dark: #1a1a1a;
    --text-gray: #6c757d;
    --text-light: #ffffff;
    --bg-light: #F8F9FA;
    --bg-white: #ffffff;
    --bg-dark: #1D3557;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Effects */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
    --shadow-color: 0 8px 32px rgba(230, 57, 70, 0.25);
    --container-width: 1200px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-orange);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: min(100% - 2rem, var(--container-width));
    margin-inline: auto;
}

.section-padding {
    padding: 5rem 0;
}

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

.text-white {
    color: white;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background: var(--gradient-dark);
}

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

/* Section Subtitle */
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ==========================================================================
   Buttons - Vibrant
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    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::after {
    width: 300px;
    height: 300px;
}

.btn-sm {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-red);
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

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

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 3px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header - Bold & Vibrant
   ========================================================================== */
.glass-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding: 1.25rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-red);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width var(--transition);
}

.nav-menu a:not(.btn):hover::after {
    width: 100%;
}

/* Toll-free button hover effect in nav */
.nav-menu .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-menu li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown li {
    display: block;
}

.nav-menu .dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-menu .dropdown a::after {
    display: none;
}

.nav-menu .dropdown a:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: white;
    padding-left: 2rem;
}

/* Nested Dropdown Styles for Location Menu */
.nav-menu .dropdown .dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.5rem;
}

.nav-menu .dropdown li.has-submenu:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown li {
    position: relative;
}

/* Arrow indicator for nested menus */
.nav-menu .dropdown li.has-submenu>a {
    position: relative;
    padding-right: 2.5rem;
}

.nav-menu .dropdown li.has-submenu>a::after {
    content: '›';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.nav-menu .dropdown li.has-submenu:hover>a::after {
    transform: translateY(-50%) translateX(3px);
}



.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 1.75rem;
    font-weight: bold;
}

/* ==========================================================================
   Hero - High Impact
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.95), rgba(69, 123, 157, 0.9)),
        url('images/7A622-Upblast-Exhaust-Fan-DMV-region.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4rem 0;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Feature Cards - Vibrant
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

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

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

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==========================================================================
   Split Content
   ========================================================================== */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.content-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
}

.content-block h3 {
    color: var(--accent-orange);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.rounded-shadow {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.rounded-shadow:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Service Areas - Vibrant
   ========================================================================== */
.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cities-grid span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.cities-grid span:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* ==========================================================================
   CTA / Contact Bar
   ========================================================================== */
.contact-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: var(--border-radius-lg);
    margin-top: 5rem;
    box-shadow: var(--shadow-color);
}

.contact-bar h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.contact-bar p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.instagram-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    font-weight: 600;
}

.instagram-link:hover {
    color: white;
}

/* ==========================================================================
   Brands
   ========================================================================== */
.brands-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.brand-tag {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 50px;
    transition: var(--transition);
}

.brand-tag:hover {
    background: var(--gradient-warm);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   Gallery Slider
   ========================================================================== */
.gallery-slider {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary-red);
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    cursor: pointer;
    flex: 0 0 100%;
    height: 550px;
    scroll-snap-align: start;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(230, 57, 70, 0.95), transparent);
    padding: 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Arrows - Vibrant */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 1.75rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-color);
}

.gallery-arrow-left {
    left: -70px;
}

.gallery-arrow-right {
    right: -70px;
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-dot:hover {
    background: rgba(230, 57, 70, 0.6);
    transform: scale(1.3);
}

.gallery-dot.active {
    background: var(--primary-red);
    width: 16px;
    height: 16px;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-arrow-left {
        left: 15px;
    }

    .gallery-arrow-right {
        right: 15px;
    }

    .gallery-arrow {
        padding: 1rem 1.25rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {

    /* Hide gallery arrows on mobile */
    .gallery-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        cursor: pointer;
        z-index: 1002;
        position: relative;
        transition: var(--transition);
    }

    .nav-toggle:hover {
        transform: scale(1.1);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 6rem 2rem;
        width: 80%;
        max-width: 400px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        border-left: 3px solid var(--primary-red);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Menu items spacing */
    .nav-menu li {
        margin-bottom: 1.5rem;
    }

    .nav-menu a:not(.btn) {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }

    /* Mobile Dropdown Styles */
    /* Mobile Dropdown Styles */
    .nav-menu .dropdown {
        display: none;
        /* Hidden by default on mobile */
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(240, 240, 240, 0.5);
        /* Subtle background for nested items */
        padding: 0;
        margin-top: 0;
        margin-left: 0;
        border-radius: 4px;
        width: 100%;
        /* Ensure full width */
    }

    /* Show dropdown when parent li has class 'dropdown-open' */
    .nav-menu li.dropdown-open>.dropdown {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu .dropdown li {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        /* Ensure full width */
    }

    .nav-menu .dropdown li:last-child {
        border-bottom: none;
    }

    .nav-menu .dropdown a {
        font-size: 1rem;
        padding: 0.75rem 1rem 0.75rem 1.5rem;
        /* Adjusted padding */
        color: var(--text-dark);
        display: block;
        white-space: normal;
        /* Allow wrapping */
        word-wrap: break-word;
        /* Break long words */
        line-height: 1.4;
    }

    .nav-menu .dropdown a:hover {
        background: transparent;
        color: var(--primary-red);
        padding-left: 2rem;
    }

    /* Mobile Nested Dropdown Styles */
    .nav-menu .dropdown .dropdown {
        position: static;
        left: auto;
        top: auto;
        margin-left: 0;
        background: rgba(230, 230, 230, 0.5);
        /* Slightly darker for 2nd level */
        width: 100%;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .dropdown .dropdown a {
        font-size: 0.95rem;
        padding-left: 1.5rem;
        /* Reduced indentation to prevent cutoff */
        padding-right: 0.5rem;
    }
}

/* Remove the underline effect on mobile for all links */
.nav-menu a:not(.btn)::after {
    display: none;
}

/* Arrow indicator for items with submenus */
.nav-menu li.has-submenu>a,
.nav-menu>li>a:not(:only-child) {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Restore the plus sign */
.nav-menu li.has-submenu>a::after,
.nav-menu>li>a:not(:only-child)::after {
    content: '+';
    display: block;
    /* Restored */
    position: static;
    /* Restored static position for mobile */
    width: auto;
    height: auto;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    margin-left: 10px;
    color: var(--primary-dark);
}

/* Rotate arrow when open */
.nav-menu li.dropdown-open>a::after,
.nav-menu li:hover>a::after {
    /* Also rotate on hover */
    transform: rotate(45deg);
    color: var(--primary-red);
}

/* Open on Hover (and keep support for click toggle) */
.nav-menu li:hover>.dropdown,
.nav-menu li.dropdown-open>.dropdown {
    display: block;
    animation: fadeIn 0.3s ease;
}



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

.btn {
    width: 100%;
    text-align: center;
}

.brand-logo span {
    font-size: 1.1rem;
}

.section-padding {
    padding: 3rem 0;
}
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
footer {
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

footer .container>div:first-child {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-family: var(--font-heading);
}

footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    font-family: var(--font-heading);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-orange);
}

footer .instagram-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 600;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

footer .copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }

    footer .container>div:first-child {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}