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

:root {
    --primary-color: #4a8b86;
    --primary-dark: #3f7672;
    --primary-light: #caffff;
    --primary-deep: #1a4a46;
    --bg-accent: #e8f5f4;
    --text-dark: #141414;
    --text-light: #636363;
    --bg-light: #fafafa;
    --white: #ffffff;
    --border-color: #e8e8e8;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 55px rgba(0,0,0,0.03);
    z-index: 1000;
    padding: 1.25rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 3rem 25px;
    background: var(--white);
    display: flex;
    justify-content: center;
}

.hero-two-column {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    background: var(--primary-deep);
    border-radius: 28px;
    padding: 1rem;
    gap: 2rem;
    min-height: 480px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 2rem 3rem;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-text .highlight {
    color: var(--white);
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-text .cta-button {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: fit-content;
}

.hero-text .cta-button:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 0 0 auto;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.image-placeholder:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 81, 76, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.hero-photo {
    width: 420px;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-text h1 {
    color: var(--white);
}

.hero .highlight {
    color: var(--primary-color);
}

.hero-text .highlight {
    color: var(--white);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-text p {
    color: var(--white);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(74, 139, 134, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 81, 76, 0.35);
}

.cta-button-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

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

/* Stats Section */
.stats {
    padding: 3rem 2rem;
    background: var(--white);
}

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

.stat-box {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.stat-box:hover {
    border-color: rgba(31, 81, 76, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Header Banner */
.header-banner {
    margin-top: 70px;
    padding: 5rem 25px 0 25px;
    background: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.banner-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4rem;
}

.banner-content {
    flex: 1;
}

.banner-headline {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.banner-subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.banner-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
}

.banner-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.banner-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.banner-photo {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-headline {
        font-size: 2.25rem;
    }

    .banner-subtext {
        max-width: 100%;
    }

    .banner-image {
        order: -1;
    }

    .banner-photo {
        max-height: 300px;
    }
}

/* About Section */
.about-section {
    padding: 0 25px 5rem 25px;
    background: var(--white);
}

.about-section .section-container {
    max-width: 1400px;
    width: 100%;
    padding: 0;
}

/* About Section */
.about-two-column {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 28px;
    padding: 1rem;
    gap: 2rem;
    min-height: 480px;
}

.about-image-container {
    flex: 0 0 auto;
}

.about-photo {
    width: 420px;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 3rem;
}

.about-text h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.about-text h1 .highlight {
    color: var(--primary-color);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-text p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.about-text .cta-button {
    margin-top: 1rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    width: fit-content;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-intro {
    font-size: 1.5rem !important;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-list {
    color: var(--text-dark);
    margin: 0.5rem 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-list li {
    margin-bottom: 0.5rem;
}

.about-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Section Styles */
.section {
    padding: 5rem 25px;
}

.section-alt {
    background: var(--bg-accent);
}

.section-dark {
    background: var(--primary-color) !important;
}

.section-dark .section-title,
.section-dark .section-subtitle,
.section-dark .packages-note {
    color: var(--white);
}

.section-dark .service-card,
.section-dark .package-card {
    background: var(--white);
}

.section-dark .contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.section-dark .form-group label {
    color: var(--text-dark);
}

.section-dark .cta-button {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.section-dark .cta-button:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(31, 81, 76, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 81, 76, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(202, 255, 255, 0.5) 100%);
    border-radius: 20px;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 81, 76, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    color: #000000;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-weight: 400;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(31, 81, 76, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.package-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 81, 76, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
    background: var(--white);
    border: 1px solid rgba(74, 139, 134, 0.2);
    box-shadow: 0 4px 24px rgba(74, 139, 134, 0.12);
}

.package-card.featured:hover {
    box-shadow: 0 16px 48px rgba(74, 139, 134, 0.18);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f5c842;
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(74, 139, 134, 0.3);
}

.package-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.package-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.packages-footer {
    text-align: center;
    margin-top: 3rem;
}

.packages-note {
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 2.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.package-features li:hover {
    color: var(--text-dark);
    padding-left: 0.5rem;
}

.package-features li:last-child {
    border-bottom: none;
}

/* Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.resource-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 81, 76, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.resource-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(202, 255, 255, 0.3) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.resource-content {
    padding: 2rem;
}

.resource-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.resource-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.95rem;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-link:hover {
    color: var(--primary-dark);
}

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

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

.footer p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-two-column {
        flex-direction: column;
        gap: 0;
    }

    .hero-image {
        order: -1;
        width: 100%;
    }

    .hero-text {
        text-align: center;
        padding: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .about-two-column {
        flex-direction: column;
        gap: 0;
    }

    .about-image-container {
        width: 100%;
    }

    .about-photo {
        width: 100%;
        min-height: 300px;
        border-radius: 20px 20px 0 0;
    }

    .about-text {
        text-align: center;
        padding: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .image-placeholder {
        max-width: 300px;
        height: 300px;
    }

    .hero-photo {
        width: 100%;
        min-height: 300px;
        border-radius: 20px 20px 0 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .services-grid,
    .three-column-grid,
    .testimonials-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}