/* SeniorGarden Custom Styles - mirage.css */
/* Color Variables */
:root {
    --ocean-blue: #7209b7;
    --forest-green: #29B261;
    --sunset-orange: #e89c00;
    --midnight-navy: #4c0677;
    --cloud-white: #f3e5f9;
    --stone-gray: #323232;
    --silver-mist: #CFCFCF;
    --charcoal-black: #242424;
    --text-primary: #222222;
    --text-secondary: #444444;
    --accent-color: #0028ff;
    --warning-color: #d08b00;
    --success-color: #29B261;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 17px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 21px;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.6rem; }

p {
    margin-bottom: 1.4rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Container and Layout */
.ContentWrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 27px;
}

.FluidContainer {
    width: 100%;
    padding: 0;
}

.FlexRow {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.FullColumn {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 13px;
}

.HalfColumn {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 13px;
}

.ServiceCard {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 13px;
    margin-bottom: 34px;
}

.FooterColumn {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 13px;
}

.TextColumn {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 13px;
}

.ImageColumn {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 13px;
}

.HeadingColumn {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
    padding: 0 13px;
}

.MetricColumn {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 13px;
}

/* Utility Classes */
.TextAlignCenter { text-align: center; }
.CenteredDisplay { display: flex; }
.AlignmentCenter { align-items: center; }
.CenteredJustify { justify-content: center; }
.JustifyEnd { justify-content: flex-end; }
.FlexCenter { display: flex; align-items: center; }

.SectionSpacing { margin-bottom: 1.8rem; }
.ContentPadding { padding: 2.5rem; }
.VerticalPadding { padding: 4.8rem 2.5rem; }
.ContentMargin { margin-left: 1.6rem; }

.DarkText { color: var(--text-primary) !important; }
.ResponsiveImage { max-width: 100%; height: auto; }
.RoundedCorners { border-radius: 8.5px; }

.BackgroundImage {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.BackgroundOverlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Navigation Styles */
.NavigationContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(13px);
    z-index: 1000;
    padding: 13px 0;
    box-shadow: 0 3px 21px rgba(0, 0, 0, 0.08);
}

.MainNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.BrandLogo img {
    height: 47px;
    width: auto;
}

.NavigationToggle {
    display: none;
}

.ToggleControl {
    display: none;
}

.BurgerIcon {
    width: 27px;
    height: 3.4px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.34s ease;
}

.BurgerIcon:before,
.BurgerIcon:after {
    content: '';
    position: absolute;
    width: 27px;
    height: 3.4px;
    background: var(--text-primary);
    transition: all 0.34s ease;
}

.BurgerIcon:before { top: -8.7px; }
.BurgerIcon:after { top: 8.7px; }

.NavigationMenu {
    display: flex;
    align-items: center;
}

.MenuItems {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.MenuItem {
    list-style: none;
}

.MenuLink {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 8.7px 0;
    position: relative;
}

.MenuLink:hover {
    color: var(--ocean-blue);
}

.MenuLink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.1px;
    background: var(--ocean-blue);
    transition: width 0.34s ease;
}

.MenuLink:hover::after {
    width: 100%;
}

/* Hero Section */
.HeroShowcase {
    height: 100vh;
    min-height: 734px;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

.HeroContent {
    height: 100vh;
    min-height: 734px;
    position: relative;
    z-index: 2;
}

.HeroTextBlock {
    max-width: 847px;
    margin: 0 auto;
}

.MainHeading {
    font-size: 4.7rem;
    font-family: 'Raleway', serif;
    color: #fff;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 27px;
}

.SubHeading {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.91);
    line-height: 1.6;
    margin-bottom: 0;
}

.ScrollIndicator {
    width: 89px;
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 27px;
    z-index: 2;
    transform: translateX(-50%);
}

.MouseIcon {
    width: 23px;
    height: 41px;
    border: 2.1px solid white;
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.ScrollWheel {
    height: 5.5px;
    margin: 2.1px auto 0;
    display: block;
    width: 2.8px;
    background-color: white;
    border-radius: 50%;
    animation: 1.7s ease infinite wheel-animation;
}

@keyframes wheel-animation {
    0% { margin-top: 2.1px; opacity: 0; }
    30% { opacity: 1; }
    100% { margin-top: 18.7px; opacity: 0; }
}

/* About Section */
.AboutShowcase {
    position: relative;
}

.AboutShowcase .ImageColumn {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 534px;
}

.AboutShowcase .ContentColumn {
    flex: 0 0 58.33%;
    max-width: 58.33%;
}

.AboutShowcase .TextContent h2 {
    font-weight: 700;
    font-size: 2.3rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 21px;
}

.AccentBackground {
    background: var(--ocean-blue);
}

.HighlightContent {
    color: rgba(255, 255, 255, 0.92);
    padding: 4.2rem 3.4rem;
}

.HighlightContent h2 {
    font-weight: 600;
    font-size: 2.3rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 21px;
}

.HighlightContent h2 strong,
.HighlightContent h2 span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.CounterNumber {
    font-size: 3.7rem;
    color: #fff;
}

/* Button Styles */
.ActionButton {
    display: inline-block;
    padding: 13px 27px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    border: 1.8px solid transparent;
    border-radius: 5.5px;
    cursor: pointer;
    transition: all 0.27s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0px 21px 34px -11px rgba(0, 0, 0, 0.09);
}

.PrimaryStyle {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    color: #fff;
}

.PrimaryStyle:hover {
    background: transparent;
    color: var(--ocean-blue);
}

.DarkStyle {
    background: var(--charcoal-black);
    border-color: var(--charcoal-black);
    color: #fff;
}

.DarkStyle:hover {
    background: var(--charcoal-black);
    color: #fff;
}

.OutlineStyle {
    border: 1.8px solid var(--sunset-orange);
    background: transparent;
    color: var(--sunset-orange);
}

.OutlineStyle:hover {
    background: var(--sunset-orange);
    color: #fff;
}

/* Services Section */
.ServicesShowcase {
    padding: 6.7rem 0;
    position: relative;
}

.ServicesShowcase .HeadingColumn {
    margin-bottom: 34px;
}

.SubtitleText {
    font-size: 3.4rem;
    display: block;
    margin-bottom: -13px;
    font-family: "Great Vibes", cursive;
    color: var(--sunset-orange);
    line-height: 1.1;
    z-index: 1;
}

.CardItem {
    margin-bottom: 27px;
    border-radius: 8.5px;
    overflow: hidden;
    box-shadow: 0px 13px 27px rgba(0, 0, 0, 0.11);
    transition: transform 0.34s ease;
}

.CardItem:hover {
    transform: translateY(-5.5px);
}

.CardImage {
    display: block;
    height: 234px;
    background-size: cover;
    background-position: center;
}

.CardContent h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.CardContent h3 a {
    color: var(--text-primary);
}

.CardContent h3 a:hover {
    color: var(--ocean-blue);
}

.PriceDisplay span {
    color: var(--ocean-blue);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Content Image Section */
.ContentImageSection {
    padding: 6.2rem 0;
}

.TextBlock {
    padding-left: 2.7rem;
}

.TextBlock p {
    margin-bottom: 1.9rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Features Section */
.FeaturesDisplay {
    padding: 4.2rem 0;
    background: var(--cloud-white);
}

.FeatureShowcase {
    margin-bottom: 34px;
}

.FeatureShowcase .MainTitle {
    font-size: 2.1rem;
    font-weight: 620;
    color: var(--charcoal-black);
    margin-bottom: 27px;
}

.FeatureShowcase ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.FeatureShowcase ul li {
    margin-bottom: 13px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 21px;
    font-size: 1.05rem;
}

.FeatureShowcase ul li:before {
    content: "";
    width: 7.3px;
    height: 7.3px;
    background: var(--ocean-blue);
    position: absolute;
    left: 0;
    top: 9.7px;
    border-radius: 50%;
}

/* Statistics Counter */
.MetricsCounter {
    position: relative;
    z-index: 0;
    padding: 6.7rem 0;
}

.MetricsCounter .BackgroundOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.47;
    background: var(--accent-color);
    width: 100%;
}

.StatsWrapper {
    width: 100%;
    position: relative;
    z-index: 2;
}

.MetricsBlock {
    display: block;
    width: 100%;
}

.MetricContent .CounterValue {
    font-weight: 700;
    font-size: 3.4rem;
    color: #fff;
    display: block;
    position: relative;
    font-family: "Raleway", Arial, sans-serif;
}

.MetricContent span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.91);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
}

/* Testimonials */
.TestimonialsSection {
    background: #f1f3f5;
    padding: 5.5rem 0;
}

.TestimonyImage {
    display: block;
    width: 100%;
    height: 534px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8.5px;
    margin-bottom: 34px;
}

.TestimonyWrap {
    display: block;
    position: relative;
    font-size: 1.2rem;
}

.UserImage {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    position: relative;
    background-position: top center;
    background-size: cover;
}

.ClientName {
    font-weight: 620;
    margin-bottom: 5.5px;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.ClientPosition {
    font-size: 0.95rem;
    color: var(--ocean-blue);
    text-transform: uppercase;
    font-weight: 620;
    letter-spacing: 1.1px;
}

.HeadingSection h2 {
    font-size: 2.7rem;
    font-weight: 720;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--text-primary);
}

/* FAQ Section */
.FrequentlyAsked {
    position: relative;
    padding: 8.9rem 0;
}

.FrequentlyAsked .MainTitle {
    margin-bottom: 47px;
    text-align: center;
}

.FrequentlyAsked .MainTitle h1 {
    color: var(--text-primary);
    margin-top: -34px;
}

.FrequentlyAsked .MainTitle h2 {
    font-size: 5.5rem;
    color: var(--sunset-orange);
    opacity: 0.13;
    margin: 0;
    line-height: 55px;
}

.FrequentlyAsked .MainTitle p {
    font-size: 16px;
    line-height: 27px;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 634px;
    margin: auto;
}

.FrequentItem {
    position: relative;
}

.FrequentItem h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    padding-top: 34px;
    margin: 0;
    font-weight: 600;
}

.FrequentItem p {
    font-weight: 400;
    padding: 27px 21px 34px 0;
    margin: 0;
    color: var(--text-secondary);
}

.FrequentItem p:after {
    content: "";
    position: absolute;
    width: 150%;
    border: 1.3px dashed rgba(199, 199, 199, 0.55);
    left: 0;
    bottom: 0;
}

.FrequentItem.LastChild p:after {
    display: none !important;
}

.FrequentInner {
    position: relative;
    overflow: hidden;
}

.FrequentInner:after {
    content: "";
    position: absolute;
    height: 86%;
    border: 1.3px dashed rgba(199, 199, 199, 0.55);
    left: 50%;
    transform: translateX(-50%);
    top: 34px;
}

/* Footer */
.SiteFooter {
    background: var(--stone-gray);
}

.FooterTop {
    padding-top: 8.9rem;
    padding-bottom: 7.6rem;
}

.FooterWidget .FooterTitle {
    font-size: 1.4rem;
    font-weight: 620;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 34px;
}

.FooterWidget .FooterLogo {
    margin-bottom: 34px;
}

.FooterWidget .FooterLogo img {
    height: 75px;
    filter: brightness(0) invert(1);
}

.FooterWidget p {
    color: var(--silver-mist);
    line-height: 1.7;
    margin-bottom: 21px;
}

.FooterWidget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.FooterWidget ul li {
    color: var(--silver-mist);
    font-size: 15px;
    line-height: 2.1;
}

.FooterWidget ul li a {
    color: var(--silver-mist);
    transition: color 0.27s ease;
}

.FooterWidget ul li a:hover {
    color: var(--forest-green);
}

.ContactInfo p {
    margin-bottom: 1.3rem;
}

.ContactInfo strong {
    color: #fff;
}

.SocialLinks {
    margin-top: 34px;
}

.SocialLinks ul {
    display: flex;
    gap: 8.7px;
}

.SocialLinks ul li a {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #626262;
    border-radius: 50%;
    transition: all 0.27s ease;
}

.SocialLinks ul li a:hover {
    background: var(--forest-green);
}

.SocialLinks ul li a img {
    filter: brightness(0) invert(1);
    width: 18px;
    height: 18px;
}

.CopyrightText {
    padding: 27px 0;
    background: var(--charcoal-black);
}

.CopyrightNotice {
    font-size: 14px;
    color: var(--silver-mist);
    margin-bottom: 0;
    font-weight: 420;
}

.CopyrightNotice a {
    color: var(--forest-green);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .ToggleControl {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .NavigationMenu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.34s ease;
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .MenuItems {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .MenuItem {
        width: 100%;
        text-align: center;
    }

    .MenuLink {
        display: inline-block;
        padding: 13px 21px;
        font-size: 1.2rem;
        color: var(--text-primary);
    }

    .NavigationToggle:checked ~ .NavigationMenu {
        left: 0;
    }

    .NavigationToggle:checked ~ .ToggleControl .BurgerIcon {
        background: transparent;
    }

    .NavigationToggle:checked ~ .ToggleControl .BurgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .NavigationToggle:checked ~ .ToggleControl .BurgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .MetricsCounter .BackgroundOverlay {
        opacity: 0;
    }

    .MetricsCounter {
        background-position: top center !important;
    }
}

@media (max-width: 991px) {
    .MainHeading {
        font-size: 2.7rem;
    }

    .SubHeading {
        font-size: 1.1rem;
    }

    .HalfColumn,
    .ServiceCard,
    .FooterColumn,
    .TextColumn,
    .ImageColumn {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 27px;
    }

    .TextBlock {
        padding-left: 0;
        margin-bottom: 27px;
    }

    .ContentOrder {
        order: 2;
    }

    .ImageOrder {
        order: 1;
    }

    .HighlightContent {
        padding: 3.4rem 2.1rem;
    }

    .AboutShowcase .ContentColumn {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .FrequentInner:after {
        display: none;
    }

    .FrequentItem p:after {
        display: none;
    }

    .HeadingSection h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 767px) {
    .ServicesShowcase,
    .MetricsCounter,
    .FrequentlyAsked {
        padding: 4.2rem 0;
    }

    .ContentImageSection {
        padding: 3.4rem 0;
    }

    .HeroShowcase {
        min-height: 634px;
    }

    .HeroContent {
        min-height: 634px;
    }

    .MainHeading {
        font-size: 2.1rem;
    }

    .MetricWrap {
        margin-bottom: 27px;
    }

    .FrequentlyAsked .MainTitle {
        margin-bottom: 34px;
    }

    .FrequentlyAsked .MainTitle h2 {
        font-size: 2.7rem;
        line-height: 0.7;
    }

    .FrequentItem h3 {
        padding-top: 13px;
        font-size: 1.1rem;
    }

    .FrequentItem p {
        padding: 16px 0px 21px;
    }

    .FooterTop {
        padding-top: 4.2rem;
        padding-bottom: 3.4rem;
    }

    .ContentPadding {
        padding: 1.6rem;
    }

    .VerticalPadding {
        padding: 2.7rem 1.6rem;
    }
}

/* Contact Page Specific Styles */
.ContactHero {
    height: 67vh;
    min-height: 467px;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

.ContactHeroContent {
    position: relative;
    z-index: 2;
    padding-top: 89px;
}

.ContactMainHeading {
    font-size: 3.4rem;
    font-family: 'Raleway', serif;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 21px;
}

.ContactSubHeading {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.89);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 734px;
    margin: 0 auto;
}

.ContactFormSection {
    padding: 7.3rem 0;
    background: #f8f9fa;
}

.ContactFormColumn {
    flex: 0 0 58%;
    max-width: 58%;
    padding-right: 3.4rem;
}

.ContactInfoColumn {
    flex: 0 0 42%;
    max-width: 42%;
    padding-left: 2.1rem;
}

.FormContainer {
    background: #fff;
    padding: 4.2rem 3.7rem;
    border-radius: 13px;
    box-shadow: 0px 21px 47px rgba(0, 0, 0, 0.08);
}

.FormHeader {
    margin-bottom: 3.4rem;
}

.FormTitle {
    font-size: 2.3rem;
    color: var(--text-primary);
    margin-bottom: 1.3rem;
    font-weight: 600;
}

.FormDescription {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.FormGroup {
    margin-bottom: 2.7rem;
}

.FormRow {
    display: flex;
    gap: 2.1rem;
}

.HalfWidth {
    flex: 1;
}

.FormLabel {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.FormIcon {
    width: 18px;
    height: 18px;
    margin-right: 8.7px;
    filter: opacity(0.7);
}

.FormInput,
.FormSelect,
.FormTextarea {
    width: 100%;
    padding: 1.3rem 1.6rem;
    border: 2.1px solid #e1e5e9;
    border-radius: 8.7px;
    font-size: 1rem;
    transition: all 0.27s ease;
    font-family: inherit;
}

.FormInput:focus,
.FormSelect:focus,
.FormTextarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3.4px rgba(114, 9, 183, 0.1);
}

.FormTextarea {
    resize: vertical;
    min-height: 134px;
}

.CheckboxGroup,
.RadioGroup {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.CheckboxLabel,
.RadioLabel {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-secondary);
}

.CheckboxInput,
.RadioInput {
    display: none;
}

.CheckboxCustom,
.RadioCustom {
    width: 21px;
    height: 21px;
    border: 2.1px solid #e1e5e9;
    margin-right: 1.1rem;
    position: relative;
    transition: all 0.27s ease;
}

.CheckboxCustom {
    border-radius: 4.7px;
}

.RadioCustom {
    border-radius: 50%;
}

.CheckboxInput:checked + .CheckboxCustom {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.RadioInput:checked + .RadioCustom {
    border-color: var(--ocean-blue);
}

.CheckboxInput:checked + .CheckboxCustom::after {
    content: '';
    position: absolute;
    left: 6.7px;
    top: 2.8px;
    width: 5.5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.1px 2.1px 0;
    transform: rotate(45deg);
}

.RadioInput:checked + .RadioCustom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9.7px;
    height: 9.7px;
    background: var(--ocean-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.SubmitButton {
    width: 100%;
    background: var(--ocean-blue);
    color: #fff;
    border: none;
    padding: 1.6rem 2.7rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8.7px;
    cursor: pointer;
    transition: all 0.27s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.SubmitButton:hover {
    background: var(--midnight-navy);
    transform: translateY(-2.1px);
}

.ButtonIcon {
    width: 21px;
    height: 21px;
    margin-left: 8.7px;
    filter: brightness(0) invert(1);
}

.ErrorMessage {
    color: #dc3545;
    font-size: 0.87rem;
    margin-top: 0.5rem;
    display: none;
}

/* Contact Info Styles */
.ContactInfoContainer {
    background: var(--ocean-blue);
    color: #fff;
    padding: 4.2rem 3.1rem;
    border-radius: 13px;
    height: 100%;
}

.ContactInfoTitle {
    font-size: 2.1rem;
    margin-bottom: 1.6rem;
    font-weight: 600;
}

.ContactInfoDescription {
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: 3.4rem;
    line-height: 1.7;
}

.ContactInfoItem {
    display: flex;
    margin-bottom: 3.1rem;
    align-items: flex-start;
}

.ContactInfoIcon {
    width: 47px;
    height: 47px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 8.7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.8rem;
    flex-shrink: 0;
}

.ContactInfoIcon img {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.ContactInfoContent h4 {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.ContactInfoContent p {
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: 0.5rem;
}

.ContactInfoContent a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.ContactHours {
    font-size: 0.89rem;
    color: rgba(255, 255, 255, 0.67);
}

.ServiceAreaInfo {
    margin-top: 3.7rem;
    padding-top: 2.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
}

.ServiceAreaTitle {
    color: #fff;
    margin-bottom: 1.3rem;
    font-weight: 600;
}

.ServiceAreaDescription {
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: 1.6rem;
}

.ServiceAreaList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ServiceAreaList li {
    color: rgba(255, 255, 255, 0.87);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.8rem;
}

.ServiceAreaList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6.7px;
    height: 6.7px;
    background: #fff;
    border-radius: 50%;
}

/* Popup Styles */
.PopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.67);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.PopupContainer {
    background: #fff;
    border-radius: 13px;
    max-width: 467px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.PopupContent {
    padding: 4.2rem 3.4rem;
    text-align: center;
}

.PopupIcon {
    width: 67px;
    height: 67px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.7rem;
}

.PopupIcon img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.PopupTitle {
    font-size: 2.1rem;
    color: var(--text-primary);
    margin-bottom: 1.6rem;
    font-weight: 600;
}

.PopupMessage {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.7rem;
}

.PopupButton {
    background: var(--ocean-blue);
    color: #fff;
    border: none;
    padding: 1.3rem 2.7rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8.7px;
    cursor: pointer;
    transition: all 0.27s ease;
}

.PopupButton:hover {
    background: var(--midnight-navy);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .ContactMainHeading {
        font-size: 2.7rem;
    }

    .ContactFormColumn,
    .ContactInfoColumn {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 3.4rem;
    }

    .FormContainer {
        padding: 3.1rem 2.7rem;
    }

    .ContactInfoContainer {
        padding: 3.1rem 2.7rem;
    }

    .FormRow {
        flex-direction: column;
        gap: 2.7rem;
    }

    .CheckboxGroup,
    .RadioGroup {
        gap: 1.6rem;
    }
}

@media (max-width: 767px) {
    .ContactHero {
        height: 57vh;
        min-height: 434px;
    }

    .ContactMainHeading {
        font-size: 2.1rem;
    }

    .ContactSubHeading {
        font-size: 1.05rem;
    }

    .ContactFormSection {
        padding: 4.2rem 0;
    }

    .FormContainer {
        padding: 2.7rem 2.1rem;
    }

    .ContactInfoContainer {
        padding: 2.7rem 2.1rem;
    }

    .PopupContent {
        padding: 3.1rem 2.7rem;
    }
}

.policy {margin-top: 5%}