/* ========================================
   SLOTH NEXUS - Main Stylesheet
   Slow & Steady. Nexus Ready.
   ======================================== */

/* CSS Variables - Bold & Unexpected Palette */
:root {
    /* Primary Colors */
    --coral: #FF6B5B;
    --coral-light: #FF8A7D;
    --coral-dark: #E85A4A;
    
    /* Secondary Colors */
    --teal: #2DD4BF;
    --teal-light: #5EEAD4;
    --teal-dark: #14B8A6;
    
    /* Neutrals */
    --charcoal: #1E293B;
    --charcoal-light: #334155;
    --slate: #64748B;
    --cream: #FEF7F0;
    --white: #FFFFFF;
    
    /* Accent */
    --brown: #8B5A2B;
    --brown-light: #A67C52;
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(30, 41, 59, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -1px rgba(30, 41, 59, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(30, 41, 59, 0.1), 0 4px 6px -2px rgba(30, 41, 59, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(30, 41, 59, 0.1), 0 10px 10px -5px rgba(30, 41, 59, 0.04);
    --shadow-glow: 0 0 40px rgba(255, 107, 91, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ========================================
   Container & Layout
   ======================================== */

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

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

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--coral);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--slate);
    margin-top: var(--space-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 247, 240, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--charcoal);
}

.nav-logo:hover {
    color: var(--coral);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal-light);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--coral);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 4px 14px rgba(255, 107, 91, 0.4);
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 6px 20px rgba(255, 107, 91, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

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

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

.btn-full {
    width: 100%;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

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

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--coral-light);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(30, 41, 59, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 41, 59, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideUp 1s var(--transition-slower) forwards;
    opacity: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 107, 91, 0.1);
    color: var(--coral);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    animation: slideUp 1s 0.2s var(--transition-slower) forwards;
    opacity: 0;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    animation: slideUp 1s var(--transition-slower) forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
    color: var(--charcoal);
}

.title-line.accent {
    animation-delay: 0.5s;
    color: var(--coral);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    max-width: 500px;
    margin-bottom: var(--space-xl);
    animation: slideUp 1s 0.7s var(--transition-slower) forwards;
    opacity: 0;
}

.hero-subtitle strong {
    color: var(--charcoal);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: slideUp 1s 0.9s var(--transition-slower) forwards;
    opacity: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 1s 0.5s var(--transition-slower) forwards;
    opacity: 0;
}

.sloth-mascot {
    width: 100%;
    max-width: 450px;
    animation: gentleBob 6s ease-in-out infinite;
}

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

.sloth-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(30, 41, 59, 0.15));
}

.floating-data {
    animation: floatData 4s ease-in-out infinite;
}

@keyframes floatData {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--slate);
    font-size: 0.875rem;
    animation: fadeIn 1s 1.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--slate);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--coral);
    border-radius: var(--radius-full);
    animation: scrollDown 1.5s ease-in-out infinite;
}

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

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .sloth-mascot {
        max-width: 300px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.about-content {
    order: 1;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: var(--space-lg);
}

.about-content p {
    color: var(--slate);
    margin-bottom: var(--space-md);
}

.about-content strong {
    color: var(--charcoal);
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(30, 41, 59, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 91, 0.1);
    border-radius: var(--radius-lg);
    color: var(--coral);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.about-visual {
    order: 2;
    display: flex;
    justify-content: center;
}

.visual-card {
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.05) 0%, rgba(45, 212, 191, 0.05) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(30, 41, 59, 0.05);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.about-illustration {
    width: 100%;
    max-width: 300px;
    animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-visual {
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   Services Section
   ======================================== */

.services {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    transition: var(--transition-base);
    border: 1px solid rgba(30, 41, 59, 0.05);
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
}

.service-card.featured .service-desc,
.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.coming-soon {
    opacity: 0.8;
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--teal);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-badge.soon {
    background: var(--charcoal);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-desc {
    color: var(--slate);
    margin-bottom: var(--space-md);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

.service-features li::before {
    content: '→';
    color: var(--coral);
    font-weight: bold;
}

.service-card.featured .service-features li::before {
    color: var(--white);
}

/* ========================================
   Philosophy Section
   ======================================== */

.philosophy {
    padding: var(--space-3xl) 0;
    background: var(--charcoal);
    color: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
}

.philosophy-illustration {
    width: 100%;
    max-width: 400px;
}

.philosophy-text .section-tag {
    color: var(--teal);
}

.philosophy-text .section-title {
    color: var(--white);
}

.philosophy-text .section-title .highlight {
    color: var(--coral);
}

.philosophy-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--coral-light);
    border-left: 3px solid var(--coral);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
}

.philosophy-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.philosophy-text strong {
    color: var(--white);
}

.philosophy-text em {
    color: var(--teal-light);
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.pillar {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.pillar-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.pillar h4 {
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--coral-light);
}

.pillar p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 968px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .philosophy-quote {
        border-left: none;
        border-top: 3px solid var(--coral);
        padding-left: 0;
        padding-top: var(--space-md);
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.contact-info {
    padding-right: var(--space-xl);
}

.contact-info p {
    color: var(--slate);
    margin-top: var(--space-md);
}

.contact-details {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 91, 0.1);
    border-radius: var(--radius-lg);
    color: var(--coral);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate);
}

.contact-text a,
.contact-text span {
    font-weight: 500;
    color: var(--charcoal);
}

.contact-text a:hover {
    color: var(--coral);
}

.contact-form-wrapper {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 2px solid rgba(30, 41, 59, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 91, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: center;
}

.form-note.success {
    background: rgba(45, 212, 191, 0.1);
    color: var(--teal-dark);
    border: 1px solid var(--teal);
}

.form-note.error {
    background: rgba(255, 107, 91, 0.1);
    color: var(--coral-dark);
    border: 1px solid var(--coral);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
}

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

.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--white);
}

.footer-logo:hover {
    color: var(--coral);
}

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

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credits {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ========================================
   Animations for Section Reveals
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ========================================
   Utility Classes
   ======================================== */

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

.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;
}

