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

:root {
    --primary-color: #4C8A45;
    --secondary-color: #0D1B2B;
    --accent-color: #176BE0;
    --text-light: #FFFFFF;
    --text-dark: #0D131A;
    --gray-light: #B8C0CC;
    --gray-medium: #495867;
    --font-primary: 'Prosto One', 'Georgia', serif;
    --font-secondary: 'Catamaran', 'Arial', sans-serif;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.72;
    color: var(--text-dark);
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--secondary-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo-text {
    font-size: 1.5rem;
    color: var(--text-light);
    font-family: var(--font-primary);
}

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

.main-nav a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 0.8;
    border-bottom: 2px solid var(--text-light);
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }
    
    .main-nav.mobile-open ul {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 5rem 0;
    text-align: center;
}

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

.hero h2 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #1357b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 107, 224, 0.3);
}

.btn-secondary {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.page-header h2 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Detail Section */
.services-detail {
    padding: 4rem 0;
}

.service-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-item-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-item-with-image.reverse {
    direction: rtl;
}

.service-item-with-image.reverse .service-text {
    direction: ltr;
}

.service-image {
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

@media (max-width: 968px) {
    .service-item-with-image,
    .service-item-with-image.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 2rem;
    }
    
    .service-image img {
        height: 300px;
    }
}

.service-item h3,
.service-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-item ul,
.service-text ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.service-item li,
.service-text li {
    margin-bottom: 0.5rem;
}

/* Experience Section */
.experience-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.experience-section h2 {
    margin-bottom: 1rem;
}

.experience-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

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

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item:hover {
    background-color: #f8f9fa;
}

.pricing-item.highlight-item {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.pricing-item.popular-item {
    background-color: #d4edda;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.pricing-item.popular-item::after {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.pricing-details p {
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin: 0;
}

.pricing-cost {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

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

@media (max-width: 768px) {
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.5rem;
    }
    
    .pricing-cost {
        margin-top: 0.75rem;
        font-size: 1.75rem;
    }
    
    .pricing-item.popular-item::after {
        right: 10px;
        top: -8px;
    }
}

.pricing-notes {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.pricing-notes h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-notes ul {
    list-style: none;
}

.pricing-notes li {
    padding: 0.75rem 0;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

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

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

.contact-details {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.address-detail {
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-map {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-map h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-map iframe {
    border-radius: 8px;
    width: 100%;
    height: 400px;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #B8C0CC;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-medium);
    text-align: center;
}

.contact-cta {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #1e5bb8 0%, #2196F3 100%);
    color: var(--text-light);
    padding: 4rem 0;
}

.reviews-section h2 {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.review-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
}

.review-card p::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    position: relative;
    top: 20px;
    opacity: 0.5;
    margin-right: 0.5rem;
}

/* About Section */
.about-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0;
}

.about-section h2 {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

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

.practitioner-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.practitioner-caption {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.6;
}

.about-text {
    display: flex;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.9;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reviews-section h2,
    .about-section h2 {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .features,
    .services-detail,
    .pricing-section,
    .contact-section,
    .experience-section {
        padding: 2rem 0;
    }
    
    .service-item,
    .contact-details,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        gap: 1rem;
    }
}
