:root {
    --forest-green: #2d5016;
    --harvest-orange: #e67210;
    --earth-brown: #8b4513;
    --cream-white: #faf8f3;
    --deep-charcoal: #2a2a2a;
    --sage-green: #9caf88;
    --warm-amber: #f2c64d;
    --text-primary: #3a3a3a;
    --text-secondary: #6e7d97;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --shadow-light: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
    --shadow-medium: 0px 18px 38px 0px rgba(0, 0, 2, 0.09);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Source Serif Pro", Georgia, serif;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 320;
    font-size: 1.02rem;
    background: var(--cream-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--deep-charcoal);
    font-family: "Poppins", -apple-system, sans-serif;
    font-weight: 620;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.CentralContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

.NavigationWrapper {
    background: var(--cream-white);
    padding: 17px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-light);
}

.MainNavbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.BrandIdentity img {
    height: 52px;
    width: auto;
}

.MobileToggleInput {
    display: none;
}

.MobileToggleLabel {
    display: none;
}

.HamburgerIcon {
    width: 28px;
    height: 3px;
    background: var(--deep-charcoal);
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.HamburgerIcon:before,
.HamburgerIcon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--deep-charcoal);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.HamburgerIcon:before {
    top: -9px;
}

.HamburgerIcon:after {
    top: 9px;
}

.NavigationList {
    display: flex;
    list-style: none;
    gap: 34px;
    align-items: center;
}

.NavigationItem {
    position: relative;
}

.NavigationLink {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 420;
    padding: 13px 0;
    transition: color 0.3s ease;
    position: relative;
}

.NavigationLink:hover {
    color: var(--harvest-orange);
}

.NavigationLink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--harvest-orange);
    transition: width 0.3s ease;
}

.NavigationLink:hover::after {
    width: 100%;
}

@media screen and (max-width: 890px) {
    .MobileToggleLabel {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 1001;
    }

    .NavigationContainer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--cream-white);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 95px;
        z-index: 1000;
    }

    .NavigationList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .NavigationItem {
        width: 100%;
        text-align: center;
        margin: 18px 0;
    }

    .NavigationLink {
        display: inline-block;
        padding: 15px 25px;
        font-size: 19px;
        color: var(--deep-charcoal);
    }

    .MobileToggleInput:checked ~ .NavigationContainer {
        left: 0;
    }

    .MobileToggleInput:checked ~ .MobileToggleLabel .HamburgerIcon {
        background: transparent;
    }

    .MobileToggleInput:checked ~ .MobileToggleLabel .HamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MobileToggleInput:checked ~ .MobileToggleLabel .HamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.PrimaryHeroSection {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    padding: 145px 0 125px 0;
    position: relative;
    overflow: hidden;
}

.PrimaryHeroSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.HeroContentGrid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.HeroTextBlock {
    max-width: 720px;
}

.HeroBadgeText {
    background: linear-gradient(45deg, var(--warm-amber), #ffd700);
    background-size: 150% 150%;
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    margin-bottom: 27px;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.HeroBadgeText span {
    font-size: 15px;
    font-weight: 520;
    color: var(--deep-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.HeroTextBlock h1 {
    font-size: 72px;
    text-transform: uppercase;
    font-weight: 720;
    line-height: 0.95;
    margin-bottom: 21px;
    color: var(--cream-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.HeroTextBlock h2 {
    font-size: 98px;
    color: var(--warm-amber);
    position: relative;
    margin-top: -45px;
    margin-bottom: 18px;
    font-weight: 320;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.HeroTextBlock p {
    font-size: 19px;
    font-weight: 420;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    margin-top: 15px;
    line-height: 1.6;
}

.HeroActionButtons {
    display: flex;
    gap: 23px;
    justify-content: center;
    align-items: center;
}

.PrimaryActionButton {
    background: var(--warm-amber);
    color: var(--deep-charcoal);
    display: inline-block;
    padding: 17px 42px;
    font-size: 16px;
    font-weight: 620;
    border: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.35s ease;
    border-radius: 35px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
}

.PrimaryActionButton:hover {
    background: transparent;
    color: var(--warm-amber);
    border: 2px solid var(--warm-amber);
    transform: translateY(-2px);
    box-shadow: 0px 25px 50px 0px rgba(242, 198, 77, 0.3);
}

.SecondaryActionButton {
    width: 85px;
    height: 85px;
    background: var(--harvest-orange);
    line-height: 85px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    transition: all 0.35s ease;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
}

.SecondaryActionButton:hover {
    background: var(--earth-brown);
    transform: scale(1.1);
}

.ButtonIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

@media (max-width: 890px) {
    .PrimaryHeroSection {
        padding: 95px 0 85px 0;
    }

    .HeroTextBlock h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .HeroTextBlock h2 {
        font-size: 48px;
        margin-top: -15px;
    }

    .HeroActionButtons {
        flex-direction: column;
        gap: 18px;
    }
}

.FeatureHighlights {
    padding: 95px 0;
    background: var(--cream-white);
}

.FeatureGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
    margin-top: 23px;
}

.FeatureCard {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.FeatureCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--harvest-orange);
}

.FeatureIconWrapper {
    display: block;
    margin-bottom: 27px;
}

.FeatureIcon {
    width: 55px;
    height: 55px;
    margin: 0 auto;
    filter: hue-rotate(25deg) saturate(1.2);
}

.FeatureCard h3 {
    font-size: 22px;
    font-weight: 720;
    margin-bottom: 18px;
    color: var(--deep-charcoal);
}

.FeatureCard p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.ContentImageDisplay {
    padding: 115px 0;
    background: white;
}

.SectionMainTitle {
    font-size: 38px;
    margin-bottom: 45px;
    color: var(--deep-charcoal);
    text-align: center;
    font-weight: 720;
}

.ContentImageGrid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 55px;
    margin-top: 45px;
}

.ContentTextBlock {
    flex: 1;
    min-width: 350px;
}

.ContentTextBlock p {
    margin-bottom: 28px;
    color: var(--text-secondary);
    font-size: 17px;
    font-weight: 420;
    line-height: 1.8;
}

.ImageContainer {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.ContentImage {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.35s ease;
}

.ContentImage:hover {
    transform: scale(1.02);
}

@media (max-width: 890px) {
    .ContentImageDisplay {
        padding: 75px 0;
    }

    .ContentImageGrid {
        flex-direction: column;
        gap: 35px;
    }

    .ContentTextBlock,
    .ImageContainer {
        min-width: auto;
    }

    .SectionMainTitle {
        font-size: 28px;
        margin-bottom: 35px;
    }
}

.GalleryShowcase {
    padding: 115px 0;
    background: var(--cream-white);
}

.GalleryHeader {
    text-align: center;
    margin-bottom: 45px;
}

.GalleryTitle {
    color: var(--harvest-orange);
    font-size: 38px;
    font-weight: 720;
}

.GalleryFilterControls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.FilterButton {
    border: none;
    font-size: 14px;
    padding: 12px 28px;
    margin: 8px;
    text-transform: uppercase;
    font-weight: 620;
    background: var(--border-subtle);
    color: var(--text-primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.FilterButton:hover,
.FilterButton.ActiveFilter {
    background: var(--harvest-orange);
    color: white;
    transform: translateY(-2px);
}

.GalleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.GalleryItem {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 8px solid white;
}

.GalleryImageWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.GalleryImageWrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(230, 114, 16, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.ZoomIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.4s ease;
}

.ZoomIconSvg {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.GalleryImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.GalleryImageWrapper:hover::after {
    opacity: 1;
}

.GalleryImageWrapper:hover .ZoomIcon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.GalleryImageWrapper:hover .GalleryImage {
    transform: scale(1);
}

@media (max-width: 640px) {
    .GalleryGrid {
        grid-template-columns: 1fr;
    }

    .GalleryItem {
        border: 5px solid white;
    }
}

.TestimonialSection {
    background: #f8f9fa;
    padding: 125px 0;
    position: relative;
    overflow: hidden;
}

.TestimonialWrapper {
    display: flex;
    justify-content: center;
}

.TestimonialSlider {
    max-width: 950px;
    width: 100%;
}

.TestimonialSlide {
    opacity: 1;
}

.TestimonialContent {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 18px;
    padding: 55px 65px 75px 65px;
    box-shadow: var(--shadow-medium);
    gap: 35px;
}

.TestimonialAvatar {
    flex-shrink: 0;
}

.TestimonialAvatar img {
    max-width: 125px;
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 50%;
}

.TestimonialText h4 {
    font-size: 21px;
    font-weight: 720;
    color: var(--deep-charcoal);
    margin-bottom: 0;
}

.TestimonialText span {
    display: block;
    color: var(--text-secondary);
    font-family: "Poppins", sans-serif;
    font-weight: 420;
    font-size: 16px;
    margin-bottom: 23px;
    line-height: 1;
    margin-top: 6px;
}

.TestimonialText p {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 890px) {
    .TestimonialSection {
        padding: 85px 0;
    }

    .TestimonialContent {
        flex-direction: column;
        text-align: center;
        padding: 45px 35px;
    }

    .TestimonialAvatar {
        margin-bottom: 25px;
    }

    .TestimonialText p {
        font-size: 16px;
    }
}

.AboutCompanySection {
    padding: 0;
    background: white;
}

.AboutFlexContainer {
    display: flex;
    min-height: 95vh;
}

.AboutImageColumn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.AboutImageBackground {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 85px;
    position: relative;
}

.AboutInfoCard {
    border-radius: 12px;
    padding: 0;
    background: var(--forest-green);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    max-width: 420px;
    position: relative;
    z-index: 10;
}

.InfoCardContent {
    padding: 45px 55px;
    color: white;
}

.InfoCardContent h2 {
    font-size: 24px;
    font-weight: 720;
    margin-bottom: 15px;
    color: var(--warm-amber);
}

.InfoCardContent h4 {
    font-size: 15px;
    font-weight: 620;
    color: var(--warm-amber);
    margin-bottom: 8px;
}

.ConsultationInfo p {
    margin-bottom: 18px;
}

.ConsultationInfo p span {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.ConsultationInfo p span strong {
    font-weight: 520;
    color: white;
}

.InfoCardContact {
    padding: 35px 55px;
    background: var(--warm-amber);
}

.InfoCardContact h3 {
    font-size: 19px;
    font-weight: 720;
    color: var(--deep-charcoal);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ContactPhone {
    font-size: 23px;
    color: var(--deep-charcoal);
    font-weight: 720;
}

.AboutContentColumn {
    flex: 1;
    padding: 85px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.AboutSubheading {
    font-size: 13px;
    display: block;
    font-weight: 620;
    color: var(--harvest-orange);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.AboutTextContent h2 {
    font-size: 42px;
    font-weight: 420;
    margin-bottom: 35px;
    line-height: 1.2;
}

.AboutTextContent p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 45px;
}

.AboutStatsRow {
    display: flex;
    gap: 35px;
    margin-top: 25px;
}

.StatCounter {
    text-align: center;
}

.StatNumber {
    margin-bottom: 12px;
}

.CounterNumber {
    line-height: 1;
    font-weight: 520;
    font-size: 34px;
    color: var(--deep-charcoal);
    display: block;
}

.StatLabel span {
    text-transform: uppercase;
    font-weight: 620;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .AboutImageBackground {
        padding-left: 45px;
    }

    .AboutContentColumn {
        padding: 65px 45px;
    }
}

@media (max-width: 890px) {
    .AboutFlexContainer {
        flex-direction: column;
    }

    .AboutImageColumn {
        min-height: 85vh;
    }

    .AboutImageBackground {
        padding: 45px 25px;
        justify-content: center;
    }

    .AboutContentColumn {
        padding: 55px 25px;
    }

    .AboutTextContent h2 {
        font-size: 32px;
    }

    .AboutStatsRow {
        flex-direction: column;
        gap: 25px;
    }
}

.SiteFooter {
    padding: 85px 0;
    background: #1a1a1a;
    color: white;
}

.FooterMainContent {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 65px;
    margin-bottom: 75px;
}

.FooterAboutColumn h2 {
    color: white;
    font-size: 19px;
    margin-bottom: 25px;
    font-weight: 720;
}

.FooterAboutColumn p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.FooterLinksColumns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.FooterHeading {
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
    font-weight: 720;
}

.FooterLinksList {
    list-style: none;
}

.FooterLinksList li {
    margin-bottom: 14px;
}

.FooterLinksList a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.FooterLinksList a:hover {
    color: white;
}

.FooterBottomRow {
    padding-top: 45px;
    text-align: center;
}

.CopyrightBorder {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 35px;
}

.FooterCopyright p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.DisclaimerText {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@media (max-width: 890px) {
    .FooterMainContent {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .FooterLinksColumns {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .FooterLinksColumns {
        grid-template-columns: 1fr;
    }

    .SiteFooter {
        padding: 65px 0;
    }
}

.ContactFormSection {
    padding: 125px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.ContactFormSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactGrain" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(45,80,22,0.02)"/><circle cx="40" cy="30" r="0.5" fill="rgba(45,80,22,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23contactGrain)"/></svg>');
    opacity: 0.6;
}

.ContactContentWrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 75px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.ContactSubheading {
    font-size: 14px;
    display: block;
    font-weight: 650;
    color: var(--harvest-orange);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 22px;
}

.ContactTextContent h2 {
    font-size: 44px;
    font-weight: 720;
    margin-bottom: 28px;
    line-height: 1.15;
    color: var(--deep-charcoal);
}

.ContactTextContent p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 45px;
    color: var(--text-secondary);
}

.ContactDetailsGrid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ContactDetailItem {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.35s ease;
}

.ContactDetailItem:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.ContactDetailIcon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--harvest-orange), var(--warm-amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.DetailIcon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.ContactDetailText h4 {
    font-size: 17px;
    font-weight: 720;
    color: var(--deep-charcoal);
    margin-bottom: 6px;
}

.ContactDetailText span {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.ContactFormBlock {
    background: white;
    border-radius: 18px;
    padding: 55px 45px;
    box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ContactFormBlock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--harvest-orange), var(--warm-amber));
    border-radius: 18px 18px 0 0;
}

.FormHeader {
    text-align: center;
    margin-bottom: 42px;
}

.FormHeader h3 {
    font-size: 32px;
    font-weight: 720;
    color: var(--deep-charcoal);
    margin-bottom: 12px;
}

.FormHeader p {
    color: var(--text-secondary);
    font-size: 16px;
}

.FormRowGroup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.FormFieldGroup {
    display: flex;
    flex-direction: column;
}

.FormLabel {
    font-size: 15px;
    font-weight: 620;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.FormInput,
.FormSelect,
.FormTextarea {
    padding: 16px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.FormInput:focus,
.FormSelect:focus,
.FormTextarea:focus {
    outline: none;
    border-color: var(--harvest-orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(230, 114, 16, 0.1);
}

.FormSelect {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

.FormTextarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.FormSubmitArea {
    text-align: center;
    margin-top: 35px;
}

.FormSubmitButton {
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 650;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
    font-family: "Poppins", sans-serif;
}

.FormSubmitButton:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0px 20px 40px 0px rgba(45, 80, 22, 0.3);
}

.ButtonArrowIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.FormSubmitButton:hover .ButtonArrowIcon {
    transform: translateX(3px);
}

.FormDisclaimerText {
    margin-top: 18px;
    font-size: 13px;
    color: var(--text-secondary);
}

.FormDisclaimerText a {
    color: var(--harvest-orange);
    text-decoration: none;
}

.FormDisclaimerText a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .ContactContentWrapper {
        gap: 55px;
    }

    .ContactFormBlock {
        padding: 45px 35px;
    }
}

@media (max-width: 890px) {
    .ContactFormSection {
        padding: 85px 0;
    }

    .ContactContentWrapper {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .ContactTextContent h2 {
        font-size: 36px;
    }

    .FormRowGroup {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ContactFormBlock {
        padding: 35px 25px;
    }

    .FormHeader h3 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .ContactDetailsGrid {
        gap: 22px;
    }

    .ContactDetailItem {
        padding: 20px;
    }

    .FormSubmitButton {
        width: 100%;
        justify-content: center;
    }
}

.ThankYouHeroSection {
    padding: 145px 0 125px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ThankYouHeroSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="thankYouPattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23thankYouPattern)"/></svg>');
    opacity: 0.3;
}

.ThankYouContentBlock {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ThankYouIconWrapper {
    margin-bottom: 32px;
}

.ThankYouIcon {
    width: 85px;
    height: 85px;
    margin: 0 auto;
    filter: hue-rotate(45deg) brightness(1.2);
}

.ThankYouContentBlock h1 {
    font-size: 54px;
    color: white;
    font-weight: 720;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ThankYouContentBlock h2 {
    font-size: 22px;
    color: var(--warm-amber);
    font-weight: 420;
    margin-bottom: 45px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.ThankYouMessageBlock {
    background: white;
    border-radius: 18px;
    padding: 45px 40px;
    margin-bottom: 35px;
    box-shadow: var(--shadow-medium);
    text-align: left;
}

.ThankYouMessageBlock p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.NextStepsInfo h3 {
    font-size: 21px;
    color: var(--deep-charcoal);
    margin-bottom: 18px;
    font-weight: 720;
}

.NextStepsList {
    list-style: none;
    margin-bottom: 35px;
}

.NextStepsList li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.NextStepsList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--harvest-orange);
    font-weight: bold;
    font-size: 16px;
}

.ContactReminderCard {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-left: 4px solid var(--harvest-orange);
}

.ReminderIconWrapper {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: var(--harvest-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ReminderIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.ReminderContent h4 {
    font-size: 18px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
    font-weight: 720;
}

.ReminderContent p {
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-size: 16px;
}

.ReminderContent span {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
}

.ThankYouActions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.BackToHomeButton,
.ExploreMoreButton {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 620;
    font-size: 16px;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.BackToHomeButton {
    background: var(--warm-amber);
    color: var(--deep-charcoal);
    box-shadow: var(--shadow-medium);
}

.BackToHomeButton:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0px 15px 35px 0px rgba(242, 198, 77, 0.4);
}

.ExploreMoreButton {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.ExploreMoreButton:hover {
    background: white;
    color: var(--forest-green);
    transform: translateY(-2px);
}

@media (max-width: 890px) {
    .ThankYouHeroSection {
        padding: 95px 0 85px 0;
    }

    .ThankYouContentBlock h1 {
        font-size: 38px;
    }

    .ThankYouMessageBlock {
        padding: 35px 25px;
    }

    .ContactReminderCard {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .ThankYouActions {
        flex-direction: column;
        align-items: center;
    }

    .BackToHomeButton,
    .ExploreMoreButton {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}