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

:root {
    --color-sunset-orange: #E85D04;
    --color-deep-burgundy: #7D1517;
    --color-cream: #FDF8F3;
    --color-sage-green: #8B9A7D;
    --color-charcoal: #1A1A1A;
    --color-warm-gray: #6B6B6B;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-sunset-orange), var(--color-deep-burgundy));
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 93, 4, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-charcoal);
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    border: 2px solid var(--color-charcoal);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    max-width: 600px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-deep-burgundy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-charcoal);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--color-sunset-orange);
    background: rgba(232, 93, 4, 0.08);
}

.nav-link.active {
    color: var(--color-sunset-orange);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFF5EE 100%);
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(125, 21, 23, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(232, 93, 4, 0.1);
    color: var(--color-sunset-orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    color: var(--color-charcoal);
}

.hero-title span {
    color: var(--color-sunset-orange);
    position: relative;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-sunset-orange), var(--color-deep-burgundy));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.badge-text {
    font-size: 14px;
    color: var(--color-warm-gray);
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.section {
    padding: 100px 0;
}

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

.section-dark .section-title {
    color: white;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--color-sunset-orange);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: -1;
}

.about-content {
    max-width: 520px;
}

.about-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-sage-green);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 24px;
    color: var(--color-charcoal);
}

.about-description {
    color: var(--color-warm-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 14px;
    color: var(--color-charcoal);
}

.services-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, #FFF5EE 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-sunset-orange), var(--color-deep-burgundy));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(125, 21, 23, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.service-description {
    font-size: 14px;
    color: var(--color-warm-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-sunset-orange);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.service-link:hover {
    color: var(--color-sunset-orange);
    gap: 12px;
}

.advantages-section {
    position: relative;
    overflow: hidden;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-sunset-orange), var(--color-deep-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(232, 93, 4, 0.3);
}

.advantage-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: white;
}

.advantage-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFF5EE 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--color-sunset-orange);
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-warm-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-sunset-orange), var(--color-deep-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: var(--color-warm-gray);
}

.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    transition: all 0.3s ease;
}

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

.team-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--color-sunset-orange);
    font-weight: 500;
}

.blog-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, #FFF5EE 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.blog-content {
    padding: 28px;
}

.blog-date {
    font-size: 12px;
    color: var(--color-warm-gray);
    margin-bottom: 12px;
    display: block;
}

.blog-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--color-charcoal);
    line-height: 1.4;
}

.blog-title:hover {
    color: var(--color-sunset-orange);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--color-warm-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-sunset-orange);
}

.blog-link:hover {
    gap: 10px;
}

.faq-section {
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-sunset-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--color-warm-gray);
    line-height: 1.7;
}

.areas-section {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #2A2A2A 100%);
    color: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.areas-map {
    border-radius: 16px;
    overflow: hidden;
}

.areas-map img {
    width: 100%;
    display: block;
}

.areas-content {
    max-width: 480px;
}

.areas-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 24px;
    color: white;
}

.areas-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.8;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.area-icon {
    width: 20px;
    height: 20px;
    color: var(--color-sunset-orange);
}

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    max-width: 400px;
}

.contact-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--color-charcoal);
}

.contact-description {
    color: var(--color-warm-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(125, 21, 23, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.contact-label {
    font-size: 12px;
    color: var(--color-warm-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: var(--color-charcoal);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--color-cream);
    border-radius: 20px;
    padding: 48px;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-charcoal);
}

.form-input,
.form-textarea,
.form-select {
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--color-charcoal);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-sunset-orange);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

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

.form-submit {
    margin-top: 8px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-sage-green), #6B7A5D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.form-success-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.form-success-text {
    color: var(--color-warm-gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-sunset-orange) 0%, var(--color-deep-burgundy) 100%);
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white;
    margin-bottom: 16px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: white;
    color: var(--color-sunset-orange);
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
    background: var(--color-charcoal);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-sunset-orange);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-sunset-orange);
}

.footer-contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.cookie-text {
    font-size: 14px;
    color: var(--color-warm-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--color-sunset-orange), var(--color-deep-burgundy));
    color: white;
    border: none;
}

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

.cookie-btn-decline {
    background: transparent;
    color: var(--color-charcoal);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(0, 0, 0, 0.05);
}

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFF5EE 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--color-charcoal);
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-warm-gray);
}

.page-breadcrumb a {
    color: var(--color-warm-gray);
}

.page-breadcrumb a:hover {
    color: var(--color-sunset-orange);
}

.service-detail-section {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-image {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-detail-content {
    max-width: 520px;
}

.service-detail-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(232, 93, 4, 0.1);
    color: var(--color-sunset-orange);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.service-detail-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 24px;
    color: var(--color-charcoal);
}

.service-detail-description {
    color: var(--color-warm-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.service-features-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-charcoal);
}

.service-features-icon {
    width: 22px;
    height: 22px;
    color: var(--color-sage-green);
}

.service-detail-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sunset-orange);
    margin-bottom: 24px;
}

.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, #FFF5EE 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-card {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-sunset-orange), var(--color-deep-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.process-description {
    font-size: 14px;
    color: var(--color-warm-gray);
    line-height: 1.7;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--color-sunset-orange);
    box-shadow: 0 10px 40px rgba(232, 93, 4, 0.15);
}

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

.pricing-label {
    display: inline-block;
    padding: 6px 12px;
    background: var(--color-cream);
    color: var(--color-warm-gray);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--color-charcoal);
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-sunset-orange);
    margin-bottom: 8px;
}

.pricing-period {
    font-size: 14px;
    color: var(--color-warm-gray);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-charcoal);
}

.pricing-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--color-sage-green);
}

.legal-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--color-charcoal);
}

.legal-text {
    color: var(--color-warm-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.legal-list {
    list-style: disc;
    padding-left: 24px;
    color: var(--color-warm-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFF5EE 100%);
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-sage-green), #6B7A5D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--color-charcoal);
}

.thank-you-text {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .areas-content {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        max-width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 8px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .section {
        padding: 60px 0;
    }

    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    [class*="text-"] strong,
    [class*="text-"] b,
    .text-white strong,
    .text-white b {
        color: inherit;
    }
}
