/* Hero Section */
.hero {
    padding: 12rem var(--container-padding) 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    min-height: 103.5vh;
    background: #FFFFFF;
    max-width: var(--site-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-top: 13.8rem;
    margin-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.hero-content {
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(27, 54, 93, 0.1);
    text-align: center;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 10rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.6rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        display: none;
    }
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333333;
    line-height: 1.4;
    max-width: 540px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    display: inline-block;
    text-align: center;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
}

.hero-subtitle span {
    display: block;
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

.hero .cta-button {
    font-size: 1.8rem;
    padding: 1.6rem 4rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #2abfc3 0%, #0055CC 100%);
    box-shadow: 0 4px 15px rgba(17, 109, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    align-self: center;
}

.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 109, 255, 0.4);
    background: linear-gradient(135deg, #0055CC 0%, #2abfc3 100%);
}

.hero-image {
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.hero-image img {
    width: 105%;
    height: auto;
    max-width: 630px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    margin-left: -2.5%;
}

/* Services Section */
.services {
    padding: var(--spacing-xl) var(--container-padding);
    background-color: #f8f8f8;
    text-align: center;
    margin-bottom: 80px;
}

.services .section-title {
    margin: 0 auto 40px;
    text-align: center;
    display: block;
    font-size: 3.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.service-card {
    background: var(--color-background);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-accent);
}

.service-icon {
    font-size: 50px;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: block;
    text-align: center;
    line-height: 1;
}

.card-divider {
    height: 2px;
    background-color: var(--color-secondary);
    margin: var(--spacing-md) auto;
    width: 50%;
    opacity: 0.8;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--color-text);
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 0;
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/forest.jpg') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    isolation: isolate;
    z-index: 1;
}

.testimonial-slider {
    width: 900px;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 70px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 4px;
}

.testimonial {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.6;
    color: #2abfc3;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
    display: block;
    overflow: visible;
    padding: 0 20px;
}

.testimonial cite {
    display: block;
    font-size: 16px;
    color: #333333;
    font-style: normal;
    font-weight: 500;
    margin-top: 20px;
}

/* Intro Section */
.intro {
    padding: 40px var(--container-padding);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.intro-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.intro-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(51, 51, 51, 0.9);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 300;
}

.intro .cta-button {
    font-size: 18px;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    background: linear-gradient(135deg, #2abfc3 0%, #0055CC 100%);
    box-shadow: 0 4px 15px rgba(17, 109, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: -5px;
}

.intro .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 109, 255, 0.4);
    background: linear-gradient(135deg, #0055CC 0%, #2abfc3 100%);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1.1;
    color: #2abfc3;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.info {
    padding: 40px var(--container-padding);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.info::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.info-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.info .section-title {
    font-size: 60px;
    margin-bottom: 20px;
}

.info .section-subtitle {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333333;
}

.info-text p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(51, 51, 51, 0.9);
    margin-bottom: 30px;
}

.benefits-list {
    margin: 40px auto;
    max-width: 500px;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.4;
    color: #333333;
    text-align: left;
    display: flex;
    align-items: center;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #2abfc3;
    opacity: 0.2;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.benefits-list li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    color: #2abfc3;
    font-size: 12px;
    font-weight: bold;
}

.benefits-list li:hover::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.scroll-text {
    margin-top: 2rem;
    font-size: 2.2rem;
    color: var(--color-primary);
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    text-shadow: 0 2px 4px rgba(17, 109, 255, 0.2);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.scroll-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #2abfc3, transparent);
}

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