/* Global Styles */
:root {
    --primary-color: #d5538b;
    --primary-dark: #b7416f;
    --primary-light: #f5b0c9;
    --secondary-color: #313963;
    --secondary-dark: #232945;
    --secondary-light: #4e5980;
    --accent-color: #8ac0de;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-alt: #f9f5f7;
    --border-color: #e5e5e5;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

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

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

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

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

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

.logo-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

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 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/13.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5rem 5%;
    background-color: var(--background-alt);
}

.feature {
    flex-basis: calc(33.333% - 2rem);
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

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

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

/* Quote from the Future Section */
.quote-future {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

.quote-future h2 {
    color: white;
    margin-bottom: 2rem;
}

.quote-future blockquote {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.quote-future cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

/* Tip of the Day Section */
.tip-of-day {
    padding: 3rem 5%;
    background-color: var(--background-alt);
    text-align: center;
}

.tip-of-day h2 {
    margin-bottom: 2rem;
}

.tip-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tip-content svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Recent Posts Section */
.recent-posts {
    padding: 5rem 5%;
}

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

.post-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.post-card {
    flex-basis: calc(33.333% - 2rem);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-10px);
}

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

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

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

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: var(--background-alt);
    text-align: center;
}

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

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

.testimonial {
    flex-basis: calc(50% - 2rem);
    max-width: 500px;
}

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

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author p {
    margin-bottom: 0.2rem;
    font-style: normal;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
    flex-basis: calc(25% - 2rem);
    margin-bottom: 2rem;
}

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

.footer-logo h3, .footer-links h3, .footer-contact h3, .footer-social h3 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.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%;
    color: white;
    transition: var(--transition);
}

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

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

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

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 1rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-dark);
    color: white;
    padding: 1rem;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: white;
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 5%;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

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

/* Blog Page Styles */
.blog-posts {
    padding: 5rem 5%;
}

.blog-post {
    margin-bottom: 4rem;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.post-image {
    height: 400px;
}

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

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

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

.post-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-post h3 {
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

/* Services Page Styles */
.services-intro {
    padding: 3rem 5%;
    text-align: center;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-list {
    padding: 3rem 5%;
}

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

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

.service-image {
    flex-basis: 40%;
}

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

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

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

.service-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

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

.pricing h2 {
    margin-bottom: 3rem;
}

.pricing-table {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-column {
    flex-basis: calc(33.333% - 2rem);
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.pricing-column h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-note {
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.testimonial-card {
    flex-basis: calc(50% - 2rem);
    max-width: 500px;
}

.quote-icon {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

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

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

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

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

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

/* About Page Styles */
.about-intro {
    padding: 4rem 5%;
}

.about-intro .container {
    display: flex;
    gap: 3rem;
}

.about-content {
    flex-basis: 60%;
}

.about-image {
    flex-basis: 40%;
}

.about-image img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    margin-top: 2rem;
}

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex-basis: calc(33.333% - 2rem);
    max-width: 350px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

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

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--background-alt);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.credentials {
    padding: 5rem 5%;
}

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

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.credential-item {
    flex-basis: calc(50% - 2rem);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.credential-icon {
    color: var(--primary-color);
}

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

/* Contact Page Styles */
.contact-section {
    padding: 5rem 5%;
}

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

.contact-info {
    flex-basis: 40%;
}

.contact-form-container {
    flex-basis: 60%;
}

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

.info-icon {
    color: var(--primary-color);
}

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

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

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

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item {
    flex-basis: calc(50% - 1rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.consent-checkbox input {
    margin-top: 0.3rem;
}

.map-section {
    padding: 3rem 5%;
    background-color: var(--background-alt);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 2rem;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-note {
    margin-top: 1rem;
    color: var(--text-light);
}

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

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

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

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .feature {
        flex-basis: calc(50% - 2rem);
        margin-bottom: 2rem;
    }
    
    .post-card {
        flex-basis: calc(50% - 2rem);
        margin-bottom: 2rem;
    }
    
    .footer-logo, .footer-links, .footer-contact, .footer-social {
        flex-basis: calc(50% - 2rem);
    }
    
    .service-item, .service-item.reverse {
        flex-direction: column;
    }
    
    .service-image, .service-content {
        flex-basis: 100%;
    }
    
    .service-image {
        height: 300px;
    }
    
    .pricing-column {
        flex-basis: calc(50% - 2rem);
        margin-bottom: 2rem;
    }
    
    .team-member {
        flex-basis: calc(50% - 2rem);
    }
    
    .credential-item {
        flex-basis: 100%;
    }
    
    .about-intro .container {
        flex-direction: column;
    }
    
    .about-content, .about-image {
        flex-basis: 100%;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .feature, .post-card {
        flex-basis: 100%;
    }
    
    .testimonial {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
    
    .pricing-column {
        flex-basis: 100%;
    }
    
    .team-member {
        flex-basis: 100%;
    }
    
    .testimonial-card {
        flex-basis: 100%;
    }
    
    .checkbox-item {
        flex-basis: 100%;
    }
}
