/* Base Styles */
:root {
    --primary-color: #d86f73;
    --secondary-color: #8a4d4f;
    --accent-color: #f9cfd0;
    --dark-color: #333333;
    --light-color: #f8f8f8;
    --text-color: #444444;
    --link-color: #d86f73;
    --link-hover-color: #b25a5d;
    --gray-light: #e8e8e8;
    --gray-medium: #c5c5c5;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    font-size: 16px;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--link-hover-color);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn, button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn:hover, button:hover {
    background-color: var(--link-hover-color);
    transform: translateY(-2px);
}

.btn.secondary, button.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn.secondary:hover, button.secondary:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

section {
    padding: 5rem 0;
}

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

.section-header h2 {
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-color);
    max-width: 700px;
    margin: 1rem auto 0;
}

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

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

.text-muted {
    color: #777;
    font-size: 0.9rem;
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

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

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 1.5rem;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius-medium);
    transition: all var(--transition-fast);
    display: inline-block;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: var(--link-hover-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.services-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/services-banner.jpg');
}

.about-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/about-banner.jpg');
}

.contact-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/contact-banner.jpg');
}

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

.page-banner-content p {
    font-size: 1.2rem;
}

/* Featured Posts Section */
.featured-posts {
    background-color: var(--light-color);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.post-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.post-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.post-content p {
    color: var(--text-color);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all-button {
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-medium);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.view-all-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Services Preview Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--accent-color);
    padding: 5rem 0;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    box-shadow: var(--shadow-small);
    margin: 0 0.5rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.testimonial-content p::before, .testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-content p::before {
    left: -5px;
    top: -5px;
}

.testimonial-content p::after {
    right: -5px;
    bottom: -15px;
}

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

.client-info h4 {
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.client-info span {
    color: #777;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    color: white;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

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

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

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: var(--border-radius-small);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-weight: 500;
}

.newsletter-form button:hover {
    background-color: var(--link-hover-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.9rem;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #ddd;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

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

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

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

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.cookie-buttons button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-weight: 500;
}

#accept-cookies {
    background-color: var(--primary-color);
    color: white;
}

#customize-cookies {
    background-color: white;
    color: var(--dark-color);
}

#decline-cookies {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-more-info {
    font-size: 0.9rem;
    color: #ccc;
}

.cookie-more-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Tooltip */
.tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 10;
    box-shadow: var(--shadow-small);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent transparent;
}

/* NEW Tag */
.new-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-small);
    text-transform: uppercase;
    z-index: 5;
}

.new-tag.large {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
}

/* Blog Page Styles */
.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.blog-search {
    margin-bottom: 2rem;
}

.blog-search form {
    display: flex;
}

.blog-search input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--gray-medium);
    border-right: none;
    border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.blog-search button {
    padding: 0.8rem 1.2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
    cursor: pointer;
}

.blog-categories {
    margin-bottom: 2.5rem;
}

.blog-categories h3 {
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.blog-categories h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.blog-categories ul li {
    margin-bottom: 0.8rem;
}

.blog-categories ul li a {
    color: var(--text-color);
    transition: color var(--transition-fast);
}

.blog-categories ul li a:hover {
    color: var(--primary-color);
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

.blog-post:last-child {
    margin-bottom: 0;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #777;
}

.post-category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-small);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.popular-posts ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popular-posts ul li:last-child {
    margin-bottom: 0;
}

.popular-posts ul li img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
}

.popular-posts h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.popular-posts span {
    font-size: 0.85rem;
    color: #777;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-small);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: white;
}

.sidebar-widget.newsletter {
    background-color: var(--accent-color);
}

.sidebar-widget.newsletter h3::after {
    background-color: white;
}

.sidebar-widget .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-widget .newsletter-form input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: var(--border-radius-small);
}

.sidebar-widget .newsletter-form button {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-weight: 500;
}

/* Services Page Styles */
.services-intro {
    background-color: var(--light-color);
}

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

.service-category {
    margin-bottom: 5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.service-category h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
}

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

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

.service-details h3 {
    margin-bottom: 0.8rem;
}

.service-details p {
    color: var(--text-color);
    margin-bottom: 0;
}

.pricing-info {
    background-color: var(--accent-color);
    text-align: center;
}

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

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

.booking-methods {
    margin: 1.5rem 0 2rem;
}

.booking-methods li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.booking-methods li i {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.booking-image img {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
}

.our-mission {
    background-color: var(--light-color);
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-fast);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 1.2rem;
}

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

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

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-fast);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.2rem 0 0.3rem;
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 1.2rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-color);
    border-radius: 50%;
    transition: all var(--transition-fast);
    color: var(--text-color);
}

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

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

.credential {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-small);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-medium);
    transition: transform var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.cta-section {
    background-color: var(--accent-color);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.info-items {
    margin-top: 2rem;
}

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

.info-icon {
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

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

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

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group .required {
    color: var(--error-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius-small);
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.submit-button:hover {
    background-color: var(--link-hover-color);
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-small);
}

.faq-section {
    background-color: var(--light-color);
}

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

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

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

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

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

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

.thank-you-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
}

.close-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    cursor: pointer;
}

/* Blog Post Page Styles */
.blog-post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.blog-post-content {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

.post-header {
    padding: 2rem 2rem 0;
    position: relative;
}

.post-header h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.3;
}

.post-featured-image {
    margin: 0 -2rem 2rem;
}

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

.post-body {
    padding: 0 2rem 2rem;
}

.post-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-body ul {
    list-style-type: disc;
}

.post-body ol {
    list-style-type: decimal;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.author-bio {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    margin: 3rem 0;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

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

.author-info h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.author-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.post-tags span {
    font-weight: 500;
}

.post-tags a {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-small);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.share-post {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.share-post span {
    margin-right: 1rem;
    font-weight: 500;
}

.share-links {
    display: flex;
    gap: 0.8rem;
}

.share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-color);
    border-radius: 50%;
    transition: all var(--transition-fast);
    color: var(--text-color);
}

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

.sidebar-widget.about-author {
    text-align: center;
}

.author-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.author-card h4 {
    margin-bottom: 0.3rem;
}

.author-card p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: var(--border-radius-small);
    transition: background-color var(--transition-fast);
}

.related-post:hover {
    background-color: var(--light-color);
}

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
}

.related-post-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.related-post-info span {
    font-size: 0.85rem;
    color: #777;
}

.sidebar-widget.services-promo {
    background-color: var(--accent-color);
    text-align: center;
}

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

.view-services-btn, .book-now-btn {
    display: block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.view-services-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

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

.book-now-btn:hover {
    background-color: var(--link-hover-color);
}

.comments-section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

.comments-list {
    margin-top: 2rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment.reply {
    margin-left: 5rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.comment-header h4 {
    margin-bottom: 0;
}

.comment-date {
    color: #777;
    font-size: 0.9rem;
}

.comment-actions {
    margin-top: 1rem;
}

.reply-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.reply-btn:hover {
    text-decoration: underline;
}

.comment-form {
    margin-top: 3rem;
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    box-shadow: var(--shadow-small);
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

.submit-comment {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.submit-comment:hover {
    background-color: var(--link-hover-color);
}

.post-navigation {
    background-color: var(--light-color);
    padding: 3rem 0;
}

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

.post-nav-prev, .post-nav-next {
    display: flex;
    flex-direction: column;
    max-width: 45%;
}

.post-nav-next {
    text-align: right;
}

.nav-label {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-nav-prev .nav-label i {
    margin-right: 0.5rem;
}

.post-nav-next .nav-label i {
    margin-left: 0.5rem;
}

.nav-title {
    font-weight: 500;
    color: var(--dark-color);
    transition: color var(--transition-fast);
}

.post-nav-prev:hover .nav-title, .post-nav-next:hover .nav-title {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container, .header-container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .post-grid, .services-grid, .values-grid, .team-grid, .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-content, .blog-post-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .about-content, .booking-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .post-grid, .services-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .post-nav-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .post-nav-prev, .post-nav-next {
        max-width: 100%;
    }
    
    .post-nav-next {
        text-align: left;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .comment {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comment.reply {
        margin-left: 2rem;
    }
}
