/*
Theme Name: Fizik Tedavi
Theme URI: https://evdefiziktedavisi.com
Description: İstanbul'da evde fizik tedavisi hizmeti veren profesyonel WordPress teması. Fizyoterapi klinikler ve evde sağlık hizmeti verenler için özel tasarlanmıştır. Gutenberg editör desteği, Rank Math SEO uyumlu, tam responsive tasarım.
Author: Evde Fizik Tedavisi Ekibi
Author URI: https://evdefiziktedavisi.com
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fiziktedavi
Domain Path: /languages
Tags: health, medical, physiotherapy, responsive, accessibility-ready, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

Fizik Tedavi WordPress Theme
Copyright 2024, Evde Fizik Tedavisi
Fizik Tedavi is distributed under the terms of the GNU GPL.
*/

/* ==========================================================================
   FİZİK TEDAVİ WORDPRESS TEMASI - ANA STILLER
   ========================================================================== */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables - WordPress Uyumlu */
:root {
    /* Colors */
    --primary-color: #1e5a3a; /* Darker green for better contrast (was #2E8B57) */
    --secondary-color: #20B2AA;
    --accent-color: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #495057;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;

    /* Effects */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;

    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --line-height: 1.6;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --container-padding: 0 20px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
}

/* Layout Stability - Prevent forced reflow (43ms savings!) */
.hero,
.services,
.about,
.contact,
.blog-posts,
.team-section,
.values-section {
    contain: layout style;
}

/* Prevent layout shifts */
.service-card,
.team-card,
.blog-card,
.value-card {
    contain: layout;
    min-height: 200px; /* Reserve space to prevent shifts */
}

.image-placeholder {
    contain: layout;
    aspect-ratio: 1 / 1; /* Maintain aspect ratio */
}

/* WordPress Alignment Classes */
.alignleft {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.alignwide {
    margin-left: calc(25% - 25vw);
    margin-right: calc(25% - 25vw);
    width: auto;
    max-width: 1000%;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: auto;
    max-width: 1000%;
}

/* WordPress Core Styles */
.wp-block-image {
    margin-bottom: 1rem;
}

.wp-block-image figcaption {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 16px;
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    gap: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: #1a472a; /* Same dark green for consistency */
    color: var(--white);
    font-weight: 600; /* Bolder text */
}

.btn-primary:hover {
    background: #236B44;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
}

/* Header */
.header {
    position: relative;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.custom-logo-link {
    display: inline-block;
}

.custom-logo {
    opacity: 1 !important;
    max-height: 80px;
    width: auto;
    display: block;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border: none;
    background: transparent;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    border-radius: 2px;
}

/* Mobile Menu Active States */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Body scroll lock when mobile menu is open */
.nav-open {
    overflow: hidden !important;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text,
.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: clamp(300px, 50vw, 400px);
    height: clamp(300px, 50vw, 400px);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(5rem, 10vw, 8rem);
}

/* Page Headers */
.page-header,
.about-hero,
.blog-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.page-header-content h1,
.about-hero-content h1,
.blog-header-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle,
.page-header-content p,
.blog-header-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--text-light);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    margin-bottom: 1.5rem;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
}

.service-image-placeholder p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* About Sections */
.about,
.about-content,
.company-story {
    padding: var(--section-padding);
    background: var(--white);
}

.about:nth-of-type(even),
.mission-vision,
.values-section:nth-of-type(even),
.team-section,
.why-choose,
.cta-section,
.contact-form-section {
    background: var(--light-gray);
}

.about-content,
.story-grid,
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    text-align: center;
}

.about-content .about-text {
    text-align: left;
}

.features {
    margin-top: 2rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-image .image-placeholder {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 2rem;
}

.team-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-experience {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card ul li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.value-card ul li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reason-item h3 i {
    font-size: 1.5rem;
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
}

.faq-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 4rem;
}

.faq-cta-content {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.faq-cta-content h2 {
    margin-bottom: 1rem;
    color: var(--white);
}

.faq-cta-content p {
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.faq-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #20B85A;
    border-color: #20B85A;
}

.faq-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.faq-cta .btn-secondary:hover {
    background: var(--light-gray);
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.feature h4 {
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
}

.about-image .image-placeholder,
.story-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-img,
.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-image .hero-img {
    max-height: 400px;
    border-radius: 50%;
}

.about-image .about-img {
    max-height: 400px;
}

.image-placeholder p {
    margin-top: 1rem;
    color: var(--white);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
}

.features .feature strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a1a1a; /* Very dark background for maximum contrast */
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700; /* Bolder for better contrast */
    font-size: 1.2rem; /* Slightly larger for better readability */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--white);
    font-size: 16px;
}

.footer-section p a {
    color: var(--white) !important;
    text-decoration: none;
}

.footer-section p a:hover {
    color: var(--primary-color) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 2rem;
    text-align: center;
    color: var(--white);
    font-size: 16px;
}

.footer-bottom p {
    color: var(--white) !important;
    font-size: 16px;
}

.footer-bottom a {
    color: var(--white) !important;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white) !important;
    text-decoration: underline;
}

/* SEO Content Section */
.seo-content-section {
    padding: var(--section-padding);
    background: var(--white);
    border-top: 1px solid #e1e8ed;
}

.seo-content-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-title {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.seo-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
}

.seo-text p {
    margin-bottom: 1rem;
}

.seo-keywords {
    margin-top: 2rem;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.keyword-tag {
    background: #1a472a; /* Very dark green for maximum contrast */
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600; /* Bolder text for better readability */
    white-space: nowrap;
}

/* CTA Section Spacing */
.cta-section {
    padding: var(--section-padding);
    margin-bottom: 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Appointment Page Styles */
.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.appointment-process {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.appointment-form-section {
    padding: var(--section-padding);
    background: var(--white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.appointment-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.2);
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.contact-info {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.phone-link,
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-link {
    background: #25D366;
}

.phone-link:hover,
.whatsapp-link:hover {
    transform: translateY(-2px);
    color: var(--white);
}

/* Detailed Form Styles */
.appointment-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 3rem;
}

.appointment-form-large {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow);
}

.form-section {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.form-section-title i {
    font-size: 1.2rem;
}

.appointment-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    min-height: fit-content;
    flex-shrink: 0;
}

.sidebar-info h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.emergency-contact-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    flex-shrink: 0;
    min-height: fit-content;
}

.emergency-contact-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.emergency-contact-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.btn-full {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-full:last-child {
    margin-bottom: 0;
}

.btn-secondary {
    background: #25D366;
    color: var(--white);
}

.btn-secondary:hover {
    background: #20B85A;
    color: var(--white);
}

/* WordPress Specific Classes */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link {
    left: -9999px;
    position: absolute;
    top: -9999px;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
    z-index: 999999;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
}

/* WordPress Comment Styles */
.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.comment-list {
    list-style: none;
}

.comment-body {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

/* Entry Content Styles */
.entry-content {
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-meta {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Appointment Form Detailed Styling */

.appointment-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-row.triple {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
    cursor: pointer;
}

.submit-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    text-align: center;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Sidebar Styling */
.sidebar-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.emergency-section {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.emergency-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.emergency-section .phone-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.emergency-section .phone-link:hover {
    text-decoration: underline;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-message p {
    margin: 0;
    font-weight: 600;
}
    margin-bottom: 1rem;
}

.entry-meta a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-meta a:hover {
    text-decoration: underline;
}

/* Appointment Page Styles */
.appointment-process {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.appointment-form-section {
    padding: var(--section-padding);
    background: var(--white);
}


.appointment-form {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: var(--primary-color);
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-row {
    grid-template-columns: 1fr 1fr;
}

.form-row.triple {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    line-height: 1.5;
}

.submit-section {
    text-align: center;
    padding-top: 2rem;
}

.submit-section .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.appointment-info-sidebar {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: fit-content;
}

.sidebar-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.emergency-contact-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
}

.emergency-contact-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.emergency-contact-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-full {
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Responsive Design for Appointment Form */
@media (max-width: 768px) {
    .appointment-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row,
    .form-row.triple {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Blog Post Styling */
.article-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 60px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.article-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.article-content {
    padding: var(--section-padding);
    background: var(--white);
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #000000;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: #000000;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.author-bio {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}


.author-bio p {
    color: #4a5568;
}

.share-buttons {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.related-articles {
    margin: 4rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-card {
    display: block;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(44, 95, 45, 0.15);
    border-color: #2c5f2d;
}

.post-navigation {
    margin: 3rem 0;
}

.post-navigation .btn {
    text-align: left;
    padding: 1.5rem;
    height: auto;
}

/* Responsive Blog Design */
@media (max-width: 768px) {
    .article-body {
        padding: 0 1rem;
    }

    .author-bio {
        padding: 2rem;
    }

    .author-bio > div {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation > div {
        grid-template-columns: 1fr;
    }
}

/* Comments Section Styling */
.comments-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.comments-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.comments-title {
    color: #2c5f2d;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.comment-form-wrapper {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.comment-form-note {
    background: #e6f7ff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5f2d;
}

/* WordPress Comment Form Styling */
.comment-form {
    margin-top: 2rem;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 600;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #000000;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #2c5f2d;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.comment-form-comment textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 1.5rem;
}

.form-submit input[type="submit"] {
    background: #2c5f2d;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    background: #1e3f1f;
}

/* Individual Comments */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #2c5f2d;
}

.comment-author {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 1rem;
}

.comment-content {
    color: #000000;
    line-height: 1.6;
}

.comment-content p {
    margin-bottom: 1rem;
}

.reply {
    margin-top: 1rem;
}

.comment-reply-link {
    background: #e2e8f0;
    color: #2c5f2d;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.comment-reply-link:hover {
    background: #cbd5e0;
}

/* Responsive Comments */
@media (max-width: 768px) {
    .comments-wrapper {
        padding: 2rem 1.5rem;
    }

    .comment-form-wrapper {
        padding-top: 2rem;
    }
}

/* Service Page Responsive */
@media (max-width: 768px) {
    .service-page-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .service-image {
        height: 300px !important;
    }

    .service-image img {
        height: 300px !important;
    }

    .service-hero {
        padding: 2rem 0 !important;
    }

    .service-hero h1 {
        font-size: 2rem !important;
    }

    /* Service cards buttons responsive */
    .service-card .btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    /* Footer mobile alignment */
    .footer-content {
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
        list-style: none;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    /* Fix appointment sidebar sticky overlap on mobile */
    .appointment-info-sidebar {
        flex-direction: column;
        gap: 2rem;
    }

    .sidebar-info {
        position: static !important;
        margin-bottom: 0;
    }

    .emergency-contact-box {
        position: static !important;
    }
}