/* ================================
   URBAN COLLEGE - Vanilla CSS Styles
   Converted from React + Tailwind
   ================================ */

/* CSS Variables (Design System) */
:root {
    /* Colors */
    --color-background: hsl(240, 5%, 98%);
    /* #F9F9FB */
    --color-foreground: hsl(0, 0%, 16%);
    /* #292929 */
    --color-card: hsl(0, 0%, 100%);
    /* #FFFFFF */
    --color-primary: hsl(345, 76%, 51%);
    /* #E12553 */
    --color-primary-foreground: hsl(0, 0%, 100%);
    --color-secondary: hsl(40, 6%, 83%);
    /* #D7D9D3 */
    --color-secondary-foreground: hsl(0, 0%, 16%);
    --color-accent: hsl(166, 58%, 40%);
    /* #27A38A */
    --color-accent-foreground: hsl(0, 0%, 100%);
    --color-muted-foreground: hsl(20, 3%, 56%);
    /* #938E8D */
    --color-warning: hsl(37, 100%, 60%);
    /* #FFB030 */

    /* Typography */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius: 0.75rem;
    --radius-sm: calc(var(--radius) - 4px);
    --radius-lg: var(--radius);

    /* Spacing */
    --container-padding: 1.25rem;
    /* 20px */
    --section-padding-y: 4rem;
    /* 64px */
}

@media (min-width: 768px) {
    :root {
        --container-padding: 2.5rem;
        /* 40px */
        --section-padding-y: 6rem;
        /* 96px */
    }
}

/* ================================
   CSS Reset & Base Styles
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 1.875rem;
    /* 30px */
    line-height: 1.3;
}

h2 {
    font-size: 1.5rem;
    /* 24px */
    line-height: 1.4;
    color: var(--color-muted-foreground);
}

h3 {
    font-size: 1.125rem;
    /* 18px */
    font-weight: 700;
}

p {
    font-weight: 300;
    line-height: 1.7;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.25rem;
        /* 36px */
    }

    h2 {
        font-size: 1.875rem;
        /* 30px */
    }

    h3 {
        font-size: 1.25rem;
        /* 20px */
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
        /* 48px */
    }

    h2 {
        font-size: 2.25rem;
        /* 36px */
    }
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ================================
   Layout Components
   ================================ */

.container-urban {
    max-width: 80rem;
    /* 1280px */
    width: 100%;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section-padding {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.main-content {
    padding-top: 4rem;
    /* Account for fixed header */
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 5rem;
    }
}

/* Background Utilities */
.bg-background {
    background-color: var(--color-background);
}

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

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

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

/* Text Utilities */
.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.text-background {
    color: var(--color-background);
}

.text-foreground {
    color: var(--color-foreground);
}

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

.text-background-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-background-60 {
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   Header
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 249, 251, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-secondary);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .header-inner {
        height: 5rem;
    }
}

.logo {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: rgba(41, 41, 41, 0.7);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-foreground);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color-foreground);
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-foreground);
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-open .hamburger {
    background: transparent;
}

.mobile-menu-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-secondary);
    padding: 1.5rem 0;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 0;
    color: rgba(41, 41, 41, 0.7);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link-mobile:hover {
    color: var(--color-foreground);
}

.btn-mobile {
    margin-top: 1rem;
    width: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ================================
   Buttons
   ================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(225, 37, 83, 0.1);
}

.btn-secondary:active {
    transform: scale(0.95);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ================================
   Card Component
   ================================ */

.card-urban {
    background-color: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-urban:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .card-urban {
        padding: 2rem;
    }
}

/* ================================
   Hero Section
   ================================ */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--color-background);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg::before {
    top: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background-color: var(--color-primary);
}

.hero-bg::after {
    bottom: 5rem;
    left: 5rem;
    width: 20rem;
    height: 20rem;
    background-color: var(--color-accent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    padding: 4rem 0;
    animation: fadeInUp 0.6s ease-out;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 6rem 0;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(225, 37, 83, 0.1);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-advantages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.advantage-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-foreground);
    margin-top: 0.125rem;
}

.advantage-item p {
    font-size: 1.125rem;
    color: rgba(41, 41, 41, 0.8);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-decoration {
    display: none;
}

@media (min-width: 1024px) {
    .hero-decoration {
        display: block;
        position: absolute;
        right: 2.5rem;
        top: 50%;
        transform: translateY(-50%);
        animation: scaleIn 0.8s ease-out 0.5s both;
    }
}

.decoration-box {
    width: 20rem;
    height: 20rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(225, 37, 83, 0.2), rgba(39, 163, 138, 0.2));
    backdrop-filter: blur(4px);
    border: 1px solid var(--color-secondary);
}

.grants-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    background-color: var(--color-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-foreground);
}

.grants-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.grants-label {
    font-size: 0.75rem;
    font-weight: 500;
}

/* ================================
   Section Header
   ================================ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-description {
    color: var(--color-muted-foreground);
    max-width: 42rem;
    margin: 1rem auto 0;
}

/* ================================
   Comparison Section
   ================================ */

.comparison-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.comparison-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background-color: var(--color-card);
}

@media (min-width: 768px) {
    .comparison-card {
        padding: 2rem;
    }
}

.reality-card {
    border: 2px solid var(--color-secondary);
}

.urban-card {
    border: 2px solid var(--color-accent);
    background-color: rgba(39, 163, 138, 0.05);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comparison-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-negative {
    background-color: rgba(147, 142, 141, 0.1);
    color: var(--color-muted-foreground);
}

.icon-positive {
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
}

.comparison-header h3 {
    color: var(--color-muted-foreground);
}

.urban-card .comparison-header h3 {
    color: var(--color-accent);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.list-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.icon-negative-small {
    background-color: rgba(147, 142, 141, 0.2);
    color: var(--color-muted-foreground);
}

.icon-positive-small {
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
}

.comparison-list span {
    color: rgba(41, 41, 41, 0.7);
}

.urban-card .comparison-list span {
    color: var(--color-foreground);
}

/* ================================
   Specialties Section
   ================================ */

.specialty-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    background-color: var(--color-card);
    color: var(--color-foreground);
    transition: all 0.2s;
}

.filter-btn:hover {
    background-color: var(--color-secondary);
}

.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.specialties-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.specialty-card {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.4s ease-out both;
}

.specialty-card.hidden {
    display: none;
}

.specialty-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.specialty-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background-color: rgba(225, 37, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.badge-duration {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.specialty-card h3 {
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.specialty-code {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 0.75rem;
}

.badge-salary {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-warning);
    color: var(--color-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.specialty-info {
    font-size: 0.875rem;
    color: rgba(41, 41, 41, 0.7);
    margin-bottom: 0.5rem;
}

.specialty-info strong {
    color: var(--color-foreground);
    font-weight: 600;
}

.specialty-practice {
    font-size: 0.875rem;
    color: rgba(41, 41, 41, 0.7);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ================================
   Format Section
   ================================ */

.format-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .format-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .format-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.format-card {
    text-align: center;
    padding: 1.5rem;
}

.format-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.format-card h3 {
    margin-bottom: 0.5rem;
}

.format-card p {
    font-size: 0.875rem;
}

/* ================================
   Grants Section
   ================================ */

.grants-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grants-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grants-highlight {
    margin-bottom: 2rem;
}

.grants-number-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: rgba(39, 163, 138, 0.1);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.grants-number-badge .number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
}

.grants-number-badge .label {
    text-align: left;
}

.grants-number-badge .label-main {
    font-weight: 700;
    color: var(--color-foreground);
}

.grants-number-badge .label-sub {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.grants-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.grants-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.grants-list span {
    color: rgba(41, 41, 41, 0.8);
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem !important;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.faq-question h3 {
    font-size: 1rem;
    color: var(--color-foreground);
}

.faq-answer {
    font-size: 0.875rem;
    color: rgba(41, 41, 41, 0.7);
    padding-left: 2.25rem;
}

/* ================================
   Student Life Section
   ================================ */

.student-life-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .student-life-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.student-life-card {
    text-align: center;
    border: 1px solid var(--color-secondary);
}

.student-life-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(225, 37, 83, 0.1), rgba(39, 163, 138, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.student-life-card h3 {
    margin-bottom: 0.75rem;
}

.student-life-card p {
    color: var(--color-muted-foreground);
}

/* ================================
   Target Audience Section
   ================================ */

.target-audience-content {
    max-width: 48rem;
    margin: 0 auto;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
}

.checklist-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.checklist-item span {
    color: var(--color-primary-foreground);
    font-size: 1.125rem;
    font-weight: 500;
}

/* ================================
   Steps Section
   ================================ */

.steps-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 1rem;
    }
}

.step-card {
    text-align: center;
    height: 100%;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background-color: rgba(225, 37, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.step-card h3 {
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.step-arrow {
    display: none;
    color: var(--color-muted-foreground);
}

@media (min-width: 768px) {
    .step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

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

/* ================================
   Footer
   ================================ */

.footer {
    background-color: var(--color-foreground);
    color: var(--color-background);
}

.footer-cta {
    padding: var(--section-padding-y) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-centered {
    max-width: 48rem;
    margin: 0 auto;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-section {
        gap: 2.5rem;
    }
}


.contact-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--color-background);
    font-weight: 700;
    font-size: 1.125rem;
    transition: color 0.2s;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-background);
    transition: all 0.2s;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* ================================
   Animations
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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