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

:root {
    --primary-color: #d62828;
    --light-shade: #fbe9e9;
    --dark-shade: #961c1c;
    --text-color: #961c1c;
    --white: #ffffff;
    --black: #000000;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.563rem;
}

p {
    margin-bottom: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.hero-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content > div:first-child {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
}

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

.btn-primary:hover {
    background-color: var(--dark-shade);
    border-color: var(--dark-shade);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

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

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

.intro-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.services-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    text-align: center;
}

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

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.seasonal-guide {
    padding: 80px 0;
}

.seasonal-guide h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.seasonal-guide > .container > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    text-align: center;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--primary-color);
}

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

.consultation-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.consultation-content > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-details {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-info,
.contact-info {
    flex: 1;
}

.consultation-info ul {
    list-style: none;
    padding-left: 0;
}

.consultation-info li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-shade);
}

.consultation-price {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-shade);
    text-align: center;
    font-size: 1.125rem;
}

.contact-details p {
    margin-bottom: 15px;
}

.main-footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 40px;
    flex: 2;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--light-shade);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--primary-color);
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .intro-grid {
        flex-direction: column;
        gap: 40px;
    }

    .consultation-details {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        text-align: center;
        width: 100%;
    }
}

.blog-section {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-details {
    background-color: var(--white);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.contact-item {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-shade);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(150, 28, 28, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    background-color: var(--white);
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23961c1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

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

.form-submit {
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
    padding: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-details {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
}

.about-hero {
    padding: 80px 0 60px;
    background-color: var(--light-shade);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1.5rem;
}

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

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

.foundation-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.foundation-text {
    flex: 1;
}

.foundation-image {
    flex: 1;
}

.foundation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.methodology-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.methodology-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.method-card {
    background-color: var(--white);
    padding: 30px;
    text-align: center;
}

.cultural-approach {
    padding: 80px 0;
}

.cultural-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cultural-text {
    flex: 1;
}

.cultural-image {
    flex: 1;
}

.cultural-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.history-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.history-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    background-color: var(--white);
    padding: 10px;
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 20px 30px;
    background-color: var(--white);
    margin: 0 30px;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

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

.partnership-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.partnership-section > .container > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.partner-card {
    background-color: var(--light-shade);
    padding: 30px;
    text-align: center;
}

.team-section {
    padding: 80px 0;
    background-color: var(--light-shade);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.principles-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.principles-content > p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.principles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
}

.principle-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thankyou-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--primary-color);
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px var(--primary-color);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
}

.success-checkmark .check-icon {
    width: 56px;
    height: 56px;
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1;
    transform: scale(0);
    animation: scale .3s ease-in-out .9s both;
}

.check-icon .icon-line {
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 1;
}

.check-icon .line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip .75s;
}

.check-icon .line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long .75s;
}

.check-icon .icon-circle {
    top: -4px;
    left: -4px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    position: absolute;
}

.check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 45px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

@keyframes scale {
    0%, 50% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 30px var(--primary-color); }
}

.thankyou-lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.contact-reminder {
    background-color: var(--light-shade);
    padding: 30px;
    margin: 3rem 0;
    text-align: center;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 3rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: var(--white);
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
}

.cookie-actions .btn {
    background-color: var(--white);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-actions .btn:hover {
    background-color: var(--light-shade);
}

@media screen and (max-width: 768px) {
    .foundation-grid,
    .cultural-content {
        flex-direction: column;
        gap: 40px;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row;
        padding-left: 70px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        flex: none;
        width: 60px;
        font-size: 1rem;
        padding: 5px;
    }

    .timeline-content {
        margin: 0;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.policy {
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 3%;
}