/* Main Stylesheet for Balance Zone Website */

/* === Base Styles === */
:root {
    --primary-color: #d68c8c;
    --primary-dark: #b67070;
    --primary-light: #f8e3e3;
    --secondary-color: #706e8c;
    --secondary-dark: #5a5873;
    --secondary-light: #d3d2e0;
    --neutral-dark: #333333;
    --neutral-medium: #777777;
    --neutral-light: #f5f5f5;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.14);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--neutral-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
    margin: 1rem 0;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-2px);
}

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

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

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

.btn.secondary:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.btn.tertiary {
    background-color: transparent;
    color: var(--neutral-medium);
    border: 1px solid var(--neutral-medium);
}

.btn.tertiary:hover {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.view-all {
    font-weight: 500;
}

/* === Header & Navigation === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--neutral-dark);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
}

nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
}

nav li {
    list-style-type: none;
}

nav a {
    color: var(--neutral-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

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

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

nav a:hover:after, nav a.active:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-dark);
}

/* === Hero Section === */
.hero {
    padding: 5rem 0;
    background-color: var(--primary-light);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--neutral-medium);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 400px;
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* === What You'll Learn Section === */
.what-youll-learn {
    padding: 5rem 0;
    background-color: white;
}

.what-youll-learn h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature p {
    color: var(--neutral-medium);
}

/* === Latest Posts Section === */
.latest-posts {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.post {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 0.5rem;
}

.post-content h3 a {
    color: var(--neutral-dark);
    transition: color var(--transition-normal);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.date {
    color: var(--neutral-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 500;
    position: relative;
}

.read-more:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.read-more:hover:after {
    width: 100%;
}

/* === Next Article Countdown === */
.next-article-countdown {
    margin-top: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.next-article-countdown h3 {
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    color: var(--neutral-medium);
    margin-top: 0.5rem;
}

/* === Services Preview === */
.services-preview {
    padding: 5rem 0;
    background-color: white;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.service p {
    margin-bottom: 1.5rem;
    color: var(--neutral-medium);
}

/* === Testimonials === */
.testimonials {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding-bottom: 2rem;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: var(--neutral-light);
    border-radius: 20px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 20px;
    border: 3px solid var(--neutral-light);
}

.testimonial {
    flex: 0 0 calc(100% - 4rem);
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client {
    display: flex;
    align-items: center;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.client-info h4 {
    margin-bottom: 0.25rem;
}

.client-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

/* === Call to Action === */
.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

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

.cta p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* === Footer === */
footer {
    background-color: var(--neutral-dark);
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.company-info {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style-type: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ccc;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: white;
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
}

.footer-contact address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.footer-contact address p {
    margin-bottom: 0.75rem;
    color: #ccc;
}

.footer-contact address i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color var(--transition-normal);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* === Cookie Consent === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem 0;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
}

.cookie-content p {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-policy {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* === Page Hero Sections === */
.page-hero {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--primary-light);
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

.page-hero p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--neutral-medium);
}

.blog-hero {
    background-color: var(--secondary-light);
}

.services-hero {
    background-color: var(--primary-light);
}

.about-hero {
    background-color: var(--neutral-light);
}

.contact-hero {
    background-color: var(--secondary-light);
}

/* === Blog Categories === */
.blog-categories {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid var(--neutral-light);
}

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

.category {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    color: var(--neutral-medium);
    font-weight: 500;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

.category:hover, .category.active {
    background-color: var(--primary-color);
    color: white;
}

/* === Blog Posts Full Grid === */
.blog-posts {
    padding: 5rem 0;
    background-color: white;
}

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

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

.featured-post .post-image img {
    height: 100%;
}

.post-category {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.mini-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* === Newsletter === */
.newsletter {
    padding: 5rem 0;
    background-color: var(--primary-light);
}

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

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--neutral-medium);
    margin-bottom: 0;
}

/* === Our Approach === */
.our-approach {
    padding: 5rem 0;
    background-color: white;
}

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

.approach-text h2 {
    margin-bottom: 1.5rem;
}

.approach-text p {
    margin-bottom: 1.5rem;
}

.approach-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.approach-features .feature {
    padding: 1rem;
    display: flex;
    align-items: center;
    text-align: left;
}

.approach-features .feature i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-bottom: 0;
}

.approach-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* === Services List === */
.services-list {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.services-list h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-item.reverse .service-image {
    order: 2;
}

.service-item.reverse .service-content {
    order: 1;
}

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

.service-content {
    padding: 3rem;
}

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

.service-content p {
    margin-bottom: 1.5rem;
}

.service-content h4 {
    margin: 2rem 0 1rem;
}

.service-content ul {
    margin-bottom: 2rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--neutral-light);
}

.service-price span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* === Service Packages === */
.service-packages {
    padding: 5rem 0;
    background-color: white;
}

.service-packages h2, .section-intro {
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--neutral-medium);
}

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

.package {
    border: 1px solid var(--neutral-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.package.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.package.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom-left-radius: var(--border-radius-sm);
}

.package-header {
    background-color: var(--neutral-light);
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.save {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.package-content {
    padding: 2rem;
}

.package-content ul {
    margin-bottom: 2rem;
    list-style-type: none;
}

.package-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-light);
}

.package-content li i {
    margin-right: 0.5rem;
}

.package-content li .fa-check {
    color: var(--success-color);
}

.package-content li .fa-times {
    color: var(--error-color);
}

.package-content .btn {
    width: 100%;
}

/* === FAQ Section === */
.faq {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

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

.faq-item p {
    margin-bottom: 0;
}

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

.faq-cta p {
    margin-bottom: 1rem;
}

/* === Our Story === */
.our-story {
    padding: 5rem 0;
    background-color: white;
}

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

.story-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat .label {
    color: var(--neutral-medium);
}

/* === Our Values === */
.our-values {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.value:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value h3 {
    margin-bottom: 1rem;
}

.value p {
    color: var(--neutral-medium);
    margin-bottom: 0;
}

/* === Team Section === */
.team-section {
    padding: 5rem 0;
    background-color: white;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-section .section-intro {
    margin-bottom: 3rem;
}

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

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

.member-image {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--neutral-medium);
    margin-bottom: 1rem;
}

.team-member p:nth-child(3) {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-medium);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* === Our Process === */
.our-process {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.our-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

/* === Certifications === */
.certifications {
    padding: 5rem 0;
    background-color: white;
}

.certifications h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.certification-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.logo {
    text-align: center;
}

.logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1rem;
    filter: grayscale(100%);
    transition: filter var(--transition-normal);
}

.logo:hover img {
    filter: grayscale(0);
}

.logo span {
    display: block;
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

/* === Contact Section === */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

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

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

.contact-info > p {
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-content h3 {
    margin-bottom: 0.5rem;
}

.info-content p {
    margin-bottom: 0.25rem;
}

.info-content .note {
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

.social-contact {
    margin-top: 2.5rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
}

.contact-form-container {
    background-color: var(--neutral-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
}

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

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

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
}

.form-group textarea {
    resize: vertical;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
}

.consent-checkbox input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.consent-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

/* === Map Section === */
.map-section {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    max-width: 400px;
}

.map-info h3 {
    margin-bottom: 1.5rem;
}

.map-info p {
    margin-bottom: 0.75rem;
}

.map-info p i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.map-info .btn {
    margin-top: 1rem;
}

/* === Contact FAQ === */
.contact-faq {
    padding: 5rem 0;
    background-color: white;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* === Modal === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-medium);
}

.modal-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 2rem;
}

/* === Blog Post === */
.blog-post {
    padding: 5rem 0;
    background-color: white;
}

.post-header {
    margin-bottom: 3rem;
}

.post-meta {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.post-author {
    color: var(--neutral-medium);
}

.post-header h1 {
    margin-bottom: 2rem;
}

.post-featured-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.post-section {
    margin-bottom: 3rem;
}

.post-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.post-section h3 {
    margin: 2rem 0 1rem;
    color: var(--neutral-dark);
}

.post-conclusion {
    margin-bottom: 3rem;
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
}

.post-conclusion h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.author-bio {
    display: flex;
    align-items: center;
    padding: 2rem;
    background-color: var(--primary-light);
    border-radius: var(--border-radius-md);
    margin-bottom: 3rem;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 2rem;
}

.author-info h3 {
    margin-bottom: 0.5rem;
}

.author-info p {
    margin-bottom: 0;
}

.post-navigation {
    margin-bottom: 3rem;
}

.post-nav-btns {
    display: flex;
    justify-content: space-between;
}

.related-posts h2 {
    margin-bottom: 2rem;
}

/* === Responsive Styles === */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post .post-image img {
        height: 300px;
    }
    
    .approach-content,
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-item.reverse .service-image {
        order: 1;
    }
    
    .service-item.reverse .service-content {
        order: 2;
    }
    
    .service-image img {
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .testimonial {
        flex: 0 0 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio img {
        margin: 0 auto 1.5rem;
    }
    
    .post-nav-btns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-nav-btns .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
