/* ============================================
   Copistería Low Cost - Estilos
   Paleta: Amarillo (#FCEC12), Negro (#1A1A18), Blanco
   Basado en diseño Floristeria, adaptado a copistería
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --primary: #1A1A18;
    --primary-light: #333331;
    --primary-dark: #0D0D0C;
    --accent: #FCEC12;
    --accent-light: #FDF4A0;
    --accent-dark: #D4C510;
    --accent-rgb: 252, 236, 18;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --success: #4CAF50;
    --error: #F44336;
    --warning: #FF9800;
    --info: #2196F3;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-accent: 0 4px 20px rgba(var(--accent-rgb), 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Header */
    --header-height: 96px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---------- Header ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(26, 26, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 2px solid var(--accent);
}

header.scrolled {
    background: rgba(26, 26, 24, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    filter: brightness(1.1);
    flex-shrink: 0;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(252, 236, 18, 0.08);
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    margin-left: var(--space-sm);
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.nav-link i {
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.4rem;
    cursor: pointer;
    padding: var(--space-sm);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1562654501-a0ccc0fc3fb1?w=1920&q=85')
        center center / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
    z-index: -2;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.18); }
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 24, 0.65) 0%,
        rgba(26, 26, 24, 0.40) 40%,
        rgba(26, 26, 24, 0.70) 100%
    );
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: var(--space-3xl) var(--space-lg);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(252, 236, 18, 0.15);
    border: 1px solid rgba(252, 236, 18, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(var(--accent-rgb), 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-400);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* Trust Items */
.hero-trust {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.scroll-indicator a:hover {
    opacity: 1;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ---------- Section Styles ---------- */
.section {
    padding: var(--space-4xl) 0;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(var(--accent-rgb), 0.12);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}

.section-dark .section-label {
    background: rgba(var(--accent-rgb), 0.2);
    color: var(--accent);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: var(--gray-400);
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

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

.service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img .service-icon-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 5;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon-overlay {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.1);
}

.service-card-body {
    padding: var(--space-lg) var(--space-lg) var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
    margin-bottom: var(--space-md);
}

.service-card-body .btn {
    align-self: flex-start;
}

/* ---------- Featured Services (Icon style) ---------- */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.featured-card {
    background: var(--white);
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.featured-card .icon-circle {
    width: 72px;
    height: 72px;
    background: rgba(var(--accent-rgb), 0.12);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.6rem;
    color: var(--accent-dark);
    transition: all var(--transition-base);
}

.featured-card:hover .icon-circle {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.featured-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.featured-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ---------- Stats / Numbers ---------- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-xl);
    text-align: center;
    padding: var(--space-2xl) 0;
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---------- Reviews ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.review-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card .quote-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: var(--space-md);
    font-family: Georgia, serif;
}

.review-stars {
    color: var(--accent);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-author-info .name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.review-author-info .service {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ---------- Features / Why Us ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature-item {
    text-align: center;
    padding: var(--space-xl);
}

.feature-item .feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(var(--accent-rgb), 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.4rem;
    color: var(--accent);
}

.section-dark .feature-item .feature-icon {
    background: rgba(var(--accent-rgb), 0.2);
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.section-dark .feature-item p {
    color: var(--gray-400);
}

/* ---------- Why Us Premium Grid ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.why-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

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

.why-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(var(--accent-rgb), 0.12);
    font-family: var(--font-display);
    line-height: 1;
}

.why-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    transition: transform 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.why-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.7;
    position: relative;
    padding: var(--space-xl) var(--space-2xl);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.02));
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--accent);
}

.why-quote blockquote i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: var(--space-sm);
    vertical-align: top;
}

/* ---------- About Section / Timeline ---------- */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

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

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent-dark), var(--gray-300));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 var(--space-2xl) var(--space-2xl);
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: var(--space-2xl);
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--space-2xl);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 4px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--white), 0 4px 20px rgba(var(--accent-rgb), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px var(--white), 0 6px 30px rgba(var(--accent-rgb), 0.5);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -24px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -24px;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    text-align: left;
}

.timeline-content strong {
    color: var(--primary);
}

/* ---------- Values Section Premium ---------- */
.values-section {
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.value-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.value-card:hover .value-card-glow {
    opacity: 1;
}

.value-card-inner {
    position: relative;
    padding: var(--space-xl);
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.value-card:hover .value-card-inner {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--accent-rgb), 0.3);
    transform: translateY(-6px);
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.4rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.value-card:hover .value-card-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
    font-weight: 700;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.value-card-accent .value-card-inner {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.04));
    border-color: rgba(var(--accent-rgb), 0.2);
}

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

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(var(--accent-rgb), 0.15); }
}

.reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--delay, 0s);
}

.reveal.reveal-up {
    transform: translateY(40px);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-scale {
    transform: scale(0.92);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--primary);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Page Header (subpages) ---------- */
.page-header {
    background: var(--primary);
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%);
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    position: relative;
}

.page-header .breadcrumb {
    color: var(--gray-400);
    font-size: 0.9rem;
    position: relative;
}

.page-header .breadcrumb a {
    color: var(--accent);
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* ---------- Service Detail ---------- */
.service-detail {
    padding: var(--space-3xl) 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-info h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.service-detail-info .description {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.detail-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-700);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li i {
    color: var(--accent-dark);
    margin-top: 3px;
    font-size: 0.9rem;
}

/* ---------- Forms ---------- */
.form-section {
    padding: var(--space-3xl) 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-group label .required {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--gray-800);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.form-control::placeholder {
    color: var(--gray-400);
}

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

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23757575' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-info {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
}

/* ---------- Contact Info Cards ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.contact-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.contact-card .contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.3rem;
}

.contact-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-card a {
    color: var(--accent-dark);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ---------- Map ---------- */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-3xl);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Toast Notifications ---------- */
.toast-container {
    position: fixed;
    top: calc(var(--header-height) + var(--space-md));
    right: var(--space-lg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.4s ease;
    min-width: 300px;
    border-left: 4px solid var(--gray-400);
}

.toast-success { border-left-color: var(--success); }
.toast-error { border-left-color: var(--error); }
.toast-info { border-left-color: var(--info); }

.toast-icon { font-size: 1.2rem; }
.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--error); }
.toast-info .toast-icon { color: var(--info); }

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0 4px;
}

/* ---------- Footer ---------- */
footer {
    background: var(--primary);
    color: var(--gray-300);
    position: relative;
}

.footer-wave {
    position: relative;
    top: 2px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--primary);
}

.footer-main {
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    height: 36px;
    width: auto;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

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

.footer-links li {
    padding: var(--space-xs) 0;
    font-size: 0.85rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-links li i {
    color: var(--accent);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.footer-links a {
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-bottom-row p {
    margin: 0;
}

.footer-dev {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer-dev a {
    color: var(--accent);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.footer-dev a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.footer-legal {
    margin-top: var(--space-sm);
}

.footer-legal a {
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

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

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 14px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    background: #20bd5a;
}

/* ---------- Error Pages ---------- */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
}

.error-code {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.7;
}

.error-page h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.error-page p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-xl); }
.mt-4 { margin-top: var(--space-2xl); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-xl); }
.mb-4 { margin-bottom: var(--space-2xl); }

/* ---------- Legal Pages ---------- */
.legal-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(var(--accent-rgb), 0.1);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: var(--space-2xl);
}

.legal-block {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-200);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.legal-block h2 i {
    font-size: 1rem;
}

.legal-block p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
}

.legal-block ul li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.legal-block a {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(var(--accent-rgb), 0.3);
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.legal-block a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

.legal-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--accent);
    margin: var(--space-lg) 0;
}

.legal-info-card ul {
    margin: 0;
}

.legal-info-card ul li {
    padding: var(--space-xs) 0;
}

.legal-info-card ul li::before {
    display: none;
}

.legal-info-card ul li i {
    margin-right: var(--space-sm);
}

.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.legal-right {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.legal-right:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.legal-right i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.legal-right strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--primary);
    font-size: 0.95rem;
}

.legal-right p {
    font-size: 0.82rem !important;
    color: var(--gray-600) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Cookie Tables */
.cookie-table {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.cookie-type {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid var(--gray-200);
}

.cookie-type-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.cookie-type-header h3 {
    font-size: 1.05rem;
    margin: 0;
}

.cookie-type-header i {
    font-size: 1.1rem;
}

.cookie-type > p {
    margin-bottom: var(--space-lg);
}

.cookie-details {
    overflow-x: auto;
}

.cookie-details table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cookie-details th {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-details td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.cookie-details tr:last-child td {
    border-bottom: none;
}

.cookie-details a {
    color: var(--accent-dark);
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--gray-300);
    padding: var(--space-lg) var(--space-xl);
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    color: var(--gray-400);
}

.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-btns {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
    
    .cookie-banner-btns {
        width: 100%;
        justify-content: center;
    }
    
    .legal-rights-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-img img {
        height: 300px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 24px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 72px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 0;
        right: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(26, 26, 24, 0.98);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-sm);
        border-top: 1px solid rgba(252, 236, 18, 0.2);
        animation: fadeInUp 0.3s ease;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-md);
        border-radius: var(--radius-sm);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        padding: var(--space-2xl) var(--space-md);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .values-showcase {
        grid-template-columns: 1fr;
    }

    .why-quote blockquote {
        font-size: 1.1rem;
        padding: var(--space-lg);
    }

    .toast-container {
        left: var(--space-md);
        right: var(--space-md);
    }

    .toast {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .logo-img {
        height: 56px;
        width: 56px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .highlight::after {
        height: 4px;
        bottom: 3px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .error-code {
        font-size: 5rem;
    }

    .form-container {
        padding: var(--space-lg);
    }

    .page-header {
        padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    }
}
