/* Base Styles and Typography */
:root {
    --primary-color: #d8a469;
    --primary-dark: #b58443;
    --secondary-color: #4a5568;
    --light-color: #f8f9fa;
    --dark-color: #2d3748;
    --text-color: #333333;
    --light-text: #718096;
    --border-color: #e2e8f0;
    --accent-color: #9c4668;
    --success-color: #48bb78;
    --error-color: #e53e3e;
    --warning-color: #ed8936;
    --background-color: #ffffff;
    --section-bg: #f7f7f7;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

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

header h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--dark-color);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding-bottom: 0.25rem;
    position: relative;
}

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

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    background-color: var(--light-color);
    margin-top: 4rem;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.hero-image {
    flex: 1;
    text-align: right;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.btn.centered {
    margin: 2rem auto 0;
    display: block;
    max-width: max-content;
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1rem;
}

/* Countdown Section */
.countdown-container {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 3rem 1rem;
}

.countdown-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

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

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

.time-segment span {
    display: block;
}

.time-segment span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: var(--primary-color);
}

/* Featured Posts Section */
.featured-posts {
    padding: 4rem 5%;
    background-color: var(--background-color);
}

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

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

.post-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.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;
}

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

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

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:after {
    content: "→";
    margin-left: 0.3rem;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 0.5rem;
}

/* Services Overview */
.services-overview {
    padding: 4rem 5%;
    background-color: var(--section-bg);
}

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

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

.service-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--light-text);
}

/* Testimonials */
.testimonials {
    padding: 4rem 5%;
    background-color: var(--background-color);
}

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

.testimonial-slider {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

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

.testimonial-content:before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: rgba(0,0,0,0.1);
}

.testimonial-content p {
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

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

.client-name {
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 5% 2rem;
}

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

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

.footer-logo h3 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--light-color);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-links h4:after,
.footer-contact h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links ul li a {
    color: var(--light-text);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.footer-contact svg {
    margin-right: 0.5rem;
}

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

.social-icons 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: var(--transition);
}

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

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

.footer-legal {
    margin-bottom: 1rem;
}

.footer-legal a {
    color: var(--light-text);
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 1rem;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.btn-cookie {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

.btn-cookie.customize {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-cookie.reject {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.btn-cookie:hover {
    opacity: 0.9;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 8rem 1rem 4rem;
    margin-top: 4rem;
}

.page-header h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
}

/* Blog Styles */
.blog-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.blog-post-card {
    display: flex;
    margin-bottom: 3rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.blog-post-image {
    flex: 1;
    min-width: 300px;
}

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

.blog-post-content {
    flex: 2;
    padding: 2rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Individual Blog Post */
.blog-post {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

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

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.blog-post-content p.lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.post-tags {
    margin: 3rem 0;
}

.post-tags span {
    font-weight: 600;
    margin-right: 0.5rem;
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
}

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

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

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

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

.author-info p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

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

.share-post h4 {
    margin-bottom: 1rem;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

.related-posts {
    margin-top: 4rem;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
}

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

.related-post {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.related-post h4 {
    padding: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.related-post h4 a {
    color: var(--dark-color);
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

/* Services Page */
.services-intro {
    padding: 4rem 5%;
    background-color: var(--background-color);
}

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

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

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

.services-intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.services-list {
    padding: 4rem 5%;
    background-color: var(--section-bg);
}

.service-item {
    display: flex;
    margin-bottom: 4rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.service-content {
    flex: 2;
    padding: 2rem;
}

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

.service-content h4 {
    margin: 1.5rem 0 0.5rem;
}

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

.service-content strong {
    color: var(--dark-color);
}

.service-packages {
    padding: 4rem 5%;
    background-color: var(--background-color);
    text-align: center;
}

.service-packages h2 {
    margin-bottom: 1rem;
}

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

.packages-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.package-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.package-card.featured:before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    border-bottom-left-radius: var(--border-radius);
}

.package-header {
    background-color: var(--dark-color);
    color: white;
    padding: 1.5rem;
}

.package-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.8rem;
    font-weight: bold;
}

.package-content {
    padding: 1.5rem;
    text-align: left;
}

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

.package-content ul {
    margin-bottom: 1.5rem;
}

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

.package-savings {
    font-weight: 600;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.process-section {
    padding: 4rem 5%;
    background-color: var(--section-bg);
    text-align: center;
}

.process-section h2 {
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 250px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.process-step h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--light-text);
    margin-bottom: 0;
}

.testimonials-section {
    padding: 4rem 5%;
    background-color: var(--background-color);
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 3rem;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--card-shadow);
}

.testimonial-content {
    position: relative;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content:before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(0,0,0,0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

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

.author-details h4 {
    margin-bottom: 0.2rem;
}

.author-details p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.faq-section {
    padding: 4rem 5%;
    background-color: var(--section-bg);
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    box-shadow: var(--card-shadow);
}

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

.faq-item p {
    color: var(--light-text);
    margin-bottom: 0;
}

.cta-section {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    text-align: center;
}

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

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

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

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

/* About Page */
.about-story {
    padding: 4rem 5%;
    background-color: var(--background-color);
}

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

.about-content {
    flex: 3;
}

.about-image {
    flex: 2;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.mission-section {
    padding: 4rem 5%;
    background-color: var(--section-bg);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content h2 {
    margin-bottom: 1.5rem;
}

.mission-content p {
    max-width: 800px;
    margin-bottom: 2rem;
}

.mission-content h3 {
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    margin: 0;
}

.values-list li {
    display: flex;
    margin-bottom: 2rem;
}

.value-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--primary-color);
}

.value-content {
    flex: 1;
}

.value-content h4 {
    margin-bottom: 0.5rem;
}

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

.team-section {
    padding: 4rem 5%;
    background-color: var(--background-color);
    text-align: center;
}

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

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

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
}

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

.team-member h3 {
    margin: 1.5rem 0 0.2rem;
}

.team-member p {
    color: var(--light-text);
    padding: 0 1.5rem;
    margin-bottom: 0.8rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.credentials-section {
    padding: 4rem 5%;
    background-color: var(--section-bg);
    text-align: center;
}

.credentials-section h2 {
    margin-bottom: 3rem;
}

.credentials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.credential {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.credential-icon {
    flex: 0 0 60px;
    color: var(--primary-color);
    margin-right: 1rem;
}

.credential-content h3 {
    margin-bottom: 0.8rem;
}

.credential-content p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* Contact Page */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

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

.contact-method {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    flex: 0 0 40px;
    color: var(--primary-color);
    margin-right: 1rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

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

.contact-hours {
    font-size: 0.9rem;
}

.social-links a {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.location-map {
    margin-top: 3rem;
}

.location-map h4 {
    margin-bottom: 1rem;
}

.map-container {
    position: relative;
}

.map-image {
    width: 100%;
    border-radius: var(--border-radius);
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
}

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

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

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

.form-group {
    width: calc(50% - 0.75rem);
}

.form-group.full-width {
    width: 100%;
}

.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;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(216, 164, 105, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--light-text);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #f0f0f0;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--primary-color);
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: var(--background-color);
    margin: 15% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--dark-color);
}

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

.modal-body svg {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.modal-body h3 {
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 1.5rem;
}

.close-btn {
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .services-intro .container {
        flex-direction: column;
    }
    
    .service-item, .service-item.reverse {
        flex-direction: column;
    }
    
    .service-image {
        min-width: 100%;
        max-height: 300px;
    }
    
    .about-story .container {
        flex-direction: column;
    }
    
    .about-content {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem 5% 0.5rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1rem 0.5rem;
    }
    
    .blog-post-card {
        flex-direction: column;
    }
    
    .blog-post-image {
        min-width: 100%;
        max-height: 300px;
    }
    
    #countdown {
        gap: 1rem;
    }
    
    .time-segment span:first-child {
        font-size: 2rem;
    }
    
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
    }
    
    .footer-logo img {
        margin: 0 auto 1rem;
    }
    
    .footer-links h4:after,
    .footer-contact h4:after,
    .footer-social h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 50px;
        height: 50px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
    
    .posts-grid, .services-grid, .team-grid, .credentials-container {
        grid-template-columns: 1fr;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
