:root {
    --forest-dark: #1a3a2e;
    --forest-medium: #2d5a47;
    --earth-green: #4a7c59;
    --moss: #6b9472;
    --sage: #8faa96;
    --cream: #f4f1e8;
    --warm-white: #fdfbf7;
    --earth-brown: #8b6f47;
    --safety-orange: #ff6b35;
    --accent-gold: #d4a574;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
}

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

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-medium) 100%);
    color: white;
    padding: 4rem 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(106, 148, 114, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(to right, var(--forest-medium) 0%, transparent 30%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%232d5a47" width="800" height="600"/><g opacity="0.15" fill="%23ffffff"><path d="M100 400 Q150 300 200 400 T300 400"/><path d="M250 350 Q300 250 350 350 T450 350"/><path d="M400 420 Q450 320 500 420 T600 420"/></g></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-container {
    animation: fadeInUp 0.8s ease-out;
}

.company-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: white;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}

.hero-text {
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.partner-logo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-name {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.partner-by {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
}

/* Intro Section */
.intro {
    background: var(--cream);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--earth-green) 50%, transparent 100%);
    opacity: 0.3;
}

.intro-quote {
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--forest-dark);
    max-width: 900px;
    margin: 0 auto 2rem;
    font-weight: 400;
    animation: fadeIn 1s ease-out;
}

.intro-highlight {
    font-family: 'Archivo', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--safety-orange);
    letter-spacing: 0.02em;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: var(--warm-white);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(26, 58, 46, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--earth-green) 0%, var(--moss) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(26, 58, 46, 0.15);
    border-color: var(--earth-green);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--earth-green) 0%, var(--moss) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-family: 'Archivo', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--earth-green);
    font-weight: bold;
}

.service-list li strong {
    color: var(--forest-dark);
    font-weight: 600;
}

/* Access Section */
.access {
    background: linear-gradient(135deg, var(--forest-medium) 0%, var(--earth-green) 100%);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.access::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    font-family: 'Archivo', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    text-align: center;
    letter-spacing: -0.02em;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.access-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.access-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.access-label {
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.access-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.access-value a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.access-value a:hover {
    border-bottom-color: var(--accent-gold);
}

.access-footer {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta {
    background: var(--cream);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-title {
    font-family: 'Archivo', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-style: italic;
}

.cta-highlight {
    font-family: 'Archivo', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--earth-green);
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background: var(--forest-dark);
    padding: 3rem 2rem;
    color: white;
}

.footer-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.company-name {
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.partner-name-footer {
    font-family: 'Archivo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.partner-by-footer {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-logo {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .intro-quote {
        font-size: 1.3rem;
    }

    .intro-highlight {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .company-logo {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .partner-name {
        font-size: 1.4rem;
    }

    .intro-quote {
        font-size: 1.1rem;
    }
}
