/* Madrid SEO - Main Styles v2
 * Design inspired by thedistance.co.uk
 * Colors: Cream #F6F1E9, Yellow #FFD93D, Orange #FF9A00, Brown #4F200D
 */

:root {
    --cream: #F6F1E9;
    --yellow: #FFD93D;
    --yellow-light: #FFE566;
    --orange: #FF9A00;
    --orange-dark: #E68A00;
    --brown: #4F200D;
    --brown-light: #6B2E12;
    --white: #FFFFFF;
    --text-dark: #4F200D;
    --text-light: #7A5A4A;
    --text-muted: #9B8578;
    --border: #E5DED5;
    --shadow: rgba(79, 32, 13, 0.08);
    --shadow-lg: rgba(79, 32, 13, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--brown);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 154, 0, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 154, 0, 0.4);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--brown);
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--white);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--brown);
}

.btn-yellow:hover {
    background: var(--yellow-light);
    color: var(--brown);
    transform: translateY(-3px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 4px 30px var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--brown);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--orange);
}

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

.nav-links > li > a,
.nav-links > li > .dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--brown);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > .dropdown-link:hover {
    color: var(--orange);
    background: rgba(255, 154, 0, 0.1);
}

.nav-links > li > a.active,
.nav-links > li > .dropdown-link.active {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 154, 0, 0.3);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--brown);
    transition: var(--transition);
}

.dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px var(--shadow-lg);
    list-style: none;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--brown);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--yellow);
    color: var(--brown);
}

/* Language Switcher */
.lang-switcher {
    margin-left: 1rem;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    background: var(--brown);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--orange);
    color: var(--white) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--brown);
    position: relative;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brown);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before { top: -9px; }
.hamburger::after { bottom: -9px; }

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

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

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

/* Main Content */
main {
    padding-top: 90px;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--yellow);
    color: var(--brown);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--orange);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: var(--yellow);
    z-index: -1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image svg,
.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Logo Ticker */
.logo-ticker {
    padding: 3rem 0;
    background: var(--white);
    overflow: hidden;
}

.logo-ticker-title {
    text-align: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.logo-ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
}

.logo-ticker-item {
    flex-shrink: 0;
    padding: 0 3rem;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.logo-ticker-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow-lg);
    border-color: var(--orange);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.service-link:hover {
    gap: 1rem;
    color: var(--brown);
}

/* Yellow Section */
.section-yellow {
    background: var(--yellow);
    padding: 6rem 0;
}

.section-yellow h2,
.section-yellow h3 {
    color: var(--brown);
}

.section-yellow p {
    color: var(--brown);
    opacity: 0.8;
}

/* Brown Section */
.section-brown {
    background: var(--brown);
    padding: 6rem 0;
}

.section-brown h2,
.section-brown h3,
.section-brown p {
    color: var(--white);
}

.section-brown p {
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-list li svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 154, 0, 0.4);
}

.about-image-badge strong {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--brown);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -1rem;
    width: calc(100% - 100px);
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 100px;
    height: 100px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--brown);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.4);
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: var(--orange);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-stars {
    margin-top: 1rem;
    color: var(--orange);
    font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--orange);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.3;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
    background: var(--brown);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--brown);
    padding: 5rem 0 2rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-accent {
    color: var(--yellow);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--yellow);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

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

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 154, 0, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Page Hero */
.page-hero {
    padding: 5rem 0;
    background: var(--yellow);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--brown);
    opacity: 0.8;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
}

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

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

/* Section Spacing */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--white);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--orange); }
.text-secondary { color: var(--brown); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    animation: textReveal 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

/* FAQ Accordion */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--orange);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--orange);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--orange);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--text-light);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator::after {
    content: '';
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--orange), transparent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}
