/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ShipFifty Brand Colors */
    --navy-blue: #1e2a5e;
    --bright-blue: #0066ff;
    --bright-green: #66ff00;
    --cyan: #00ccff;
    --yellow: #ffcc00;
    
    /* Extended Colors */
    --pink: #ff66ff;
    --light-gray: #cccccc;
    --medium-gray: #999999;
    --dark-gray: #333333;
    --white: #ffffff;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy-blue) 0%, var(--bright-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--bright-green) 0%, var(--cyan) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(30, 42, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 42, 94, 0.4);
}

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

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

.nav-cta {
    background: var(--gradient-accent);
    color: var(--navy-blue);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 255, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-blue);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-blue);
}

.stat-label {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1.5s;
}

.card-icon {
    font-size: 24px;
}

.card-text {
    font-weight: 600;
    color: var(--navy-blue);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
}

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

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0ffcc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--navy-blue);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.tech-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-description {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.tech-features {
    margin-bottom: 40px;
}

.tech-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 4px;
    font-size: 1.125rem;
}

.feature-text p {
    color: var(--medium-gray);
}

.dashboard-preview {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}

.dashboard-header {
    background: var(--navy-blue);
    padding: 16px 24px;
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-dots span:first-child {
    background: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-dots span:nth-child(3) {
    background: #28ca42;
}

.dashboard-content {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.metric-card {
    padding: 24px;
    background: #f8f9ff;
    border-radius: 12px;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 4px;
}

.metric-change.positive {
    color: var(--bright-green);
}

.chart-card {
    grid-column: 1 / -1;
    padding: 24px;
    background: #f8f9ff;
    border-radius: 12px;
}

.chart-bars {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 120px;
}

.bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 4px 4px 0 0;
    transition: var(--transition-smooth);
}

.bar:hover {
    opacity: 0.8;
}

/* Network Section */
.network {
    padding: 100px 0;
}

.network-locations {
    margin-bottom: 60px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--bright-green);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.location-card h3 {
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.location-details p {
    color: var(--medium-gray);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.location-details strong {
    color: var(--dark-gray);
}

.network-map {
    margin-bottom: 60px;
}

.map-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.map-image {
    width: 100%;
    height: auto;
}

.location-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.location-pin:hover {
    transform: scale(1.1);
}

.pin-dot {
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(102, 255, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.pin-label {
    background: var(--navy-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pin-1 { top: 50%; left: 15%; }
.pin-2 { top: 60%; left: 40%; }
.pin-3 { top: 35%; left: 55%; }
.pin-4 { top: 30%; left: 80%; }
.pin-5 { top: 75%; left: 75%; }

.network-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.network-stat h3 {
    font-size: 3rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.network-stat p {
    color: var(--medium-gray);
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

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

.pricing-card.featured {
    border: 2px solid var(--bright-green);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--navy-blue);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-card h3 {
    margin-bottom: 24px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 32px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium-gray);
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-green);
    font-weight: 700;
}

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

.pricing-cta p {
    margin-bottom: 24px;
    font-size: 1.125rem;
    color: var(--medium-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

.stars {
    color: var(--yellow);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cta-form input,
.cta-form select {
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition-fast);
}

.cta-form input::placeholder,
.cta-form select {
    color: rgba(255, 255, 255, 0.7);
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--bright-green);
    background: rgba(255, 255, 255, 0.15);
}

.cta-form select option {
    color: var(--navy-blue);
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cta-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.cta-icon {
    font-size: 2rem;
    line-height: 1;
}

.cta-feature h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.cta-feature p {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--bright-green);
    transform: translateX(4px);
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 255, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 255, 0, 0);
    }
}

/* Beyond the Fifty Explainer */
.beyond-fifty-explainer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.explainer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--navy-blue);
}

.explainer-content p {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 60px;
}

.usa-visual {
    max-width: 600px;
    margin: 0 auto;
}

.usa-map {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usa-svg {
    width: 300px;
    height: 180px;
}

.arrow {
    position: absolute;
    font-size: 2rem;
    color: var(--bright-green);
    font-weight: bold;
    animation: pulse 2s infinite;
}

.arrow-1 { top: 20%; left: 10%; transform: rotate(-45deg); }
.arrow-2 { top: 10%; right: 10%; transform: rotate(45deg); }
.arrow-3 { bottom: 20%; left: 10%; transform: rotate(-135deg); }
.arrow-4 { bottom: 10%; right: 10%; transform: rotate(135deg); }
.arrow-5 { top: 50%; left: 5%; transform: rotate(-90deg); }
.arrow-6 { top: 50%; right: 5%; transform: rotate(90deg); }

.destination {
    position: absolute;
    font-weight: 600;
    color: var(--navy-blue);
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    font-size: 0.875rem;
}

.dest-1 { top: 5%; left: 5%; }
.dest-2 { top: 5%; right: 5%; }
.dest-3 { bottom: 5%; left: 5%; }
.dest-4 { bottom: 5%; right: 5%; }
.dest-5 { top: 45%; left: -10%; }
.dest-6 { top: 45%; right: -10%; }

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1) translateX(0); }
    50% { opacity: 1; transform: scale(1.1) translateX(5px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .tech-wrapper,
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .services-grid,
    .pricing-cards,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .services,
    .technology,
    .network,
    .pricing,
    .testimonials,
    .cta-section {
        padding: 60px 0;
    }
    
    .service-card,
    .pricing-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--bright-green);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--bright-green);
    color: var(--navy-blue);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(30, 42, 94, 0.1);
    border-top-color: var(--navy-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Page Hero - Common style for all pages */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6ffcc 100%);
    text-align: center;
}

.page-title {
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out;
}

.page-title .accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Active Navigation States */
.nav-link.active {
    color: var(--bright-green);
    font-weight: 600;
}

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

.nav-cta.active {
    background: var(--bright-green);
    color: var(--navy-blue);
}

/* About Page Styles */
.mission-section {
    padding: 80px 0;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content h2 {
    margin-bottom: 24px;
    color: var(--navy-blue);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 24px;
    font-weight: 500;
}

.mission-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--bright-green);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bright-green);
    margin-bottom: 8px;
}

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-smooth);
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--navy-blue);
}

.story-section {
    padding: 80px 0;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bright-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--bright-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(102, 255, 0, 0.2);
}

.timeline-year {
    font-weight: 700;
    color: var(--bright-green);
    margin-bottom: 8px;
}

.timeline-content h3 {
    margin-bottom: 8px;
    color: var(--navy-blue);
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 1.5rem;
}

.member-role {
    color: var(--bright-green);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.about-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
