* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 3rem;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b35;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: none;
    background: #ff6b35;
    color: #0a0a0a;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-menu:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.hero-text .highlight {
    color: #ff6b35;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #888;
    max-width: 500px;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: #888;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #ff6b35, transparent);
    animation: scroll-pulse 2s infinite;
}

/* Services Section */
.services {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    margin-bottom: 6rem;
}

.services-intro h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.services-intro p {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    gap: 0;
}

.service-item {
    border-top: 1px solid #222;
    padding: 3rem 0;
    cursor: pointer;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.service-item:last-child {
    border-bottom: 1px solid #222;
}

.service-item:hover {
    background: rgba(255, 107, 53, 0.02);
    padding-left: 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-number {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 500;
}

.service-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-arrow {
    font-size: 1.5rem;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(10px);
}

.service-description {
    color: #888;
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Impact Section */
.impact {
    background: #111;
    padding: 8rem 3rem;
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.impact-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.stat {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.4;
}

.impact-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: #0a0a0a;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

/* Quote Section */
.quote-section {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.quote-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    line-height: 1.6;
}

/* Contact Details */

a:link {
  color:white;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 1;
    transform: translateY(20px);
    transition: all 1s ease;
}

.contact-details.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info {
    color: #eb4f0c;
}

.contact-link:hover {
    color: #fff;
}

.contact-link svg {
    font-size: 1.5rem;
}

.social-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    color: #888;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #fff;
}

.social-link svg {
    font-size: 1.5rem;
}

.social-handle {
    color: #888;
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

/* Footer */
footer {
    background: #111;
    padding: 4rem 3rem 2rem;
    border-top: 1px solid #222;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
}

.footer-text {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1.5rem;
    }

    .hero {
        padding: 0 1.5rem;
    }

    .services {
        padding: 6rem 1.5rem;
    }

    .impact {
        padding: 6rem 1.5rem;
    }

    .quote-section {
        padding: 6rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-item:hover {
        padding-left: 0;
    }

    .nav-menu {
        display: block;
    }
}