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

:root {
    --primary: #617e63;
    --secondary: #2a3838;
    --background: #fdfbf6;
    --card-bg: #ffffff;
    --text-primary: #2a3838;
    --text-light: rgba(42, 56, 56, 0.7);
    --border: rgba(0, 0, 0, 0.1);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--secondary);
}

p {
    line-height: 1.8;
}

/* Navigation */
.nav {
    background-color: var(--secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 14px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--background);
    text-decoration: none;
}

.logo-sub {
    font-size: 0.75rem;
    color: rgba(253, 251, 246, 0.8);
    margin-top: -0.25rem;
    text-decoration: none;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--background);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

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

.logoImage {
    height: 80px;
    width: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    margin: 0;
    font-size: 5rem;
}

.logo-text p {
    margin: 0;
    font-size: 1.5rem;
    opacity: 0.8;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--background);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    padding: 0.5rem 1rem 1rem;
    background-color: rgba(42, 56, 56, 0.95);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    color: var(--background);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s;
}

.mobile-nav-link:hover {
    background-color: rgba(97, 126, 99, 0.2);
}

.mobile-nav-link.active {
    background-color: var(--primary);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: rgba(97, 126, 99, 0.9);
}

.btn-secondary {
    background-color: transparent;
    color: var(--background);
    border: 2px solid var(--background);
}

.btn-secondary:hover {
    background-color: rgba(253, 251, 246, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(42, 56, 56, 0.4);
    z-index: 10;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 768px) {
    .hero-image-services {
        object-position: 85% center;
    }
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

/* Page Header */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 1rem;
}

.page-header-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .page-header-content h1 {
        font-size: 3.75rem;
    }
}

/* Contact Header */
.contact-header {
    background-color: var(--primary);
    padding: 5rem 1rem;
    text-align: center;
}

.contact-header h1 {
    color: var(--background);
    margin-bottom: 1rem;
}

.contact-header p {
    color: rgba(253, 251, 246, 0.9);
    font-size: 1.25rem;
}

/* Sections */
.services-overview,
.pricing-section,
.info-section,
.story-section,
.values-section,
.team-section,
.certifications-section,
.contact-section,
.faq-section {
    padding: 5rem 1rem;
}

.alt-bg {
    background-color: rgba(97, 126, 99, 0.05);
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 42rem;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.text-center {
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(97, 126, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    stroke: var(--primary);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link svg {
    stroke: var(--primary);
}

/* Why Choose Us */
.why-choose {
    padding: 5rem 1rem;
    background-color: rgba(97, 126, 99, 0.05);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-choose-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-choose-item p {
    color: var(--text-light);
}

.why-choose-image {
    position: relative;
    height: 500px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta {
    padding: 5rem 1rem;
    background-color: var(--secondary);
    color: var(--background);
}

.cta-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.cta h2 {
    color: var(--background);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(253, 251, 246, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card.popular {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--background);
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-card-content {
    padding: 2rem;
}

.pricing-info {
    margin-bottom: 1.5rem;
}

.duration {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-pricing {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.features-list svg {
    stroke: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.features-list span {
    color: var(--text-light);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-light);
}

/* Story Section */
.story-content {
    max-width: 56rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Values Grid */
.values-section {
    background-color: rgba(97, 126, 99, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(97, 126, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    stroke: var(--primary);
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

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

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.team-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    height: 12rem;
    background-color: rgba(97, 126, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar span {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(97, 126, 99, 0.3);
}

.team-card > div:last-child {
    padding: 1.5rem;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Certifications */
.certifications-section {
    background-color: rgba(97, 126, 99, 0.05);
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cert-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.cert-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.cert-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Mission Section */
.mission-section {
    background-color: var(--secondary);
    color: var(--background);
    padding: 5rem 1rem;
    text-align: center;
}

.mission-section .container {
    max-width: 56rem;
}

.mission-section h2 {
    color: var(--background);
    margin-bottom: 1.5rem;
}

.mission-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(253, 251, 246, 0.9);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(97, 126, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--primary);
}

.contact-method h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--text-light);
}

.map-placeholder {
    margin-top: 2rem;
    height: 16rem;
    background-color: rgba(97, 126, 99, 0.1);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
}

@media (min-width: 768px) {
    .map-placeholder {
        height: 220px;
    }
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.contact-photo {
    height: 100px;
    width: auto;
    display: flex;
    align-items: center;
}

.map-placeholder svg {
    stroke: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.success-message {
    background-color: rgba(97, 126, 99, 0.1);
    border: 1px solid var(--primary);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.success-message svg {
    stroke: var(--primary);
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(97, 126, 99, 0.1);
}

.form-group textarea {
    resize: none;
}

.instagram-link {
    color: #617e63;
    text-decoration: none;
}

.instagram-link:hover {
    color: #708B72;
}

/* FAQ Section */
.faq-section {
    background-color: rgba(97, 126, 99, 0.05);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.faq-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.faq-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-card p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--background);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    color: var(--background);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    color: var(--background);
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.875rem;
    color: rgba(253, 251, 246, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(253, 251, 246, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 251, 246, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(253, 251, 246, 0.6);
}
