/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors - Royal Blue + Luxury Gold Theme */
    --royal-blue: #0B3C8A;
    --luxury-gold: #D4AF37;
    --deep-navy: #05284A;
    --ivory: #F8F7F5;
    --text-primary: #1F2937;
    --text-muted: #6B7280;
    --success: #16A34A;
    --error: #EF4444;
    --info: #0EA5E9;
    --white: #FFFFFF;
    
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    --font-size-base: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --font-size-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
    --font-size-2xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
    --font-size-3xl: clamp(2rem, 1.7rem + 1.2vw, 3rem);
    --font-size-4xl: clamp(2.5rem, 2rem + 1.5vw, 4rem);
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-10: 5rem;
    --space-12: 6rem;
    --space-16: 8rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --container-padding: var(--space-4);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--royal-blue);
    color: white;
    padding: var(--space-2) var(--space-3);
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: var(--z-tooltip);
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--space-4) 0;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin: 0 0 var(--space-4) 0;
}

a {
    color: var(--royal-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--luxury-gold);
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.bg-ivory {
    background-color: var(--ivory);
}

.text-gold {
    color: var(--luxury-gold);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--luxury-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover, .btn-primary:focus {
    background: #C19B26;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
}

.btn-secondary:hover, .btn-secondary:focus {
    background: var(--luxury-gold);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--container-padding);
}

.nav-brand h2 {
    margin: 0;
    font-size: var(--font-size-xl);
    color: var(--royal-blue);
}

.brand-tagline {
    font-size: var(--font-size-sm);
    color: var(--luxury-gold);
    font-weight: 500;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--royal-blue);
    position: relative;
    transition: background var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--royal-blue);
    transition: all var(--transition-base);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
}

.nav-menu a[aria-current="page"] {
    color: var(--luxury-gold);
}

.nav-cta {
    background: var(--royal-blue);
    color: white !important;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--deep-navy);
    transform: translateY(-1px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-4);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: var(--space-3) 0;
        border-bottom: 1px solid var(--ivory);
    }
    
    .nav-cta {
        margin-top: var(--space-3);
        text-align: center;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-navy) 100%);
    color: white;
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-6);
    opacity: 0.9;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-actions .btn {
    min-width: 200px;
}

.hero-actions .btn .icon {
    width: 20px;
    height: 20px;
}

/* Hero Animations */
.animate-words span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.6s ease forwards;
}

.animate-words span:nth-child(1) { animation-delay: 0.1s; }
.animate-words span:nth-child(2) { animation-delay: 0.2s; }
.animate-words span:nth-child(3) { animation-delay: 0.3s; }
.animate-words span:nth-child(4) { animation-delay: 0.4s; }

.animate-bounce {
    animation: heroButton 0.8s ease 0.6s both;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButton {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-navy) 100%);
    color: white;
    padding: clamp(2rem, 6vw, 4rem) 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: var(--space-3);
}

.page-hero p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin: 0;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: var(--space-8) 0;
    background: var(--white);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.trust-icon {
    width: 64px;
    height: 64px;
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--luxury-gold), #E6C547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    stroke-width: 2;
}

.trust-item h3 {
    margin: 0;
    font-size: var(--font-size-lg);
    color: var(--royal-blue);
}

.trust-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.section-header h2 {
    color: var(--royal-blue);
    margin-bottom: var(--space-3);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.service-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--luxury-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--royal-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--luxury-gold), #E6C547);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    stroke-width: 1.5;
}

.service-card h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-3);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.service-link {
    color: var(--luxury-gold);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: width var(--transition-base);
}

.service-link:hover::after {
    width: 100%;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
}

.feature-card {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-3);
    color: var(--luxury-gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.feature-card h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-lg);
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--font-size-sm);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--luxury-gold), #E6C547);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-2);
}

.process-step p {
    color: var(--text-muted);
    margin: 0;
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.testimonial-content {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stars {
    color: var(--luxury-gold);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
}

.testimonial-content p {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: var(--royal-blue);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: var(--luxury-gold);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    font-size: var(--font-size-xl);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #C19B26;
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition-base);
}

.slider-dot.active {
    background: var(--luxury-gold);
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-navy) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--space-6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.cta-note {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--deep-navy);
    color: white;
    padding: var(--space-8) 0 var(--space-4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.footer-section h3,
.footer-section h4 {
    color: var(--luxury-gold);
    margin-bottom: var(--space-3);
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: var(--space-3);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: var(--space-2);
}

.footer-section a {
    color: white;
    opacity: 0.9;
    transition: all var(--transition-base);
}

.footer-section a:hover {
    color: var(--luxury-gold);
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.contact-item .icon {
    width: 20px;
    height: 20px;
    color: var(--luxury-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.badge {
    background: var(--luxury-gold);
    color: var(--text-primary);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-align: center;
}

.footer-social {
    margin-top: var(--space-3);
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--luxury-gold);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: #C19B26;
    transform: scale(1.05);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.legal-links {
    display: flex;
    gap: var(--space-4);
}

.legal-links a {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* ===== STICKY WHATSAPP CTA ===== */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: var(--z-fixed);
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-base);
}

.whatsapp-sticky.visible {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.whatsapp-sticky a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

.reveal-item.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SERVICE PAGES ===== */
.service-details {
    max-width: 900px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-5);
    margin: var(--space-6) 0;
}

.problem-item {
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.problem-item h3 {
    color: var(--royal-blue);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
}

.problem-item ul {
    margin: 0;
    padding-left: var(--space-4);
    color: var(--text-muted);
}

.problem-item li {
    margin-bottom: var(--space-1);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
    margin: var(--space-6) 0;
}

.pricing-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.pricing-card.featured {
    border-color: var(--luxury-gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--luxury-gold);
    color: var(--text-primary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-2);
}

.price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: var(--space-4);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-4);
}

.pricing-card li {
    padding: var(--space-1) 0;
    border-bottom: 1px solid var(--ivory);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* ===== CHECKLIST ===== */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.checklist-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.check-content h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-base);
}

.check-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--font-size-sm);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: var(--space-5);
    margin-bottom: var(--space-4);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--luxury-gold);
}

.faq-item h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-lg);
}

.faq-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--luxury-gold);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-content h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-1);
    font-size: var(--font-size-base);
}

.contact-content p {
    margin-bottom: var(--space-1);
    font-weight: 600;
}

.contact-content span {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* ===== FORMS ===== */
.contact-form-section h2 {
    color: var(--royal-blue);
    margin-bottom: var(--space-3);
}

.contact-form {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--ivory);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: var(--font-size-base);
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    display: block;
    color: var(--error);
    font-size: var(--font-size-sm);
    margin-top: var(--space-1);
}

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--success);
    font-weight: 600;
    margin-top: var(--space-4);
    padding: var(--space-3);
    background: rgba(22, 163, 74, 0.1);
    border-radius: var(--border-radius);
}

.form-success svg {
    width: 20px;
    height: 20px;
}

/* ===== MAP SECTION ===== */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-6);
    align-items: center;
}

.map-placeholder {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-info {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.map-info h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-3);
}

.map-directions {
    margin-top: var(--space-4);
}

/* ===== BLOG PAGES ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content {
    padding: var(--space-5);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
}

.blog-category {
    background: var(--luxury-gold);
    color: var(--text-primary);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--border-radius);
    font-weight: 600;
}

.blog-card h2 {
    margin-bottom: var(--space-3);
    font-size: var(--font-size-xl);
}

.blog-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--royal-blue);
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.read-more {
    color: var(--luxury-gold);
    font-weight: 600;
    text-decoration: none;
}

/* ===== BLOG CATEGORIES ===== */
.blog-categories {
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    background: var(--white);
    border: 2px solid var(--ivory);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.category-item:hover {
    border-color: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-item h3 {
    margin: 0;
    color: var(--royal-blue);
    font-size: var(--font-size-base);
}

.category-item span {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* ===== NEWSLETTER ===== */
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-top: var(--space-5);
}

.form-group-inline {
    display: flex;
    gap: var(--space-3);
    max-width: 400px;
    margin: 0 auto var(--space-3);
}

.form-group-inline input {
    flex: 1;
    padding: var(--space-3);
    border: 2px solid var(--ivory);
    border-radius: var(--border-radius);
}

.newsletter-note {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ===== BLOG POST ===== */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-6) var(--container-padding);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--royal-blue);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-sm);
}

.post-category {
    background: var(--luxury-gold);
    color: var(--text-primary);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--border-radius);
    font-weight: 600;
}

.read-time {
    color: var(--text-muted);
}

.post-excerpt {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.post-image {
    margin: var(--space-8) 0;
}

.post-body {
    font-size: var(--font-size-base);
    line-height: 1.7;
}

.post-body h2 {
    color: var(--royal-blue);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.tip-box,
.warning-box {
    background: var(--ivory);
    padding: var(--space-4);
   border-radius: var(--border-radius);
    margin: var(--space-5) 0;
    border-left: 4px solid var(--luxury-gold);
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: var(--error);
}

.tip-box h3,
.warning-box h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-base);
}

.tip-box ul,
.warning-box ul {
    margin: 0;
    padding-left: var(--space-4);
}

.temp-guide {
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    border: 2px solid var(--luxury-gold);
    margin: var(--space-5) 0;
}

.post-cta {
    background: linear-gradient(135deg, var(--royal-blue), var(--deep-navy));
    color: white;
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: var(--space-8) 0;
}

.post-cta h3 {
    color: white;
    margin-bottom: var(--space-3);
}

.post-cta p {
    opacity: 0.9;
    margin-bottom: var(--space-5);
}

.post-footer {
    border-top: 2px solid var(--ivory);
    padding-top: var(--space-5);
    margin-top: var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.post-tags,
.post-share {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.post-tags span,
.post-share span {
    font-weight: 600;
    color: var(--text-primary);
}

.post-tags a,
.post-share a {
    background: var(--ivory);
    color: var(--royal-blue);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all var(--transition-base);
}

.post-tags a:hover,
.post-share a:hover {
    background: var(--luxury-gold);
    color: var(--text-primary);
}

.related-posts {
    margin-top: var(--space-8);
    padding-top: var(--space-5);
    border-top: 2px solid var(--ivory);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-5);
}

.related-item {
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.related-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.related-item h3 {
    margin-bottom: var(--space-2);
    font-size: var(--font-size-base);
}

.related-item a {
    color: var(--royal-blue);
    text-decoration: none;
}

.related-item a:hover {
    color: var(--luxury-gold);
}

.related-item p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ===== ABOUT PAGE ===== */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    align-items: start;
    margin-bottom: var(--space-8);
}

.story-text {
    font-size: var(--font-size-lg);
    line-height: 1.7;
}

.story-text h2 {
    color: var(--royal-blue);
    margin-bottom: var(--space-4);
}

.story-image {
    position: sticky;
    top: var(--space-8);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.mission-item {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mission-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    color: var(--luxury-gold);
}

.mission-icon svg {
    width: 100%;
    height: 100%;
}

.mission-item h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-3);
}

.team-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-6);
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-info h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-1);
}

.team-title {
    color: var(--luxury-gold);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.team-credentials {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--ivory);
}

.team-credentials h4 {
    color: var(--royal-blue);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-2);
}

.team-credentials ul {
    margin: 0;
    padding-left: var(--space-4);
    color: var(--text-muted);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-5);
}

.badge-item {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
}

.badge-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.badge-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-3);
    color: var(--luxury-gold);
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

.badge-item h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-lg);
}

.badge-item p {
    color: var(--text-muted);
    margin: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
}

.legal-section {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--ivory);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--royal-blue);
    margin-bottom: var(--space-3);
}

.legal-section ul {
    padding-left: var(--space-4);
}

.legal-section li {
    margin-bottom: var(--space-1);
}

/* ===== 404 ERROR PAGE ===== */
.error-page {
    text-align: center;
    padding: var(--space-16) 0;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.error-number {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 800;
    color: var(--luxury-gold);
    line-height: 1;
}

.error-icon svg {
    width: 100px;
    height: 100px;
}

.error-text h1 {
    color: var(--royal-blue);
    margin-bottom: var(--space-4);
}

.error-text p {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

.error-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.error-help {
    padding-top: var(--space-6);
    border-top: 1px solid var(--ivory);
}

.error-help p {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.help-contacts {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.help-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--white);
    border: 2px solid var(--luxury-gold);
    border-radius: var(--border-radius);
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.help-item:hover {
    background: var(--luxury-gold);
    color: var(--text-primary);
}

.help-item svg {
    width: 20px;
    height: 20px;
}

/* ===== SERVICES DETAILED PAGE ===== */
.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-6);
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.service-detail-header {
    background: linear-gradient(135deg, var(--royal-blue), var(--deep-navy));
    color: white;
    padding: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.service-detail-header .service-icon {
    background: var(--luxury-gold);
    margin: 0;
}

.service-detail-header h2 {
    color: white;
    margin: 0;
    font-size: var(--font-size-xl);
}

.service-detail-content {
    padding: var(--space-5);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) 0;
}

.service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.service-pricing {
    background: var(--ivory);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    margin: var(--space-4) 0;
    text-align: center;
}

.service-pricing h4 {
    color: var(--luxury-gold);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-1);
}

.service-pricing span {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.service-guarantee {
    text-align: center;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-5);
}

.guarantee-item {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-3);
    color: var(--success);
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.guarantee-item h3 {
    color: var(--royal-blue);
    margin-bottom: var(--space-2);
}

.guarantee-item p {
    color: var(--text-muted);
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-photo {
        margin: 0 auto;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-3);
    }
    
    .section-padding {
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn,
    .cta-actions .btn {
        min-width: 250px;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .error-visual {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .error-number {
        font-size: clamp(3rem, 12vw, 6rem);
    }
    
    .error-actions,
    .help-contacts {
        flex-direction: column;
        align-items: center;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-items {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-words span {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .animate-bounce {
        animation: none;
    }
    
    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .whatsapp-sticky,
    .nav-toggle,
    .slider-controls,
    .cta-section {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        padding: var(--space-4) 0;
    }
    
    .page-hero {
        background: white !important;
        color: black !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .btn {
        border: 2px solid black !important;
        background: white !important;
        color: black !important;
    }
}

/* ===== UTILITIES ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }