/* ============================================
   DARK SALTY DESIGN SYSTEM
   Inspired by Night Salt Flats & Himalayan Salt
   ============================================ */

:root {
    /* Dark Salt Palette */
    --salt-black: #0A0E14;
    --salt-void: #050709;
    --salt-charcoal: #1A1F2E;
    --salt-slate: #2A3142;
    --salt-steel: #3A4456;
    
    /* Himalayan Pink Salt */
    --himalayan-pink: #E6A19A;
    --himalayan-rose: #F5CFC7;
    --himalayan-deep: #C9908A;
    --himalayan-coral: #FF9E92;
    --himalayan-glow: rgba(230, 161, 154, 0.3);
    
    /* Morton Dark Blue */
    --morton-dark: #004A7C;
    --morton-deep: #003557;
    --morton-neon: #00A8E8;
    
    /* Crystal Whites */
    --crystal-white: #F8FAFB;
    --crystal-shimmer: #E1E8ED;
    --crystal-frost: rgba(248, 250, 251, 0.9);
    
    /* Salt Glow Effects */
    --pink-glow: 0 0 30px rgba(230, 161, 154, 0.4);
    --blue-glow: 0 0 30px rgba(0, 168, 232, 0.3);
    --white-glow: 0 0 40px rgba(248, 250, 251, 0.2);
    
    /* Dark Gradients */
    --gradient-dark-pink: linear-gradient(135deg, var(--salt-black), var(--salt-charcoal), var(--himalayan-deep));
    --gradient-void: radial-gradient(circle at 20% 80%, var(--salt-void), var(--salt-black) 60%);
    --gradient-salt-night: linear-gradient(180deg, var(--salt-charcoal) 0%, var(--salt-black) 100%);
}

/* ============================================
   GLOBAL DARK MODE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--salt-void);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(230, 161, 154, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 168, 232, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--salt-void) 0%, var(--salt-black) 100%);
    color: var(--crystal-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   SHOOTING STAR SALT CRYSTALS
   ============================================ */

.salt-crystals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.salt-crystal {
    position: absolute;
    opacity: 0;
    animation: shootingStar 3s ease-out infinite;
}

.crystal-pyramid {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid var(--crystal-white);
    filter: drop-shadow(var(--white-glow));
    opacity: 0.8;
    position: relative;
}

.crystal-pyramid::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--crystal-white), transparent);
    left: -80px;
    top: 10px;
    opacity: 0.6;
}

.pink-salt-ball {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--himalayan-rose), var(--himalayan-deep));
    box-shadow: var(--pink-glow), inset -5px -5px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: shootingBall 4s ease-out infinite;
}

.pink-salt-ball::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--himalayan-coral), transparent);
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

@keyframes shootingStar {
    0% {
        transform: translate(0, 0) rotate(45deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-400px, 400px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes shootingBall {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translate(-500px, 500px);
        opacity: 0;
    }
}

/* ============================================
   DARK HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(230, 161, 154, 0.08) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

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

.salt-logo {
    margin-bottom: 2rem;
    animation: pyramidAppear 1.5s ease-out;
    filter: drop-shadow(var(--pink-glow));
}

@keyframes pyramidAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotateY(180deg);
    }
    60% {
        transform: scale(1.1) rotateY(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

.pyramid-stack {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 140px;
}

.pyramid {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid var(--himalayan-pink);
    filter: drop-shadow(var(--pink-glow));
    animation: pyramidPulseDark 3s ease-in-out infinite;
}

.pyramid-1 {
    border-bottom: 70px solid var(--himalayan-deep);
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    animation-delay: 0s;
}

.pyramid-2 {
    border-bottom: 90px solid var(--himalayan-coral);
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    animation-delay: 0.3s;
    filter: drop-shadow(0 0 40px rgba(255, 158, 146, 0.6));
}

.pyramid-3 {
    border-bottom: 70px solid var(--himalayan-rose);
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    animation-delay: 0.6s;
}

@keyframes pyramidPulseDark {
    0%, 100% {
        filter: drop-shadow(var(--pink-glow));
        transform: translateY(0);
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(230, 161, 154, 0.8));
        transform: translateY(-15px);
    }
}

.glimmer-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--himalayan-rose), var(--crystal-white), var(--himalayan-coral));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
    animation: shimmerDark 4s ease-in-out infinite;
    text-shadow: var(--pink-glow);
    filter: drop-shadow(0 0 30px rgba(230, 161, 154, 0.5));
}

@keyframes shimmerDark {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--crystal-shimmer);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 1rem 0 2rem 0;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(248, 250, 251, 0.3);
}

.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.3rem;
    color: var(--himalayan-rose);
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem 2.5rem;
    background: rgba(42, 49, 66, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 50px;
    border: 2px solid rgba(230, 161, 154, 0.3);
    box-shadow: var(--pink-glow), inset 0 2px 20px rgba(0, 0, 0, 0.3);
}

.umbrella-icon {
    font-size: 2rem;
    filter: drop-shadow(var(--pink-glow));
    animation: sway 2s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--himalayan-coral);
    border-bottom: 3px solid var(--himalayan-coral);
    transform: rotate(45deg);
    filter: drop-shadow(var(--pink-glow));
}

/* ============================================
   DARK CONTAINER & SECTIONS
   ============================================ */

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

section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--crystal-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
    text-shadow: var(--pink-glow);
    background: linear-gradient(135deg, var(--crystal-white), var(--himalayan-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.salt-divider {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.crystal-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--himalayan-coral), transparent);
    position: relative;
    box-shadow: var(--pink-glow);
}

.crystal-divider::before,
.crystal-divider::after {
    content: '◇';
    position: absolute;
    color: var(--himalayan-rose);
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(var(--pink-glow));
}

.crystal-divider::before {
    left: -30px;
}

.crystal-divider::after {
    right: -30px;
}

/* ============================================
   DARK ABOUT SECTION
   ============================================ */

.about-section {
    background: rgba(26, 31, 46, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: rgba(42, 49, 66, 0.5);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(230, 161, 154, 0.2);
    box-shadow: var(--pink-glow), inset 0 2px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.about-card:nth-child(1) {
    animation-delay: 0.1s;
}

.about-card:nth-child(2) {
    animation-delay: 0.3s;
}

.about-card:nth-child(3) {
    animation-delay: 0.5s;
}

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

.about-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 0 60px rgba(230, 161, 154, 0.5), inset 0 2px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--himalayan-coral);
}

.crystal-icon {
    font-size: 3rem;
    color: var(--himalayan-coral);
    margin-bottom: 1.5rem;
    animation: crystallizeDark 3s ease-in-out infinite;
    filter: drop-shadow(var(--pink-glow));
}

@keyframes crystallizeDark {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(var(--pink-glow));
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        filter: drop-shadow(0 0 50px rgba(255, 158, 146, 0.8));
    }
}

.about-card h3 {
    font-size: 1.8rem;
    color: var(--himalayan-rose);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: var(--pink-glow);
}

.about-card p {
    color: var(--crystal-shimmer);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-card strong {
    color: var(--himalayan-coral);
    font-weight: 600;
}

.location-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(230, 161, 154, 0.15);
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--himalayan-rose);
    border: 1px solid rgba(230, 161, 154, 0.3);
}

/* ============================================
   DARK PHILOSOPHY SECTION
   ============================================ */

.philosophy-section {
    background: var(--gradient-salt-night);
    position: relative;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.pyramid-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pyramid-visual {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--himalayan-coral);
    filter: drop-shadow(0 0 60px rgba(255, 158, 146, 0.6));
    animation: pyramidRotateDark 10s linear infinite;
    position: relative;
}

@keyframes pyramidRotateDark {
    0%, 100% {
        transform: rotateY(0deg) scale(1);
        filter: drop-shadow(0 0 60px rgba(255, 158, 146, 0.6));
    }
    25% {
        transform: rotateY(90deg) scale(1.15);
        filter: drop-shadow(0 0 80px rgba(230, 161, 154, 0.8));
    }
    50% {
        transform: rotateY(180deg) scale(1);
        filter: drop-shadow(0 0 60px rgba(255, 158, 146, 0.6));
    }
    75% {
        transform: rotateY(270deg) scale(1.15);
        filter: drop-shadow(0 0 80px rgba(230, 161, 154, 0.8));
    }
}

.philosophy-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--crystal-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: var(--pink-glow);
}

.philosophy-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--crystal-shimmer);
    margin-bottom: 2rem;
}

blockquote {
    border-left: 4px solid var(--himalayan-coral);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--himalayan-rose);
    background: rgba(42, 49, 66, 0.4);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--pink-glow), inset 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================
   DARK EXPERTISE SECTION
   ============================================ */

.expertise-section {
    background: rgba(10, 14, 20, 0.6);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background: rgba(42, 49, 66, 0.6);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--himalayan-coral), var(--himalayan-rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--pink-glow);
}

.expertise-item:hover::before {
    transform: scaleX(1);
}

.expertise-item:hover {
    transform: translateY(-12px);
    border-color: var(--himalayan-coral);
    box-shadow: 0 0 50px rgba(230, 161, 154, 0.5);
}

.expertise-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--himalayan-coral), var(--himalayan-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    filter: drop-shadow(var(--pink-glow));
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: var(--crystal-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-item p {
    color: var(--crystal-shimmer);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================
   DARK JOURNEY/TIMELINE SECTION
   ============================================ */

.journey-section {
    background: linear-gradient(180deg, 
        rgba(26, 31, 46, 0.5) 0%, 
        rgba(10, 14, 20, 0.6) 100%);
}

.journey-timeline {
    position: relative;
    padding: 2rem 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--himalayan-coral), var(--himalayan-rose));
    transform: translateX(-50%);
    box-shadow: var(--pink-glow);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
}

.timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--himalayan-coral), var(--himalayan-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--pink-glow), 0 8px 24px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: pulseDark 2s ease-in-out infinite;
}

@keyframes pulseDark {
    0%, 100% {
        box-shadow: var(--pink-glow), 0 8px 24px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 158, 146, 0.8), 0 0 0 20px rgba(230, 161, 154, 0.1);
    }
}

.timeline-marker::after {
    content: '◇';
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.timeline-content {
    background: rgba(42, 49, 66, 0.6);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(230, 161, 154, 0.2);
    box-shadow: var(--pink-glow), inset 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(230, 161, 154, 0.6);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--himalayan-coral);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: var(--pink-glow);
}

.timeline-content p {
    color: var(--crystal-shimmer);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================
   DARK MORTON SECTION
   ============================================ */

.morton-section {
    background: linear-gradient(135deg, var(--salt-charcoal), var(--morton-deep));
    color: white;
    padding: 6rem 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.morton-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.umbrella-girl-tribute {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
}

.umbrella-visual {
    font-size: 8rem;
    animation: umbrellaRain 3s ease-in-out infinite;
    filter: drop-shadow(var(--pink-glow));
}

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

.morton-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--himalayan-rose);
    text-shadow: var(--pink-glow);
}

.morton-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--crystal-shimmer);
}

/* ============================================
   DARK CONNECT SECTION
   ============================================ */

.connect-section {
    background: rgba(26, 31, 46, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

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

.connect-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--crystal-white);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: var(--pink-glow);
}

.connect-intro {
    font-size: 1.3rem;
    color: var(--crystal-shimmer);
    margin-bottom: 4rem;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.connect-card {
    background: rgba(42, 49, 66, 0.6);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(230, 161, 154, 0.2);
    box-shadow: var(--pink-glow), inset 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.connect-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 0 60px rgba(230, 161, 154, 0.6);
    border-color: var(--himalayan-coral);
}

.connect-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(var(--pink-glow));
}

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

.connect-card h3 {
    font-size: 1.6rem;
    color: var(--himalayan-rose);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.connect-card p {
    color: var(--crystal-shimmer);
    font-size: 1.05rem;
}

/* ============================================
   DARK FOOTER
   ============================================ */

.footer {
    background: var(--salt-void);
    color: var(--crystal-white);
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(230, 161, 154, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.pyramid-small {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid var(--himalayan-coral);
    animation: pyramidPulseDark 3s ease-in-out infinite;
    filter: drop-shadow(var(--pink-glow));
}

.footer-tagline {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-style: italic;
    color: var(--himalayan-rose);
}

.footer-note {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 1rem;
    color: var(--crystal-shimmer);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pyramid-large {
        margin-bottom: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 1;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-marker,
    .timeline-item:nth-child(odd) .timeline-marker {
        grid-column: 1;
        justify-self: center;
        margin-bottom: 1rem;
    }
    
    .journey-timeline::before {
        left: 40px;
    }
    
    .umbrella-girl-tribute {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 0;
    }
    
    .about-grid,
    .expertise-grid,
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .tagline {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ============================================
   STARFIELD BACKGROUND EFFECT
   ============================================ */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--crystal-white), transparent),
        radial-gradient(2px 2px at 60px 70px, var(--himalayan-rose), transparent),
        radial-gradient(1px 1px at 50px 50px, var(--crystal-white), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--crystal-white), transparent),
        radial-gradient(2px 2px at 90px 10px, var(--himalayan-rose), transparent);
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.4;
    animation: starfield 200s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes starfield {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(200px);
    }
}
