/* ==================== Base Styles ==================== */
:root {
    --primary-color: #a87b51;
    --primary-light: #c8a78e;
    --primary-dark: #8a5d35;
    --secondary-color: #4a4a4a;
    --text-color: #333333;
    --light-text: #ffffff;
    --light-bg: #f9f7f5;
    --dark-bg: #2b2b2b;
    --accent-color: #d6b396;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FF9800;
    --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.15);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --primary-color: #c19a70;
    --primary-light: #e2ccb3;
    --primary-dark: #9c7b58;
    --secondary-color: #a0a0a0;
    --text-color: #e0e0e0;
    --light-text: #ffffff;
    --light-bg: #333333;
    --dark-bg: #1a1a1a;
    --accent-color: #d6b396;
    --border-color: #444444;
}

@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 {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    transition: var(--transition);
}

[data-theme="dark"] body {
    background-color: var(--dark-bg);
    color: var(--text-color);
}

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

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

ul, ol {
    list-style: none;
}

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

button, .btn {
    cursor: pointer;
    font-family: var(--font-primary);
}

/* ==================== Theme Switch ==================== */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .theme-switch-wrapper {
    background-color: rgba(42, 42, 42, 0.95);
}

.theme-switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 48px;
    margin-right: 10px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--transition);
}

.slider:before {
    background-color: white;
    bottom: 4px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: var(--transition);
    width: 16px;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    font-size: 0.8rem;
    color: var(--text-color);
}

/* ==================== Header Styles ==================== */
header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition);
}

[data-theme="dark"] header {
    background-color: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

header h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.5rem 0;
}

nav a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    position: relative;
    padding: 0.5rem 0;
}

[data-theme="dark"] nav a {
    color: var(--light-text);
}

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

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

nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== Button Styles ==================== */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Button hover light effect */
.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.65s;
}

.btn:hover:before {
    left: 100%;
}

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

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

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

/* Cookie consent buttons */
.btn-accept {
    background-color: var(--success-color);
}

.btn-accept:hover {
    background-color: #3d8b40;
}

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

.btn-customize:hover {
    background-color: #e68900;
}

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

.btn-decline:hover {
    background-color: #d32f2f;
}

/* ==================== Home Page Styles ==================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-dark);
}

[data-theme="dark"] .hero-content h2 {
    color: var(--primary-light);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-height: 500px;
    object-fit: cover;
}

/* Featured Posts Section */
.featured-posts, .services-preview, .testimonials {
    padding: 4rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

section h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

[data-theme="dark"] section h2 {
    color: var(--primary-light);
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.post-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

[data-theme="dark"] .post-card {
    background: var(--light-bg);
}

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

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

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-family: var(--font-secondary);
}

[data-theme="dark"] .post-content h3 {
    color: var(--primary-light);
}

.post-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 8px;
}

/* Services Preview Section */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .service-card {
    background: var(--light-bg);
}

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

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

.service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .service-card h3 {
    color: var(--primary-light);
}

/* Testimonials Section */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin: 1rem;
}

[data-theme="dark"] .testimonial {
    background-color: var(--light-bg);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 20px;
}

.quote:before, .quote:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
}

.quote:before {
    left: -10px;
    top: -10px;
}

.quote:after {
    right: -10px;
    bottom: -20px;
}

.client {
    font-weight: 600;
    color: var(--primary-color);
}

/* ==================== Blog Page Styles ==================== */
.page-header {
    background-color: var(--primary-light);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 3rem;
}

[data-theme="dark"] .page-header {
    background-color: var(--primary-dark);
}

.page-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.blog-posts .post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-posts .post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-posts .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

[data-theme="dark"] .blog-posts .post-meta {
    color: var(--light-text);
}

.blog-posts .read-more {
    margin-top: auto;
}

/* ==================== Blog Post Styles ==================== */
.blog-post {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .post-header h2 {
    color: var(--primary-light);
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

[data-theme="dark"] .post-meta {
    color: var(--light-text);
}

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

.post-featured-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.7;
}

.post-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .post-content h3 {
    color: var(--primary-light);
}

.post-content h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .post-content h4 {
    color: var(--primary-light);
}

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

.post-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}

[data-theme="dark"] .post-content strong {
    color: var(--primary-light);
}

.post-content ul, .post-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 0.5rem;
    position: relative;
}

.post-content ul li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

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

.post-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 3rem 0 2rem;
}

.tag-label {
    font-weight: 600;
    margin-right: 1rem;
}

.tag {
    background-color: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.post-share {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.share-buttons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    transition: var(--transition);
}

[data-theme="dark"] .share-buttons a {
    background-color: var(--secondary-color);
}

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

.share-buttons svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
    transition: var(--transition);
}

[data-theme="dark"] .share-buttons svg {
    color: var(--light-text);
}

.share-buttons a:hover svg {
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.prev-post, .next-post {
    max-width: 45%;
}

.nav-link {
    display: block;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

[data-theme="dark"] .nav-link {
    background-color: var(--light-bg);
}

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

.nav-direction {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.nav-title {
    font-size: 0.95rem;
}

.related-posts {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.related-posts h3 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .related-posts h3 {
    color: var(--primary-light);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .related-card {
    background: var(--light-bg);
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-content {
    padding: 1rem;
}

.related-content h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

/* ==================== Services Page Styles ==================== */
.services-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.services-intro-content {
    flex: 1;
}

.services-intro-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .services-intro-content h3 {
    color: var(--primary-light);
}

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

.services-intro-image {
    flex: 1;
}

.services-intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.services-list {
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

.service-category h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

[data-theme="dark"] .service-category h3 {
    color: var(--primary-light);
    border-bottom-color: var(--primary-dark);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .service-item {
    background-color: var(--light-bg);
}

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

.service-details {
    flex: 1;
}

.service-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .service-details h4 {
    color: var(--primary-light);
}

.service-details p {
    font-size: 0.95rem;
}

.service-price {
    min-width: 80px;
    text-align: right;
}

.service-price span {
    font-weight: 600;
    color: var(--primary-color);
}

.booking-info {
    background-color: var(--primary-light);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

[data-theme="dark"] .booking-info {
    background-color: var(--primary-dark);
}

.booking-content {
    max-width: 700px;
    margin: 0 auto;
}

.booking-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

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

/* ==================== About Page Styles ==================== */
.about-story {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .about-content h3 {
    color: var(--primary-light);
}

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.our-values {
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.our-values h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .our-values h3 {
    color: var(--primary-light);
}

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

.value-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .value-card {
    background: var(--light-bg);
}

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

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

.value-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .value-card h4 {
    color: var(--primary-light);
}

.team-section {
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.team-section h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .team-section h3 {
    color: var(--primary-light);
}

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

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .team-card {
    background: var(--light-bg);
}

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

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

.team-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.3rem;
}

.team-card p {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.certifications {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
    text-align: center;
}

[data-theme="dark"] .certifications {
    background-color: var(--dark-bg);
}

.certifications h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .certifications h3 {
    color: var(--primary-light);
}

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

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

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-logo {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .cert-logo {
    background: var(--light-bg);
}

.cert-logo img {
    height: 60px;
}

.cta-section {
    background-color: var(--primary-light);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

[data-theme="dark"] .cta-section {
    background-color: var(--primary-dark);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

/* ==================== Contact Page Styles ==================== */
.contact-info-section {
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .contact-card {
    background: var(--light-bg);
}

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

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

.contact-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .contact-card h3 {
    color: var(--primary-light);
}

.contact-card p, .contact-card a {
    font-size: 0.95rem;
}

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

.contact-form-section {
    max-width: var(--container-width);
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.contact-form-container {
    display: flex;
    gap: 3rem;
}

.contact-form-content {
    flex: 3;
}

.contact-form-content h3, .contact-map h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .contact-form-content h3, 
[data-theme="dark"] .contact-map h3 {
    color: var(--primary-light);
}

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

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    transition: var(--transition);
}

[data-theme="dark"] .form-group input, 
[data-theme="dark"] .form-group select, 
[data-theme="dark"] .form-group textarea {
    background-color: var(--light-bg);
    color: var(--text-color);
    border-color: var(--border-color);
}

.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(168, 123, 81, 0.25);
}

.contact-map {
    flex: 2;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

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

[data-theme="dark"] .modal-content {
    background-color: var(--light-bg);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin: 1rem 0;
    color: var(--primary-dark);
}

[data-theme="dark"] .thank-you-message h3 {
    color: var(--primary-light);
}

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

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success-color);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--success-color);
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* ==================== Footer Styles ==================== */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

[data-theme="dark"] footer {
    background-color: #1a1a1a;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-light);
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a, .footer-legal a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

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

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

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

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

.social-icons svg {
    width: 18px;
    height: 18px;
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

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

[data-theme="dark"] .cookie-consent {
    background-color: var(--light-bg);
}

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

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

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

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

.cookie-policy a {
    text-decoration: underline;
}

/* ==================== Responsive Styles ==================== */
@media screen and (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero, .about-story, .services-intro {
        flex-direction: column;
    }
    
    .hero-content, .about-content, .services-intro-content,
    .hero-image, .about-image, .services-intro-image {
        width: 100%;
    }
    
    .contact-form-container {
        flex-direction: column;
    }
    
    .service-items {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    header {
        padding: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }
    
    .blog-posts {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .values-grid, .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .post-grid, .services-grid, .blog-posts,
    .contact-grid, .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .post-meta, .post-navigation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero, .post-grid, .services-grid {
    animation: fadeIn 1s ease-in-out;
}

/* Custom cursor for clickable elements */
.btn, a, button, .theme-switch {
    cursor: pointer;
}
