/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2D4F3E;
    --sage-green: #567C5F;
    --light-sage: #C8D8CC;
    --very-light-sage: #E8EDE9;
    --cream: #FAFAF8;
    --text-dark: #2C3E2F;
    --text-light: #5F6F64;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-green);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav a:hover {
    color: var(--sage-green);
}

.btn-primary {
    background: var(--sage-green);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--very-light-sage) 0%, white 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23C8D8CC" opacity="0.3"/></svg>');
    background-size: 100px 100px;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero .highlight {
    color: var(--sage-green);
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 79, 62, 0.2);
}

.btn-cta:hover {
    background: var(--sage-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 79, 62, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.lead {
    font-size: 22px;
    color: var(--sage-green);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 17px;
}

.credentials {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.credential-item .icon {
    width: 30px;
    height: 30px;
    background: var(--light-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-weight: bold;
    flex-shrink: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--very-light-sage);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-icon i {
    font-size: 28px;
    color: var(--sage-green);
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--very-light-sage);
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: var(--light-sage);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid var(--light-sage);
}

.author-name {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 3px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* Book Section */
.book {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-green) 100%);
    color: white;
}

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

.book-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.book-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.book-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

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

.book .btn-cta:hover {
    background: var(--light-sage);
    color: var(--primary-green);
}

.book-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--light-sage);
}

.footer-social p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
    color: var(--light-sage);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2,
    .section-header h2,
    .book-content h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .book-benefits {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .social-links {
        justify-content: center;
    }

    .footer-links,
    .social-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .logo img {
        height: 50px;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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