/* Global Styles */
:root {
    --primary-color: #e5a9b2;
    --primary-dark: #c48996;
    --primary-light: #f8d7dc;
    --secondary-color: #6c4a54;
    --accent-color: #d46487;
    --text-color: #333;
    --text-light: #777;
    --background-color: #fff;
    --background-alt: #f9f5f6;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 6px;
    --transition-speed: 0.3s;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* Font Imports */
@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');

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.6rem;
}

.slogan {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Buttons */
.btn, 
button[type="submit"] {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
}

.btn:hover, 
button[type="submit"]:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-small {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn-large {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

.read-more {
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
    padding-right: 1.5rem;
}

.read-more::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-speed) ease;
}

.read-more:hover::after {
    transform: translate(3px, -50%);
}

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

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

.logo img {
    height: 6rem;
    width: auto;
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav a {
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--text-color);
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(229, 169, 178, 0.3) 0%, rgba(229, 169, 178, 0) 70%);
}

.hero h1 {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero .slogan {
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

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

.tip-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.tip-content img {
    width: 30%;
    object-fit: cover;
    height: 100%;
}

.tip-text {
    padding: 3rem;
    flex: 1;
}

.tip-text h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.blog-tip, .service-tip, .about-tip, .contact-tip {
    background-color: var(--background-color);
}

/* Services Preview Section */
.services-preview {
    padding: 7rem 0;
}

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

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

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

.service-card h3 {
    font-size: 2rem;
    margin: 2rem 2rem 1rem;
}

.service-card p {
    margin: 0 2rem 2rem;
    color: var(--text-light);
}

.service-card .btn-small {
    margin: 0 2rem 2rem;
}

/* Blog Preview Section */
.blog-preview {
    padding: 7rem 0;
    background-color: var(--background-alt);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

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

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

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

.post-card h3 {
    font-size: 2rem;
    margin: 2rem 2rem 1rem;
}

.post-card p {
    margin: 0 2rem 2rem;
    color: var(--text-light);
}

.post-card .read-more {
    margin: 0 2rem 2rem;
    display: inline-block;
}

/* Testimonials Section */
.testimonials {
    padding: 7rem 0;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    padding: 2rem;
}

.quote {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
}

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

.quote::before {
    top: -1.5rem;
    left: -1.5rem;
}

.quote::after {
    bottom: -3rem;
    right: -1.5rem;
    transform: rotate(180deg);
}

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

/* Blog Content */
.blog-content {
    padding: 5rem 0;
}

.blog-posts-full {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5rem;
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

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

/* Services Main Content */
.services-main {
    padding: 5rem 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 7rem;
    align-items: center;
}

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

.service-description h2 {
    margin-bottom: 2rem;
}

.service-description ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.service-description ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-description ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.price-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease;
}

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

.price-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pricing-note {
    font-size: 1.4rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 7rem 0;
    text-align: center;
    background-color: var(--primary-light);
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.8rem;
}

/* About Story Section */
.about-story {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 5rem;
    align-items: center;
}

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

/* Mission Section */
.about-mission {
    padding: 7rem 0;
    background-color: var(--background-alt);
    text-align: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.mission-item {
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease;
}

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

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

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

/* Team Section */
.team-section {
    padding: 7rem 0;
    text-align: center;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease;
}

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

.team-member img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.team-member h3 {
    margin: 2rem 2rem 0.5rem;
    font-size: 1.8rem;
}

.team-member p {
    margin: 0 2rem 2rem;
    color: var(--text-light);
}

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

/* Credentials Section */
.credentials {
    padding: 7rem 0;
    background-color: var(--background-alt);
}

.credentials-content {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 5rem;
    align-items: center;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.credential-item {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

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

/* Contact Main Section */
.contact-main {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 5rem;
}

.contact-info {
    padding-right: 3rem;
}

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

.info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.info-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--secondary-color);
    transition: all var(--transition-speed) ease;
}

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

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 2.5rem;
    width: calc(50% - 1rem);
    display: inline-block;
}

.form-group:nth-child(odd) {
    margin-right: 2rem;
}

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

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
}

input, select, textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.6rem;
    transition: border-color var(--transition-speed) ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.checkbox-group label {
    margin-bottom: 0;
    font-size: 1.4rem;
}

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

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

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

.map-container img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.map-note {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 2rem auto 0;
}

/* FAQ Section */
.faq-section {
    padding: 7rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

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

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    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: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color var(--transition-speed) ease;
}

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

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

.thank-you-message svg {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.close-btn {
    margin-top: 3rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 7rem 0 3rem;
}

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

.footer-logo img {
    height: 6rem;
    margin-bottom: 1.5rem;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem;
    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: 2rem;
    max-width: 800px;
}

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

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

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

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

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

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cookie-policy-link {
    font-size: 1.4rem;
    text-decoration: underline;
}

/* Icons */
.icon-location, .icon-phone, .icon-email {
    font-family: 'Material Icons';
    font-size: 2rem;
    line-height: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .about-content, 
    .credentials-content,
    .contact-grid,
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        gap: 3rem;
    }
    
    .about-content {
        gap: 4rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-item:nth-child(even) .service-image {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul {
        gap: 2rem;
    }
    
    .tip-content {
        flex-direction: column;
        gap: 0;
    }
    
    .tip-content img {
        width: 100%;
        height: 250px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group:nth-child(odd) {
        margin-right: 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 55%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 2.5rem;
    }
    
    .hero, .page-banner {
        padding: 5rem 0;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
