:root {
    --primary-green: #1a4d3e;
    --primary-black: #0a0a0a;
    --primary-white: #fdfdf8;
    --accent-green: #2d6e5a;
    --light-green: #e8f2ee;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6a6a6a;
}

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

body {
    font-family: 'Darker Grotesque', sans-serif;
    color: var(--text-dark);
    background: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-white);
    border-bottom: 1px solid rgba(26, 77, 62, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.logo-link {
    display: block;
    line-height: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 82px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(26, 77, 62, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 30px) rotate(5deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-family: 'Crimson Pro', serif;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
    animation: slideInRight 0.8s ease-out;
}

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

.visual-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50% 40% 60% 50%;
    opacity: 0.1;
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% { border-radius: 50% 40% 60% 50%; transform: translate(-50%, -50%) rotate(0deg); }
    50% { border-radius: 40% 60% 50% 40%; transform: translate(-50%, -50%) rotate(180deg); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Darker Grotesque', sans-serif;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--primary-white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 77, 62, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Services Overview */
.services-overview {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-family: 'Crimson Pro', serif;
}

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

.service-card {
    padding: 3rem;
    background: var(--primary-white);
    border: 2px solid rgba(26, 77, 62, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 77, 62, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.card-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.card-arrow {
    font-size: 2rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .card-arrow {
    transform: translateX(10px);
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 2rem;
    background: var(--light-green);
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-title {
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    opacity: 0.3;
    line-height: 1;
    min-width: 80px;
}

.feature-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

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

.stats-block {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
}

.stat {
    text-align: center;
    padding: 2rem 0;
}

.stat:first-child {
    border-bottom: 1px solid rgba(26, 77, 62, 0.2);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.stat-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--primary-green);
    color: var(--primary-white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    margin-top: 82px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-white) 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-family: 'Crimson Pro', serif;
}

/* Services Detail */
.services-detail {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-text {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-family: 'Crimson Pro', serif;
}

.service-list {
    display: grid;
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--primary-white);
    border: 2px solid rgba(26, 77, 62, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(26, 77, 62, 0.1);
    transform: translateX(10px);
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-gray);
}

/* Service Categories */
.service-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.category {
    padding: 3rem;
    background: var(--light-green);
    border-radius: 8px;
}

.category-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.category-intro {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    background: var(--light-green);
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-green);
    color: var(--primary-white);
    font-size: 2.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

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

/* CTO Benefits */
.cto-benefits {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cto-benefits .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit {
    padding: 2.5rem;
    background: var(--light-green);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.benefit h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.method-icon svg {
    width: 100%;
    height: 100%;
}

.method-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.method-content a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--primary-green);
}

.method-content p {
    color: var(--text-gray);
}

.response-time {
    padding: 1.5rem;
    background: var(--light-green);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.response-time p {
    color: var(--text-gray);
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: var(--light-green);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.125rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(26, 77, 62, 0.2);
    border-radius: 4px;
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 1.125rem;
    background: var(--primary-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: var(--light-green);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
}

.values {
    max-width: 900px;
    margin: 0 auto;
}

.values h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.value {
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 8px;
    border-top: 4px solid var(--primary-green);
}

.value h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-white);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid rgba(26, 77, 62, 0.1);
        gap: 1.5rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero {
        padding: 4rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
