﻿:root {
    --bg-color: #F8F5F2;
    --text-color: #1A1A1A;
    --primary: #2E1A36; /* Deep Aubergine */
    --accent: #E6A176; /* Soft Terracotta */
    --accent-hover: #C8865D;
    --white: #FFFFFF;
    --border: #E0DCD5;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}
html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: var(--white); padding: 8px; z-index: 1000; transition: top 0.3s; }
.skip-link:focus { top: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Header & Nav */
header { background-color: var(--primary); color: var(--white); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 999; }
.logo-container { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.logo-container img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }
.burger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--white); background: none; border: none; }

/* Unique Graphic Element - Asymmetric shapes */
.graphic-shape { position: absolute; background: var(--accent); opacity: 0.1; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; z-index: -1; }

/* Sections */
section { padding: 5rem 5%; position: relative; }
h1, h2, h3 { font-family: var(--font-heading); margin-bottom: 1rem; color: var(--primary); }
h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; background: linear-gradient(135deg, var(--bg-color) 0%, #EAE4DC 100%); min-height: 80vh; }
.btn { display: inline-block; background-color: var(--accent); color: var(--white); padding: 1rem 2rem; border-radius: 30px; font-weight: 600; text-align: center; transition: background 0.3s, transform 0.2s; border: none; cursor: pointer; font-size: 1rem; }
.btn:hover { background-color: var(--accent-hover); transform: translateY(-2px); color:var(--white);}
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* Features (Asymmetric) */
.features { display: flex; flex-direction: row-reverse; gap: 4rem; align-items: center; background-color: var(--white); }
.features-text ul { list-style: none; margin-top: 1.5rem; }
.features-text li { margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.features-text li::before { content: "✓"; color: var(--accent); font-weight: bold; background: var(--primary); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px;}

/* Pricing */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: var(--white); padding: 2.5rem; border-radius: 16px; border: 1px solid var(--border); text-align: center; transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card h3 { font-size: 1.5rem; }
.price { font-size: 2.5rem; font-weight: bold; color: var(--accent); margin: 1.5rem 0; font-family: var(--font-heading); }
.card ul { list-style: none; margin-bottom: 2rem; text-align: left; }
.card ul li { margin-bottom: 0.8rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.card.popular { border: 2px solid var(--accent); box-shadow: 0 10px 30px rgba(46,26,54,0.1); position: relative; transform: scale(1.05); }
.card.popular .badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; }

/* Form Section */
.form-section { background-color: var(--primary); color: var(--white); }
.form-section h2 { color: var(--white); }
.form-container { max-width: 600px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 16px; color: var(--text-color); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-main); font-size: 1rem; background: var(--bg-color); }
.form-group input:focus { outline: none; border-color: var(--accent); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.checkbox-group input { width: auto; margin-top: 4px; }
.btn-submit { width: 100%; margin-top: 1rem; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-item { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.service-item img { border-radius: 0; width: 100%; height: 200px; object-fit: cover; }
.service-content { padding: 2rem; }

/* Accordion FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 1rem; overflow: hidden; }
.faq-question { padding: 1.5rem; font-weight: 600; font-family: var(--font-heading); cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--primary); background: none; border: none; width: 100%; text-align: left; font-size: 1.1rem; }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; max-height: 500px; }
.faq-item.active .faq-question { color: var(--accent); }

/* Trust Layer */
.trust-layer { background-color: #EAE4DC; padding: 2rem 5%; text-align: center; font-size: 0.85rem; color: #555; border-top: 1px solid var(--border); }
.trust-layer h4 { color: var(--primary); margin-bottom: 0.5rem; font-family: var(--font-heading); }
.trust-layer p { margin-bottom: 0.5rem; }
.trust-layer a { color: var(--accent); text-decoration: underline; }

/* Footer */
footer { background-color: var(--primary); color: #B0A8B5; padding: 3rem 5% 1rem; font-size: 0.9rem; text-align: center; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.footer-links a:hover { color: var(--white); }
.legal-footer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--primary); color: var(--white); padding: 1.5rem 5%; z-index: 1000; display: flex; justify-content: space-between; align-items: center; gap: 2rem; transition: bottom 0.5s; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); }
.cookie-banner.show { bottom: 0; }
.cookie-btns { display: flex; gap: 1rem; flex-shrink: 0; }

/* Legal Pages format */
.legal-content { max-width: 900px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 12px; }
.legal-content h2 { text-align: left; margin-top: 2rem; font-size: 1.5rem; }
.legal-content p, .legal-content ul { margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; }

/* Map Iframe */
.map-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; margin-top: 2rem; }
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Responsive */
@media (max-width: 768px) {
    .burger { display: block; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary); flex-direction: column; text-align: center; gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
    .nav-links.nav-active { max-height: 400px; padding: 1rem 0; }
    .nav-links li { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
    .hero, .features { grid-template-columns: 1fr; text-align: center; flex-direction: column; }
    .features-text ul { text-align: left; }
    .card.popular { transform: none; }
    .cookie-banner { flex-direction: column; text-align: center; }
}