
:root {
    --terracotta-primary: #C67B5C;
    --terracotta-dark: #A65D3F;
    --sage-green: #7D9A78;
    --sage-light: #A8BFA6;
    --gold-metallic: #D4A853;
    --gold-light: #E8C97A;
    --cream-bg: #FDF8F3;
    --warm-white: #FFFBF7;
    --charcoal-text: #2D2926;
    --soft-gray: #6B6560;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background-color: var(--cream-bg);
    color: var(--charcoal-text);
    line-height: 1.7;
    overflow-x: hidden;
}

strong, p, b {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--charcoal-text);
}

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


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}


.btn-gold {
    background: linear-gradient(135deg, var(--gold-metallic), var(--gold-light));
    color: var(--charcoal-text);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
    white-space: nowrap;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.45);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-metallic));
}

.btn-terracotta {
    background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
    color: white;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(198, 123, 92, 0.35);
    white-space: nowrap;
}

.btn-terracotta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(198, 123, 92, 0.45);
    background: linear-gradient(135deg, var(--terracotta-dark), var(--terracotta-primary));
    color: white;
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal-text);
    border: 2px solid var(--charcoal-text);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline-dark:hover {
    background: var(--charcoal-text);
    color: white;
}


.site-header {
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--terracotta-primary), var(--gold-metallic));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta-primary);
    transition: width 0.3s ease;
}

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

.main-nav a:hover {
    color: var(--terracotta-primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--charcoal-text);
}


.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(198, 123, 92, 0.1), rgba(125, 154, 120, 0.1));
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--charcoal-text), var(--terracotta-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--soft-gray);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

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

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

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-metallic);
    border-radius: 24px;
    z-index: 0;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sage-green);
    border-radius: 24px;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}


.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    color: var(--terracotta-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

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

.section-subtitle {
    font-size: 1.15rem;
    color: var(--soft-gray);
    margin-top: 1rem;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--terracotta-primary), var(--gold-metallic));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--soft-gray);
    font-size: 0.95rem;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

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

.service-content {
    padding: 2rem;
}

.service-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-metallic), var(--gold-light));
    color: var(--charcoal-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-text {
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}


.testimonials-section {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-light) 100%);
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
}

.testimonial-stars {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-metallic);
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-location {
    font-size: 0.9rem;
    opacity: 0.85;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

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

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gold-metallic);
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--terracotta-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--soft-gray);
    font-size: 0.9rem;
}


.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-text {
    color: var(--soft-gray);
    font-size: 0.95rem;
}


.contact-section {
    background: var(--warm-white);
}

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal-text);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E8E4E0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--warm-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--terracotta-primary);
    box-shadow: 0 0 0 4px rgba(198, 123, 92, 0.15);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-text {
    opacity: 0.9;
    font-size: 0.95rem;
}


.faq-item {
    border: 1px solid #E8E4E0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--warm-white);
}

.faq-question.active {
    background: var(--terracotta-primary);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--warm-white);
}

.faq-answer-content {
    padding: 1.5rem;
    color: var(--soft-gray);
}


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

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-metallic);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-metallic);
    padding-left: 5px;
}

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


.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: block;
}

.cookie-banner-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--charcoal-text);
}

.cookie-banner-text {
    color: var(--soft-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
    color: white;
    border: none;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 123, 92, 0.3);
}

.cookie-decline {
    background: transparent;
    color: var(--charcoal-text);
    border: 2px solid #E8E4E0;
}

.cookie-decline:hover {
    border-color: var(--charcoal-text);
}


@media (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1002;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .main-nav a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none;
    }

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

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .hero-img {
        height: 350px;
    }

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

    .cookie-btn {
        width: 100%;
    }
}


.text-terracotta {
    color: var(--terracotta-primary) !important;
}

.text-sage {
    color: var(--sage-green) !important;
}

.text-gold {
    color: var(--gold-metallic) !important;
}

.bg-cream {
    background-color: var(--cream-bg) !important;
}

.bg-warm-white {
    background-color: var(--warm-white) !important;
}

.mb-large {
    margin-bottom: 4rem;
}

.mt-large {
    margin-top: 4rem;
}