/* ========================================
   VALLE FIORITA - SPLIT-SCREEN MODERN ARCHETYPE
   Mobile-First, Flexbox Only
   ======================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97a97c;
    --accent-color: #d4a574;
    --dark-text: #1a1a1a;
    --light-text: #4a4a4a;
    --background-light: #f8f7f4;
    --white: #ffffff;
    --border-color: #e0ddd5;
    --error-color: #c44536;
    --success-color: #2c5f2d;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #234a24;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* === NAVIGATION === */
.navbar {
    background-color: var(--white);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--dark-text);
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-menu li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-text);
    padding: 0.5rem 0;
    display: block;
}

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

/* === HERO SECTIONS === */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-left {
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    background-color: var(--background-light);
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 800;
}

.hero-text-content p {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    min-height: 400px;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero {
    min-height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?w=1600&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--white);
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === BUTTONS & CTAs === */
.cta-primary,
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #234a24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #234a24;
}

.cta-service,
.cta-service-page {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-service:hover,
.cta-service-page:hover {
    background-color: #c49562;
    transform: translateY(-2px);
}

/* === SPLIT CONTAINER (CORE ARCHETYPE) === */
.split-container {
    display: flex;
    flex-direction: column;
}

.split-image {
    overflow: hidden;
}

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

.split-content {
    padding: 3rem 1.5rem;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    line-height: 1.2;
}

.split-content p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* === SECTIONS === */
section {
    padding: 4rem 1.5rem;
}

.intro-section {
    background-color: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* === CARDS === */
.value-cards {
    background-color: var(--background-light);
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.value-card p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* === STORY SECTION === */
.story-section {
    background-color: var(--white);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 60px;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.step-text p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* === SERVICES === */
.services-preview {
    background-color: var(--background-light);
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.service-block {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-block.featured {
    border: 3px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: var(--dark-text);
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-desc {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: var(--light-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.services-cta-block {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.services-cta-block p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.services-cta-block a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* === TESTIMONIALS === */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.testimonial-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* === FORMS === */
.form-section {
    background-color: var(--background-light);
}

.form-split-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.form-left-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.form-left-content p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form,
.contact-form-page {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit,
.btn-submit-contact {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover,
.btn-submit-contact:hover {
    background-color: #234a24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

/* === FINAL CTA === */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #c49562;
    transform: scale(1.05);
}

/* === FOOTER === */
.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col p,
.footer-col ul li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

/* === ABOUT PAGE === */
.about-intro {
    background-color: var(--white);
}

.philosophy-section {
    background-color: var(--background-light);
}

.content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-card {
    padding: 2rem;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.7;
}

.team-section {
    background-color: var(--white);
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

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

.member-info {
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
}

.values-section {
    background-color: var(--background-light);
}

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

.values-list li {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.7;
}

.values-list strong {
    color: var(--primary-color);
    font-weight: 700;
}

.recognition-section {
    background-color: var(--white);
}

.recognition-section p {
    text-align: center;
    font-size: 1.05rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 600;
}

.cta-about-section {
    background-color: var(--background-light);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.cta-about-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* === SERVICES PAGE === */
.services-intro-section {
    background-color: var(--white);
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.feature-icon {
    font-size: 2rem;
}

.feature-box p {
    font-size: 1.05rem;
    color: var(--dark-text);
    font-weight: 600;
    margin: 0;
}

.all-services-section {
    background-color: var(--background-light);
}

.services-full-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detailed-block {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.popular-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 25px;
}

.service-detailed-content {
    padding: 2.5rem;
}

.service-detailed-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detailed-header h3 {
    font-size: 1.8rem;
    color: var(--dark-text);
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-duration {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detailed-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--dark-text);
}

.inclusion-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.inclusion-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--light-text);
}

.inclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.custom-experience-section {
    background-color: var(--white);
}

.custom-exp-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.custom-exp-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.custom-exp-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.custom-examples {
    text-align: left;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.custom-examples p {
    margin-bottom: 1rem;
}

.custom-examples ul {
    list-style: disc;
    margin-left: 2rem;
}

.custom-examples li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--light-text);
}

.btn-custom-exp {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-custom-exp:hover {
    background-color: #234a24;
    transform: translateY(-2px);
}

.booking-info-section {
    background-color: var(--background-light);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-box p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* === CONTACT PAGE === */
.contact-main-section {
    background-color: var(--white);
}

.contact-split-layout {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.contact-info-side > p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-detail-block {
    margin-bottom: 2.5rem;
}

.contact-detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail-block p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-detail-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.detail-note {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

.faq-quick-list {
    list-style: none;
}

.faq-quick-list li {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-container-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.form-container-box > p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-privacy {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--light-text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-section {
    background-color: var(--background-light);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.map-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.map-placeholder {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
}

.contact-alternative-section {
    background-color: var(--white);
    text-align: center;
}

.alternative-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

/* === THANKS PAGE === */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background-color: var(--background-light);
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

.thanks-container h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.thanks-main-text {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-thanks {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.step-number-thanks {
    min-width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content-thanks h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.step-content-thanks p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

.thanks-service-info {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.thanks-contact-reminder {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.thanks-contact-reminder p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.thanks-contact-reminder a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* === LEGAL PAGES === */
.legal-page-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.legal-intro {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: var(--dark-text);
}

.legal-content p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--light-text);
}

.legal-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.legal-nav a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.legal-nav a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookie-table thead {
    background-color: var(--background-light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 700;
    color: var(--dark-text);
}

.cookie-table td {
    color: var(--light-text);
}

/* === RESPONSIVE - TABLET === */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        gap: 2.5rem;
        transform: none;
        opacity: 1;
        padding: 0;
        box-shadow: none;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-left,
    .hero-right {
        flex: 1;
    }

    .hero-right {
        min-height: auto;
    }

    .split-container {
        flex-direction: row;
        align-items: center;
    }

    .split-container.reverse {
        flex-direction: row-reverse;
    }

    .split-image,
    .split-content {
        flex: 1;
    }

    .split-image {
        min-height: 450px;
    }

    .cards-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-block {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .form-split-container {
        flex-direction: row;
    }

    .form-left-content,
    .form-right-content {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .team-member {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .member-info {
        text-align: left;
    }

    .member-image {
        margin: 0;
    }

    .stats-grid {
        flex-direction: row;
    }

    .stat-box {
        flex: 1;
    }

    .cta-buttons {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }

    .intro-features {
        flex-direction: row;
    }

    .feature-box {
        flex: 1;
    }

    .service-detailed-block {
        flex-direction: row;
    }

    .service-detailed-block.reverse {
        flex-direction: row-reverse;
    }

    .service-image-container {
        flex: 0 0 45%;
        height: auto;
    }

    .service-detailed-content {
        flex: 1;
    }

    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-box {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-split-layout {
        flex-direction: row;
    }

    .contact-info-side,
    .contact-form-side {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .alternative-links {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }
}

/* === RESPONSIVE - DESKTOP === */
@media (min-width: 1024px) {
    .hero-text-content h1 {
        font-size: 3.2rem;
    }

    .hero-text-content p {
        font-size: 1.25rem;
    }

    .split-content {
        padding: 4rem 3rem;
    }

    .section-title-center {
        font-size: 2.8rem;
    }

    .cards-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .services-layout {
        flex-wrap: nowrap;
        gap: 2rem;
    }

    .service-block {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .philosophy-grid {
        flex-wrap: nowrap;
    }

    .philosophy-card {
        flex: 1;
    }
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}