/* DvinciHR Solstice Stylesheet - Custom Design Variables */
:root {
    --crimson-flame: #d62828;
    --pearl-blush: #fbe9e9;
    --burgundy-wine: #961c1c;
    --emerald-glow: #2e8b57;
    --mint-whisper: #f0f8f5;
    --amber-sunset: #ff8b00;
    --ivory-silk: #faf8f5;
    --shadow-gray: #666666;
    --charcoal-depth: #333333;
    --ocean-mist: #e8f4f8;
    --slate-edge: #4a5568;
    --golden-hour: #f4c74f;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.7;
    color: var(--charcoal-depth);
    font-size: 17px;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 620;
    line-height: 1.3;
    margin-bottom: 21px;
}

h1 { font-size: 3.2rem; color: var(--burgundy-wine); }
h2 { font-size: 2.6rem; color: var(--slate-edge); }
h3 { font-size: 2.1rem; color: var(--charcoal-depth); }

img { max-width: 100%; height: auto; display: block; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Container Utilities */
.NavigationWrapper,
.HeroContentContainer,
.ServicesContainer,
.FeaturesContainer,
.AboutContainer,
.AboutStatsContainer,
.CardsContainer,
.StatisticsContainer,
.TextImageContainer,
.TestimonialsContainer,
.FooterContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Header Navigation */
.MainNavigationContainer {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 3px 17px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(8px);
}

.PrimaryNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 0;
    position: relative;
}

.BrandIdentityLink img {
    height: 42px;
    width: auto;
}

.MobileToggleInput {
    display: none;
}

.MobileToggleLabel {
    display: none;
}

.HamburgerIcon {
    width: 27px;
    height: 3px;
    background: var(--burgundy-wine);
    position: relative;
    transition: all 0.34s ease;
}

.HamburgerIcon:before,
.HamburgerIcon:after {
    content: '';
    position: absolute;
    width: 27px;
    height: 3px;
    background: var(--burgundy-wine);
    transition: all 0.34s ease;
}

.HamburgerIcon:before { top: -9px; }
.HamburgerIcon:after { top: 9px; }

.NavigationLinksWrapper {
    display: flex;
    align-items: center;
    gap: 23px;
    list-style: none;
}

.NavigationItem {
    list-style: none;
}

.NavigationLink {
    color: var(--charcoal-depth);
    font-size: 17px;
    font-weight: 520;
    padding: 11px 0;
    position: relative;
    transition: color 0.28s ease;
}

.NavigationLink:hover {
    color: var(--crimson-flame);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .MobileToggleLabel {
        display: block;
        cursor: pointer;
        padding: 19px;
        z-index: 2;
    }

    .NavigationLinksWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.34s ease;
        padding-top: 97px;
        flex-direction: column;
        align-items: center;
    }

    .NavigationItem {
        width: 100%;
        text-align: center;
        margin: 19px 0;
    }

    .NavigationLink {
        display: inline-block;
        padding: 13px 27px;
        font-size: 19px;
        color: var(--charcoal-depth);
    }

    .MobileToggleInput:checked ~ .NavigationLinksWrapper {
        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;
    }
}

/* Hero Section */
.HeroDisplayArea {
    background: linear-gradient(135deg, var(--crimson-flame) 0%, var(--burgundy-wine) 100%);
    min-height: 87vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 81px;
}

.HeroDisplayArea::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.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.HeroMainContent {
    width: 100%;
    position: relative;
    z-index: 2;
}

.HeroTextAlignment {
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.HeroTaglineSection {
    margin-bottom: 23px;
}

.HeroTaglineSection span {
    background: rgba(255, 255, 255, 0.23);
    color: #fff;
    padding: 13px 31px;
    border-radius: 34px;
    font-size: 19px;
    font-weight: 520;
    display: inline-block;
    backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.HeroDisplayArea h1 {
    font-size: 4.2rem;
    color: #fff;
    font-weight: 720;
    line-height: 1.1;
    margin-bottom: 17px;
}

.HeroDisplayArea h2 {
    font-size: 2.8rem;
    color: var(--golden-hour);
    font-weight: 420;
    margin-bottom: 27px;
    margin-top: -13px;
}

.HeroDisplayArea p {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.91);
    margin-bottom: 37px;
    line-height: 1.6;
}

.HeroActionButtons {
    margin-top: 42px;
}

.PrimaryActionButton {
    background: var(--golden-hour);
    color: #fff;
    padding: 17px 41px;
    border-radius: 47px;
    font-size: 18px;
    font-weight: 620;
    display: inline-block;
    transition: all 0.31s ease;
    box-shadow: 0 7px 23px rgba(244, 199, 79, 0.4);
}

.PrimaryActionButton:hover {
    background: #e89c00;
    transform: translateY(-3px);
    box-shadow: 0 11px 31px rgba(244, 199, 79, 0.6);
}

/* Responsive Hero */
@media (max-width: 890px) {
    .HeroDisplayArea h1 { font-size: 2.8rem; }
    .HeroDisplayArea h2 { font-size: 2.1rem; }
    .HeroDisplayArea p { font-size: 18px; }
}

/* Services Section */
.ServicesMainSection {
    padding: 97px 0;
    background: var(--ivory-silk);
}

.ServicesSectionHeader {
    text-align: center;
    margin-bottom: 73px;
}

.ServicesSubheading {
    font-size: 14px;
    color: var(--crimson-flame);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 620;
    display: block;
    margin-bottom: 17px;
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.ServiceItemWrapper {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 7px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.32s ease;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.ServiceItemWrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 17px 43px rgba(0, 0, 0, 0.15);
    border-color: var(--crimson-flame);
}

.ServiceIconContainer {
    width: 73px;
    height: 73px;
    background: var(--pearl-blush);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 23px;
    transition: all 0.32s ease;
}

.ServiceItemWrapper:hover .ServiceIconContainer {
    background: var(--crimson-flame);
}

.ServiceIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
    transition: filter 0.32s ease;
}

.ServiceItemWrapper:hover .ServiceIcon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.ServiceTitle {
    font-size: 19px;
    color: var(--charcoal-depth);
    margin-bottom: 13px;
    font-weight: 620;
}

.ServiceContentArea p {
    color: var(--shadow-gray);
    line-height: 1.7;
    margin-bottom: 17px;
}

.ServiceActionLink {
    color: var(--crimson-flame);
    font-weight: 620;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.28s ease;
}

.ServiceActionLink:hover {
    border-bottom-color: var(--crimson-flame);
}

/* Features Section */
.FeaturesDisplayArea {
    padding: 113px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.FeaturesMainTitle {
    text-align: center;
    margin-bottom: 73px;
}

.FeaturesMainTitle span {
    color: var(--amber-sunset);
    font-size: 27px;
    font-weight: 520;
    margin-bottom: 19px;
    display: block;
}

.FeaturesMainTitle h3 {
    font-size: 43px;
    font-weight: 720;
    color: var(--charcoal-depth);
    text-transform: uppercase;
}

.FeaturesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 31px;
    margin-bottom: 63px;
}

.FeatureContentDisplay {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.11);
    transition: all 0.34s ease;
}

.FeatureContentDisplay:hover {
    transform: translateY(-4px);
    box-shadow: 0 19px 47px rgba(0, 0, 0, 0.17);
}

.FeatureImageThumb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 23px;
    flex-shrink: 0;
    margin: 23px;
}

.FeatureImageThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.FeatureInfoSection {
    padding: 23px 23px 23px 0;
    flex: 1;
}

.FeatureInfoSection h3 {
    font-size: 23px;
    color: var(--charcoal-depth);
    font-weight: 720;
    margin-bottom: 11px;
}

.FeatureInfoSection p {
    font-size: 16px;
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 13px;
}

.FeatureInfoSection span {
    display: block;
    font-weight: 720;
    font-size: 21px;
    color: var(--crimson-flame);
}

.FeaturesActionSection {
    text-align: center;
}

.FeaturesMainButton {
    display: inline-block;
    font-size: 17px;
    font-weight: 620;
    border: 2px solid var(--crimson-flame);
    color: var(--crimson-flame);
    transition: all 0.32s ease;
    border-radius: 43px;
    padding: 19px 41px;
    cursor: pointer;
    background: transparent;
}

.FeaturesMainButton:hover {
    background: var(--crimson-flame);
    color: #fff;
    transform: translateY(-2px);
}

/* About Section */
.AboutMainSection {
    padding: 83px 0;
    background: #fff;
}

.AboutHeaderSection {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.AboutStatsSection {
    padding: 83px 0;
    background: var(--ocean-mist);
}

.AboutVideoSection {
    margin-bottom: 53px;
    text-align: center;
}

.AboutVideoPlayer {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.AboutVideoPlayer img {
    border-radius: 13px;
    max-width: 100%;
    height: auto;
}

.PlayIconWrapper {
    position: absolute;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.32s ease;
    cursor: pointer;
}

.PlayIconWrapper:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.PlayIcon {
    width: 27px;
    height: 27px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

.AboutStatsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 34px;
}

.StatBlockContent {
    text-align: center;
    background: #fff;
    padding: 41px 23px;
    border-radius: 13px;
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.09);
}

.StatNumber {
    color: var(--amber-sunset);
    font-size: 3.2rem;
    font-weight: 720;
    display: block;
    margin-bottom: 13px;
}

.StatLabel {
    font-size: 15px;
    color: var(--shadow-gray);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

/* Cards Section */
.CardsDisplayArea {
    padding: 117px 0;
    background: #fff;
}

.CardsMainContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.CardsSectionTitle h3 {
    font-size: 41px;
    font-weight: 720;
    line-height: 1.3;
    color: var(--charcoal-depth);
    margin-bottom: 23px;
}

.CardsSectionTitle h3 span {
    font-weight: 320;
    color: var(--crimson-flame);
}

.CardsSectionTitle p {
    color: var(--shadow-gray);
    line-height: 1.7;
    margin-bottom: 43px;
}

.CardsMainButton {
    background: linear-gradient(135deg, var(--crimson-flame) 0%, #ee5d10 100%);
    color: #fff;
    padding: 19px 47px;
    border-radius: 41px;
    font-size: 17px;
    font-weight: 620;
    display: inline-block;
    transition: all 0.32s ease;
    box-shadow: 0 7px 23px rgba(241, 84, 57, 0.3);
}

.CardsMainButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 37px rgba(241, 84, 57, 0.4);
}

.CardsGridLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 31px;
}

.SingleCardItem {
    background: #fff;
    padding: 34px;
    border-radius: 17px;
    box-shadow: 0 11px 37px rgba(0, 0, 0, 0.09);
    text-align: center;
    transition: all 0.34s ease;
}

.SingleCardItem:hover {
    transform: translateY(-6px);
    box-shadow: 0 19px 53px rgba(0, 0, 0, 0.15);
}

.CardIcon {
    width: 41px;
    height: 41px;
    margin: 0 auto 23px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

.CardCounter {
    font-size: 47px;
    font-weight: 720;
    color: var(--charcoal-depth);
    margin-bottom: 7px;
    line-height: 1;
}

.SingleCardItem p {
    font-size: 16px;
    color: var(--shadow-gray);
    margin: 0;
}

/* Statistics Counter Section */
.StatisticsCounterSection {
    padding: 83px 0;
    background: linear-gradient(135deg, var(--slate-edge) 0%, var(--charcoal-depth) 100%);
    position: relative;
}

.StatisticsOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.StatisticsRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
    position: relative;
    z-index: 2;
}

.StatisticsContent {
    text-align: center;
    padding: 31px 23px;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.CounterNumber {
    font-size: 3.7rem;
    font-weight: 720;
    color: var(--golden-hour);
    display: block;
    margin-bottom: 13px;
}

.StatisticsContent span {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.87);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Text and Image Section */
.TextImageMainSection {
    padding: 97px 0;
    background: var(--ivory-silk);
}

.TextImageRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.TextImageContentBlock h2 {
    color: var(--charcoal-depth);
    margin-bottom: 27px;
}

.TextImageContentBlock p {
    margin-bottom: 23px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--shadow-gray);
}

.TextImageButton {
    background: var(--amber-sunset);
    color: #fff;
    padding: 16px 34px;
    border-radius: 37px;
    font-size: 17px;
    font-weight: 620;
    display: inline-block;
    transition: all 0.31s ease;
}

.TextImageButton:hover {
    background: #e89c00;
    transform: translateY(-2px);
}

.TextImageResponsive {
    border-radius: 17px;
    box-shadow: 0 13px 41px rgba(0, 0, 0, 0.13);
}

/* Testimonials Section */
.TestimonialsMainSection {
    background: var(--ocean-mist);
    padding: 83px 0;
}

.TestimonialsRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 53px;
    align-items: center;
}

.TestimonialsImage {
    height: 470px;
    background-size: cover;
    background-position: center;
    border-radius: 17px;
}

.TestimonialsHeading h2 {
    font-size: 43px;
    font-weight: 720;
    color: var(--charcoal-depth);
    margin-bottom: 41px;
}

.TestimonialText p {
    font-size: 21px;
    line-height: 1.7;
    color: var(--shadow-gray);
    margin-bottom: 31px;
    font-style: italic;
}

.TestimonialAuthor {
    display: flex;
    align-items: center;
    gap: 19px;
}

.AuthorImage {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.AuthorName {
    font-size: 19px;
    font-weight: 620;
    color: var(--charcoal-depth);
    margin-bottom: 3px;
}

.AuthorPosition {
    font-size: 15px;
    color: var(--crimson-flame);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 620;
}

/* Footer Section */
.FooterMainSection {
    background: linear-gradient(135deg, var(--burgundy-wine) 0%, var(--charcoal-depth) 100%);
    padding: 97px 0 31px;
    position: relative;
}

.FooterOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.FooterContainer {
    position: relative;
    z-index: 2;
}

.FooterContentRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 43px;
    margin-bottom: 53px;
}

.FooterWidget h2 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 27px;
    font-weight: 620;
}

.FooterWidget p {
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.7;
    margin-bottom: 23px;
}

.FooterSocialLinks {
    display: flex;
    gap: 13px;
    list-style: none;
}

.FooterSocialLinks li a {
    width: 43px;
    height: 43px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.31s ease;
}

.FooterSocialLinks li a:hover {
    background: var(--crimson-flame);
    transform: translateY(-2px);
}

.FooterSocialLinks img {
    width: 19px;
    height: 19px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.FooterLinksList {
    list-style: none;
}

.FooterLinksList li {
    margin-bottom: 11px;
}

.FooterLinksList a {
    color: rgba(255, 255, 255, 0.83);
    transition: color 0.28s ease;
}

.FooterLinksList a:hover {
    color: #fff;
}

.FooterContactList {
    list-style: none;
}

.FooterContactList li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 17px;
}

.FooterContactIcon {
    width: 19px;
    height: 19px;
    filter: brightness(0) saturate(100%) invert(100%);
    margin-top: 3px;
    flex-shrink: 0;
}

.FooterContactList span {
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.5;
}

.FooterBottomRow {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 31px;
    text-align: center;
}

.FooterCopyright p {
    color: rgba(255, 255, 255, 0.73);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .CardsMainContent,
    .TextImageRow,
    .TestimonialsRow {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .TextImageColumnImage {
        order: -1;
    }
}

@media (max-width: 890px) {
    .HeroDisplayArea {
        padding: 63px 0;
        min-height: 70vh;
    }

    .ServicesMainSection,
    .FeaturesDisplayArea,
    .AboutMainSection,
    .AboutStatsSection,
    .CardsDisplayArea,
    .StatisticsCounterSection,
    .TextImageMainSection,
    .TestimonialsMainSection,
    .FooterMainSection {
        padding: 63px 0 31px;
    }

    .ServicesGrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .CardsGridLayout {
        grid-template-columns: 1fr;
    }

    .StatisticsRow,
    .AboutStatsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 23px;
    }
}

@media (max-width: 640px) {
    .StatisticsRow,
    .AboutStatsGrid {
        grid-template-columns: 1fr;
    }

    .FooterContentRow {
        grid-template-columns: 1fr;
        gap: 31px;
    }
}

/* Animation Classes */
.CounterNumber,
.StatNumber,
.CardCounter {
    transition: all 0.6s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--crimson-flame);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-wine);
}

/* DvinciHR Solstice Stylesheet - Custom Design Variables */
:root {
    --crimson-flame: #d62828;
    --pearl-blush: #fbe9e9;
    --burgundy-wine: #961c1c;
    --emerald-glow: #2e8b57;
    --mint-whisper: #f0f8f5;
    --amber-sunset: #ff8b00;
    --ivory-silk: #faf8f5;
    --shadow-gray: #666666;
    --charcoal-depth: #333333;
    --ocean-mist: #e8f4f8;
    --slate-edge: #4a5568;
    --golden-hour: #f4c74f;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.7;
    color: var(--charcoal-depth);
    font-size: 17px;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 620;
    line-height: 1.3;
    margin-bottom: 21px;
}

h1 { font-size: 3.2rem; color: var(--burgundy-wine); }
h2 { font-size: 2.6rem; color: var(--slate-edge); }
h3 { font-size: 2.1rem; color: var(--charcoal-depth); }

img { max-width: 100%; height: auto; display: block; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Container Utilities */
.NavigationWrapper,
.HeroContentContainer,
.ServicesContainer,
.FeaturesContainer,
.AboutContainer,
.AboutStatsContainer,
.CardsContainer,
.StatisticsContainer,
.TextImageContainer,
.TestimonialsContainer,
.FooterContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Header Navigation */
.MainNavigationContainer {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 3px 17px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(8px);
}

.PrimaryNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 0;
    position: relative;
}

.BrandIdentityLink img {
    height: 42px;
    width: auto;
}

.MobileToggleInput {
    display: none;
}

.MobileToggleLabel {
    display: none;
}

.HamburgerIcon {
    width: 27px;
    height: 3px;
    background: var(--burgundy-wine);
    position: relative;
    transition: all 0.34s ease;
}

.HamburgerIcon:before,
.HamburgerIcon:after {
    content: '';
    position: absolute;
    width: 27px;
    height: 3px;
    background: var(--burgundy-wine);
    transition: all 0.34s ease;
}

.HamburgerIcon:before { top: -9px; }
.HamburgerIcon:after { top: 9px; }

.NavigationLinksWrapper {
    display: flex;
    align-items: center;
    gap: 23px;
    list-style: none;
}

.NavigationItem {
    list-style: none;
}

.NavigationLink {
    color: var(--charcoal-depth);
    font-size: 17px;
    font-weight: 520;
    padding: 11px 0;
    position: relative;
    transition: color 0.28s ease;
}

.NavigationLink:hover {
    color: var(--crimson-flame);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .MobileToggleLabel {
        display: block;
        cursor: pointer;
        padding: 19px;
        z-index: 2;
    }

    .NavigationLinksWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.34s ease;
        padding-top: 97px;
        flex-direction: column;
        align-items: center;
    }

    .NavigationItem {
        width: 100%;
        text-align: center;
        margin: 19px 0;
    }

    .NavigationLink {
        display: inline-block;
        padding: 13px 27px;
        font-size: 19px;
        color: var(--charcoal-depth);
    }

    .MobileToggleInput:checked ~ .NavigationLinksWrapper {
        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;
    }
}

/* Hero Section */
.HeroDisplayArea {
    background: linear-gradient(135deg, var(--crimson-flame) 0%, var(--burgundy-wine) 100%);
    min-height: 87vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 81px;
}

.HeroDisplayArea::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.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.HeroMainContent {
    width: 100%;
    position: relative;
    z-index: 2;
}

.HeroTextAlignment {
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.HeroTaglineSection {
    margin-bottom: 23px;
}

.HeroTaglineSection span {
    background: rgba(255, 255, 255, 0.23);
    color: #fff;
    padding: 13px 31px;
    border-radius: 34px;
    font-size: 19px;
    font-weight: 520;
    display: inline-block;
    backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.HeroDisplayArea h1 {
    font-size: 4.2rem;
    color: #fff;
    font-weight: 720;
    line-height: 1.1;
    margin-bottom: 17px;
}

.HeroDisplayArea h2 {
    font-size: 2.8rem;
    color: var(--golden-hour);
    font-weight: 420;
    margin-bottom: 27px;
    margin-top: -13px;
}

.HeroDisplayArea p {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.91);
    margin-bottom: 37px;
    line-height: 1.6;
}

.HeroActionButtons {
    margin-top: 42px;
}

.PrimaryActionButton {
    background: var(--golden-hour);
    color: #fff;
    padding: 17px 41px;
    border-radius: 47px;
    font-size: 18px;
    font-weight: 620;
    display: inline-block;
    transition: all 0.31s ease;
    box-shadow: 0 7px 23px rgba(244, 199, 79, 0.4);
}

.PrimaryActionButton:hover {
    background: #e89c00;
    transform: translateY(-3px);
    box-shadow: 0 11px 31px rgba(244, 199, 79, 0.6);
}

/* Responsive Hero */
@media (max-width: 890px) {
    .HeroDisplayArea h1 { font-size: 2.8rem; }
    .HeroDisplayArea h2 { font-size: 2.1rem; }
    .HeroDisplayArea p { font-size: 18px; }
}

/* Services Section */
.ServicesMainSection {
    padding: 97px 0;
    background: var(--ivory-silk);
}

.ServicesSectionHeader {
    text-align: center;
    margin-bottom: 73px;
}

.ServicesSubheading {
    font-size: 14px;
    color: var(--crimson-flame);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 620;
    display: block;
    margin-bottom: 17px;
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.ServiceItemWrapper {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 7px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.32s ease;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.ServiceItemWrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 17px 43px rgba(0, 0, 0, 0.15);
    border-color: var(--crimson-flame);
}

.ServiceIconContainer {
    width: 73px;
    height: 73px;
    background: var(--pearl-blush);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 23px;
    transition: all 0.32s ease;
}

.ServiceItemWrapper:hover .ServiceIconContainer {
    background: var(--crimson-flame);
}

.ServiceIcon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
    transition: filter 0.32s ease;
}

.ServiceItemWrapper:hover .ServiceIcon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.ServiceTitle {
    font-size: 19px;
    color: var(--charcoal-depth);
    margin-bottom: 13px;
    font-weight: 620;
}

.ServiceContentArea p {
    color: var(--shadow-gray);
    line-height: 1.7;
    margin-bottom: 17px;
}

.ServiceActionLink {
    color: var(--crimson-flame);
    font-weight: 620;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.28s ease;
}

.ServiceActionLink:hover {
    border-bottom-color: var(--crimson-flame);
}

/* Features Section */
.FeaturesDisplayArea {
    padding: 113px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.FeaturesMainTitle {
    text-align: center;
    margin-bottom: 73px;
}

.FeaturesMainTitle span {
    color: var(--amber-sunset);
    font-size: 27px;
    font-weight: 520;
    margin-bottom: 19px;
    display: block;
}

.FeaturesMainTitle h3 {
    font-size: 43px;
    font-weight: 720;
    color: var(--charcoal-depth);
    text-transform: uppercase;
}

.FeaturesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 31px;
    margin-bottom: 63px;
}

.FeatureContentDisplay {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.11);
    transition: all 0.34s ease;
}

.FeatureContentDisplay:hover {
    transform: translateY(-4px);
    box-shadow: 0 19px 47px rgba(0, 0, 0, 0.17);
}

.FeatureImageThumb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 23px;
    flex-shrink: 0;
    margin: 23px;
}

.FeatureImageThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.FeatureInfoSection {
    padding: 23px 23px 23px 0;
    flex: 1;
}

.FeatureInfoSection h3 {
    font-size: 23px;
    color: var(--charcoal-depth);
    font-weight: 720;
    margin-bottom: 11px;
}

.FeatureInfoSection p {
    font-size: 16px;
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 13px;
}

.FeatureInfoSection span {
    display: block;
    font-weight: 720;
    font-size: 21px;
    color: var(--crimson-flame);
}

.FeaturesActionSection {
    text-align: center;
}

.FeaturesMainButton {
    display: inline-block;
    font-size: 17px;
    font-weight: 620;
    border: 2px solid var(--crimson-flame);
    color: var(--crimson-flame);
    transition: all 0.32s ease;
    border-radius: 43px;
    padding: 19px 41px;
    cursor: pointer;
    background: transparent;
}

.FeaturesMainButton:hover {
    background: var(--crimson-flame);
    color: #fff;
    transform: translateY(-2px);
}

/* About Section */
.AboutMainSection {
    padding: 83px 0;
    background: #fff;
}

.AboutHeaderSection {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.AboutStatsSection {
    padding: 83px 0;
    background: var(--ocean-mist);
}

.AboutVideoSection {
    margin-bottom: 53px;
    text-align: center;
}

.AboutVideoPlayer {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.AboutVideoPlayer img {
    border-radius: 13px;
    max-width: 100%;
    height: auto;
}

.PlayIconWrapper {
    position: absolute;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.32s ease;
    cursor: pointer;
}

.PlayIconWrapper:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.PlayIcon {
    width: 27px;
    height: 27px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

.AboutStatsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 34px;
}

.StatBlockContent {
    text-align: center;
    background: #fff;
    padding: 41px 23px;
    border-radius: 13px;
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.09);
}

.StatNumber {
    color: var(--amber-sunset);
    font-size: 3.2rem;
    font-weight: 720;
    display: block;
    margin-bottom: 13px;
}

.StatLabel {
    font-size: 15px;
    color: var(--shadow-gray);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

/* Cards Section */
.CardsDisplayArea {
    padding: 117px 0;
    background: #fff;
}

.CardsMainContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.CardsSectionTitle h3 {
    font-size: 41px;
    font-weight: 720;
    line-height: 1.3;
    color: var(--charcoal-depth);
    margin-bottom: 23px;
}

.CardsSectionTitle h3 span {
    font-weight: 320;
    color: var(--crimson-flame);
}

.CardsSectionTitle p {
    color: var(--shadow-gray);
    line-height: 1.7;
    margin-bottom: 43px;
}

.CardsMainButton {
    background: linear-gradient(135deg, var(--crimson-flame) 0%, #ee5d10 100%);
    color: #fff;
    padding: 19px 47px;
    border-radius: 41px;
    font-size: 17px;
    font-weight: 620;
    display: inline-block;
    transition: all 0.32s ease;
    box-shadow: 0 7px 23px rgba(241, 84, 57, 0.3);
}

.CardsMainButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 37px rgba(241, 84, 57, 0.4);
}

.CardsGridLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 31px;
}

.SingleCardItem {
    background: #fff;
    padding: 34px;
    border-radius: 17px;
    box-shadow: 0 11px 37px rgba(0, 0, 0, 0.09);
    text-align: center;
    transition: all 0.34s ease;
}

.SingleCardItem:hover {
    transform: translateY(-6px);
    box-shadow: 0 19px 53px rgba(0, 0, 0, 0.15);
}

.CardIcon {
    width: 41px;
    height: 41px;
    margin: 0 auto 23px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

.CardCounter {
    font-size: 47px;
    font-weight: 720;
    color: var(--charcoal-depth);
    margin-bottom: 7px;
    line-height: 1;
}

.SingleCardItem p {
    font-size: 16px;
    color: var(--shadow-gray);
    margin: 0;
}

/* Statistics Counter Section */
.StatisticsCounterSection {
    padding: 83px 0;
    background: linear-gradient(135deg, var(--slate-edge) 0%, var(--charcoal-depth) 100%);
    position: relative;
}

.StatisticsOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.StatisticsRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
    position: relative;
    z-index: 2;
}

.StatisticsContent {
    text-align: center;
    padding: 31px 23px;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.CounterNumber {
    font-size: 3.7rem;
    font-weight: 720;
    color: var(--golden-hour);
    display: block;
    margin-bottom: 13px;
}

.StatisticsContent span {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.87);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Text and Image Section */
.TextImageMainSection {
    padding: 97px 0;
    background: var(--ivory-silk);
}

.TextImageRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.TextImageContentBlock h2 {
    color: var(--charcoal-depth);
    margin-bottom: 27px;
}

.TextImageContentBlock p {
    margin-bottom: 23px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--shadow-gray);
}

.TextImageButton {
    background: var(--amber-sunset);
    color: #fff;
    padding: 16px 34px;
    border-radius: 37px;
    font-size: 17px;
    font-weight: 620;
    display: inline-block;
    transition: all 0.31s ease;
}

.TextImageButton:hover {
    background: #e89c00;
    transform: translateY(-2px);
}

.TextImageResponsive {
    border-radius: 17px;
    box-shadow: 0 13px 41px rgba(0, 0, 0, 0.13);
}

/* Testimonials Section */
.TestimonialsMainSection {
    background: var(--ocean-mist);
    padding: 83px 0;
}

.TestimonialsRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 53px;
    align-items: center;
}

.TestimonialsImage {
    height: 470px;
    background-size: cover;
    background-position: center;
    border-radius: 17px;
}

.TestimonialsHeading h2 {
    font-size: 43px;
    font-weight: 720;
    color: var(--charcoal-depth);
    margin-bottom: 41px;
}

.TestimonialText p {
    font-size: 21px;
    line-height: 1.7;
    color: var(--shadow-gray);
    margin-bottom: 31px;
    font-style: italic;
}

.TestimonialAuthor {
    display: flex;
    align-items: center;
    gap: 19px;
}

.AuthorImage {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.AuthorName {
    font-size: 19px;
    font-weight: 620;
    color: var(--charcoal-depth);
    margin-bottom: 3px;
}

.AuthorPosition {
    font-size: 15px;
    color: var(--crimson-flame);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 620;
}

/* Footer Section */
.FooterMainSection {
    background: linear-gradient(135deg, var(--burgundy-wine) 0%, var(--charcoal-depth) 100%);
    padding: 97px 0 31px;
    position: relative;
}

.FooterOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.FooterContainer {
    position: relative;
    z-index: 2;
}

.FooterContentRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 43px;
    margin-bottom: 53px;
}

.FooterWidget h2 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 27px;
    font-weight: 620;
}

.FooterWidget p {
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.7;
    margin-bottom: 23px;
}

.FooterSocialLinks {
    display: flex;
    gap: 13px;
    list-style: none;
}

.FooterSocialLinks li a {
    width: 43px;
    height: 43px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.31s ease;
}

.FooterSocialLinks li a:hover {
    background: var(--crimson-flame);
    transform: translateY(-2px);
}

.FooterSocialLinks img {
    width: 19px;
    height: 19px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.FooterLinksList {
    list-style: none;
}

.FooterLinksList li {
    margin-bottom: 11px;
}

.FooterLinksList a {
    color: rgba(255, 255, 255, 0.83);
    transition: color 0.28s ease;
}

.FooterLinksList a:hover {
    color: #fff;
}

.FooterContactList {
    list-style: none;
}

.FooterContactList li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 17px;
}

.FooterContactIcon {
    width: 19px;
    height: 19px;
    filter: brightness(0) saturate(100%) invert(100%);
    margin-top: 3px;
    flex-shrink: 0;
}

.FooterContactList span {
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.5;
}

.FooterBottomRow {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 31px;
    text-align: center;
}

.FooterCopyright p {
    color: rgba(255, 255, 255, 0.73);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .CardsMainContent,
    .TextImageRow,
    .TestimonialsRow {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .TextImageColumnImage {
        order: -1;
    }
}

@media (max-width: 890px) {
    .HeroDisplayArea {
        padding: 63px 0;
        min-height: 70vh;
    }

    .ServicesMainSection,
    .FeaturesDisplayArea,
    .AboutMainSection,
    .AboutStatsSection,
    .CardsDisplayArea,
    .StatisticsCounterSection,
    .TextImageMainSection,
    .TestimonialsMainSection,
    .FooterMainSection {
        padding: 63px 0 31px;
    }

    .ServicesGrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .CardsGridLayout {
        grid-template-columns: 1fr;
    }

    .StatisticsRow,
    .AboutStatsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 23px;
    }
}

@media (max-width: 640px) {
    .StatisticsRow,
    .AboutStatsGrid {
        grid-template-columns: 1fr;
    }

    .FooterContentRow {
        grid-template-columns: 1fr;
        gap: 31px;
    }
}

/* Animation Classes */
.CounterNumber,
.StatNumber,
.CardCounter {
    transition: all 0.6s ease;
}

/* Ripple Effect Animation */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button positioning for ripple effect */
.PrimaryActionButton,
.FeaturesMainButton,
.CardsMainButton,
.TextImageButton {
    position: relative;
    overflow: hidden;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.ServiceIcon:hover,
.CardIcon:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.PlayIconWrapper {
    animation: float 3s ease-in-out infinite;
}

/* Gradient Text Effect */
.HeroDisplayArea h1 {
    background: linear-gradient(135deg, #fff 0%, var(--golden-hour) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Button Hover States */
.PrimaryActionButton:hover {
    background: linear-gradient(135deg, var(--golden-hour) 0%, #e89c00 100%);
    box-shadow: 0 15px 35px rgba(244, 199, 79, 0.6);
}

.ServiceActionLink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson-flame);
    transition: width 0.3s ease;
}

.ServiceActionLink:hover::after {
    width: 100%;
}

.ServiceActionLink {
    position: relative;
}

/* Enhanced Shadow Effects */
.ServiceItemWrapper:hover {
    box-shadow:
            0 20px 50px rgba(214, 40, 40, 0.15),
            0 0 0 1px rgba(214, 40, 40, 0.1);
}

.SingleCardItem:hover {
    box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.18),
            0 0 0 1px rgba(214, 40, 40, 0.1);
}

/* Stagger Animation Delays */
.ServiceItemContainer:nth-child(1) { animation-delay: 0.1s; }
.ServiceItemContainer:nth-child(2) { animation-delay: 0.2s; }
.ServiceItemContainer:nth-child(3) { animation-delay: 0.3s; }
.ServiceItemContainer:nth-child(4) { animation-delay: 0.4s; }
.ServiceItemContainer:nth-child(5) { animation-delay: 0.5s; }
.ServiceItemContainer:nth-child(6) { animation-delay: 0.6s; }

/* Improved Focus States for Accessibility */
.NavigationLink:focus,
.PrimaryActionButton:focus,
.ServiceActionLink:focus,
.FeaturesMainButton:focus,
.CardsMainButton:focus,
.TextImageButton:focus {
    outline: 2px solid var(--crimson-flame);
    outline-offset: 2px;
}

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--crimson-flame);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-wine);
}

/* Dark Mode Support (for future implementation) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --bg-primary: #1a1a1a;
        --bg-secondary: #2d2d2d;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Awards Section Styles */
.AwardsMainSection {
    padding: 97px 0;
    background: linear-gradient(135deg, var(--ivory-silk) 0%, var(--pearl-blush) 100%);
}

.AwardsSectionHeader {
    text-align: center;
    margin-bottom: 73px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.AwardsSubheading {
    font-size: 14px;
    color: var(--crimson-flame);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 620;
    display: block;
    margin-bottom: 17px;
}

.AwardsHeaderContent h2 {
    font-size: 2.8rem;
    color: var(--charcoal-depth);
    margin-bottom: 21px;
}

.AwardsHeaderContent p {
    font-size: 18px;
    color: var(--shadow-gray);
    line-height: 1.7;
}

.AwardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 27px;
}

.AwardItemCard {
    background: #fff;
    border-radius: 17px;
    padding: 31px 27px;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.08);
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.AwardItemCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson-flame) 0%, var(--golden-hour) 100%);
}

.AwardItemCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 19px 47px rgba(214, 40, 40, 0.15);
    border-color: var(--crimson-flame);
}

.AwardYear {
    display: inline-block;
    background: var(--crimson-flame);
    color: #fff;
    padding: 7px 19px;
    border-radius: 23px;
    font-size: 15px;
    font-weight: 620;
    margin-bottom: 21px;
}

.AwardContent {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.AwardIcon {
    width: 31px;
    height: 31px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
    flex-shrink: 0;
    margin-top: 3px;
}

.AwardContent h3 {
    font-size: 17px;
    color: var(--charcoal-depth);
    font-weight: 620;
    line-height: 1.4;
    margin: 0;
}

/* Trust Section Styles */
.TrustMainSection {
    padding: 97px 0;
    background: #fff;
}

.TrustContentWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.TrustImage {
    border-radius: 17px;
    box-shadow: 0 13px 41px rgba(0, 0, 0, 0.12);
    transition: transform 0.34s ease;
}

.TrustImage:hover {
    transform: scale(1.02);
}

.TrustSubheading {
    font-size: 14px;
    color: var(--crimson-flame);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 620;
    display: block;
    margin-bottom: 17px;
}

.TrustContentBlock h2 {
    font-size: 2.4rem;
    color: var(--charcoal-depth);
    margin-bottom: 23px;
    line-height: 1.3;
}

.TrustContentBlock p {
    font-size: 18px;
    color: var(--shadow-gray);
    line-height: 1.7;
    margin-bottom: 31px;
}

.TrustLink {
    color: var(--crimson-flame);
    font-weight: 620;
    text-decoration: underline;
    transition: color 0.28s ease;
}

.TrustLink:hover {
    color: var(--burgundy-wine);
}

.TrustFeaturesList {
    margin-bottom: 37px;
}

.TrustFeatureItem {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 17px;
    padding: 11px 0;
}

.TrustFeatureIcon {
    width: 23px;
    height: 23px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
    flex-shrink: 0;
}

.TrustFeatureItem span {
    font-size: 16px;
    color: var(--charcoal-depth);
    font-weight: 520;
}

.TrustActionSection {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.TrustButton {
    background: linear-gradient(135deg, var(--crimson-flame) 0%, #ee5d10 100%);
    color: #fff;
    padding: 17px 37px;
    border-radius: 41px;
    font-size: 17px;
    font-weight: 620;
    display: inline-block;
    transition: all 0.32s ease;
    box-shadow: 0 7px 23px rgba(241, 84, 57, 0.3);
    align-self: flex-start;
}

.TrustButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 37px rgba(241, 84, 57, 0.4);
}

.TrustSecondaryLink {
    color: var(--crimson-flame);
    font-size: 15px;
    font-weight: 520;
    text-decoration: underline;
    transition: color 0.28s ease;
    align-self: flex-start;
}

.TrustSecondaryLink:hover {
    color: var(--burgundy-wine);
}

/* Responsive Styles for New Sections */
@media (max-width: 1280px) {
    .TrustContentWrapper {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .TrustImageColumn {
        order: -1;
    }
}

@media (max-width: 890px) {
    .AwardsMainSection,
    .TrustMainSection {
        padding: 63px 0;
    }

    .AwardsGrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .AwardsSectionHeader {
        margin-bottom: 53px;
    }

    .AwardsHeaderContent h2 {
        font-size: 2.2rem;
    }

    .TrustContentBlock h2 {
        font-size: 2rem;
    }

    .TrustActionSection {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .AwardItemCard {
        padding: 23px 19px;
    }

    .AwardContent {
        flex-direction: column;
        gap: 13px;
    }

    .AwardIcon {
        align-self: center;
    }

    .AwardContent h3 {
        text-align: center;
    }
}

/* Awards Section Styles */
.AwardsMainSection {
    padding: 97px 0;
    background: linear-gradient(135deg, var(--ivory-silk) 0%, var(--pearl-blush) 100%);
}

.AwardsContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

.AwardsSectionHeader {
    text-align: center;
    margin-bottom: 73px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 73px;
}

.AwardsSubheading {
    font-size: 14px;
    color: var(--crimson-flame);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 620;
    display: block;
    margin-bottom: 17px;
}

.AwardsHeaderContent h2 {
    font-size: 2.8rem;
    color: var(--charcoal-depth);
    margin-bottom: 21px;
}

.AwardsHeaderContent p {
    font-size: 18px;
    color: var(--shadow-gray);
    line-height: 1.7;
}

.AwardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 27px;
}

.AwardItemCard {
    background: #fff;
    border-radius: 17px;
    padding: 31px 27px;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.08);
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.AwardItemCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson-flame) 0%, var(--golden-hour) 100%);
}

.AwardItemCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 19px 47px rgba(214, 40, 40, 0.15);
    border-color: var(--crimson-flame);
}

.AwardYear {
    display: inline-block;
    background: var(--crimson-flame);
    color: #fff;
    padding: 7px 19px;
    border-radius: 23px;
    font-size: 15px;
    font-weight: 620;
    margin-bottom: 21px;
}

.AwardContent {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.AwardIcon {
    width: 31px;
    height: 31px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
    flex-shrink: 0;
    margin-top: 3px;
}

.AwardContent h3 {
    font-size: 17px;
    color: var(--charcoal-depth);
    font-weight: 620;
    line-height: 1.4;
    margin: 0;
}

/* Trust Section Styles */
.TrustMainSection {
    padding: 97px 0;
    background: #fff;
}

.TrustContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

.TrustContentWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.TrustImage {
    border-radius: 17px;
    box-shadow: 0 13px 41px rgba(0, 0, 0, 0.12);
    transition: transform 0.34s ease;
    width: 100%;
    height: auto;
}

.TrustImage:hover {
    transform: scale(1.02);
}

.TrustSubheading {
    font-size: 14px;
    color: var(--crimson-flame);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 620;
    display: block;
    margin-bottom: 17px;
}

.TrustContentBlock h2 {
    font-size: 2.4rem;
    color: var(--charcoal-depth);
    margin-bottom: 23px;
    line-height: 1.3;
}

.TrustContentBlock p {
    font-size: 18px;
    color: var(--shadow-gray);
    line-height: 1.7;
    margin-bottom: 31px;
}

.TrustLink {
    color: var(--crimson-flame);
    font-weight: 620;
    text-decoration: underline;
    transition: color 0.28s ease;
}

.TrustLink:hover {
    color: var(--burgundy-wine);
}

.TrustFeaturesList {
    margin-bottom: 37px;
}

.TrustFeatureItem {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 17px;
    padding: 11px 0;
}

.TrustFeatureIcon {
    width: 23px;
    height: 23px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
    flex-shrink: 0;
}

.TrustFeatureItem span {
    font-size: 16px;
    color: var(--charcoal-depth);
    font-weight: 520;
}

.TrustActionSection {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.TrustButton {
    background: linear-gradient(135deg, var(--crimson-flame) 0%, #ee5d10 100%);
    color: #fff;
    padding: 17px 37px;
    border-radius: 41px;
    font-size: 17px;
    font-weight: 620;
    display: inline-block;
    transition: all 0.32s ease;
    box-shadow: 0 7px 23px rgba(241, 84, 57, 0.3);
    align-self: flex-start;
}

.TrustButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 37px rgba(241, 84, 57, 0.4);
}

.TrustSecondaryLink {
    color: var(--crimson-flame);
    font-size: 15px;
    font-weight: 520;
    text-decoration: underline;
    transition: color 0.28s ease;
    align-self: flex-start;
}

.TrustSecondaryLink:hover {
    color: var(--burgundy-wine);
}

/* Responsive Styles for New Sections */
@media (max-width: 1280px) {
    .TrustContentWrapper {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .TrustImageColumn {
        order: -1;
    }
}

@media (max-width: 890px) {
    .AwardsMainSection,
    .TrustMainSection {
        padding: 63px 0;
    }

    .AwardsGrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .AwardsSectionHeader {
        margin-bottom: 53px;
    }

    .AwardsHeaderContent h2 {
        font-size: 2.2rem;
    }

    .TrustContentBlock h2 {
        font-size: 2rem;
    }

    .TrustActionSection {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .AwardItemCard {
        padding: 23px 19px;
    }

    .AwardContent {
        flex-direction: column;
        gap: 13px;
    }

    .AwardIcon {
        align-self: center;
    }

    .AwardContent h3 {
        text-align: center;
    }
}

/* Modern Hero Section */
.ModernHeroSection {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, var(--ivory-silk) 50%, var(--pearl-blush) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.ModernHeroContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
    position: relative;
    z-index: 3;
}

.ModernHeroContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 73px;
    align-items: center;
}

.ModernHeroText h1 {
    font-size: 3.8rem;
    font-weight: 720;
    color: var(--charcoal-depth);
    line-height: 1.1;
    margin-bottom: 17px;
}

.HighlightText {
    background: linear-gradient(135deg, var(--crimson-flame) 0%, var(--golden-hour) 100%);
    padding: 4px 13px;
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    margin: 0 7px;
    font-weight: 620;
}

.ModernHeroText h2 {
    font-size: 2.1rem;
    color: var(--slate-edge);
    font-weight: 520;
    margin-bottom: 27px;
}

.ModernHeroText p {
    font-size: 18px;
    color: var(--shadow-gray);
    line-height: 1.7;
    margin-bottom: 37px;
    max-width: 90%;
}

.ModernHeroActions {
    display: flex;
    gap: 19px;
    margin-bottom: 43px;
    flex-wrap: wrap;
}

.ModernPrimaryButton {
    background: var(--crimson-flame);
    color: #fff;
    padding: 17px 31px;
    border-radius: 11px;
    font-size: 17px;
    font-weight: 620;
    transition: all 0.32s ease;
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.3);
}

.ModernPrimaryButton:hover {
    background: var(--burgundy-wine);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.4);
}

.ModernSecondaryButton {
    background: transparent;
    color: var(--charcoal-depth);
    padding: 17px 31px;
    border: 2px solid var(--charcoal-depth);
    border-radius: 11px;
    font-size: 17px;
    font-weight: 620;
    transition: all 0.32s ease;
}

.ModernSecondaryButton:hover {
    background: var(--charcoal-depth);
    color: #fff;
    transform: translateY(-2px);
}

.ModernSocialLinks {
    display: flex;
    align-items: center;
    gap: 17px;
}

.SocialLabel {
    font-size: 15px;
    color: var(--shadow-gray);
    font-weight: 520;
}

.SocialIconsWrapper {
    display: flex;
    gap: 11px;
}

.SocialIcon {
    width: 37px;
    height: 37px;
    background: rgba(214, 40, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.32s ease;
}

.SocialIcon:hover {
    background: var(--crimson-flame);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(214, 40, 40, 0.3);
}

.SocialIconImage {
    width: 17px;
    height: 17px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
    transition: filter 0.32s ease;
}

.SocialIcon:hover .SocialIconImage {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Hero Right Side */
.ModernHeroImageWrapper {
    position: relative;
    height: 500px;
}

.FloatingElements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.FloatingCard {
    position: absolute;
    background: #fff;
    padding: 13px 19px;
    border-radius: 13px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 520;
    color: var(--charcoal-depth);
    border: 1px solid rgba(214, 40, 40, 0.1);
    animation: float 6s ease-in-out infinite;
}

.FloatingCard1 {
    top: 23px;
    right: 47px;
    animation-delay: 0s;
}

.FloatingCard2 {
    bottom: 83px;
    left: 31px;
    animation-delay: 2s;
}

.FloatingCard3 {
    top: 153px;
    left: 73px;
    animation-delay: 4s;
}

.FloatingIcon {
    width: 19px;
    height: 19px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

.MainDashboardImage {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.DashboardScreenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.DashboardOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 31px 23px;
    color: #fff;
}

.OverlayContent h3 {
    font-size: 19px;
    font-weight: 620;
    margin-bottom: 7px;
}

.OverlayContent p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 17px;
}

.FakeProgressBars {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ProgressBar {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.ProgressBar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--golden-hour);
    border-radius: 2px;
    animation: progress 3s ease-in-out infinite;
}

.ProgressBar:nth-child(1)::after { width: 70%; animation-delay: 0s; }
.ProgressBar:nth-child(2)::after { width: 45%; animation-delay: 1s; }
.ProgressBar:nth-child(3)::after { width: 85%; animation-delay: 2s; }

/* Background Shapes */
.HeroBackgroundShapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.BackgroundShape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.Shape1 {
    width: 340px;
    height: 340px;
    background: linear-gradient(135deg, var(--golden-hour) 0%, var(--amber-sunset) 100%);
    top: -170px;
    right: -170px;
    animation: rotate 20s linear infinite;
}

.Shape2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--emerald-glow) 0%, var(--mint-whisper) 100%);
    bottom: -100px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.Shape3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--crimson-flame) 0%, var(--pearl-blush) 100%);
    top: 50%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: var(--target-width, 70%); }
    100% { width: 0%; }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .ModernHeroContent {
        grid-template-columns: 1fr;
        gap: 53px;
        text-align: center;
    }

    .ModernHeroRight {
        order: -1;
    }

    .ModernHeroImageWrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 890px) {
    .ModernHeroSection {
        padding: 100px 0 60px;
        min-height: 70vh;
    }

    .ModernHeroText h1 {
        font-size: 2.8rem;
    }

    .ModernHeroText h2 {
        font-size: 1.8rem;
    }

    .ModernHeroActions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .ModernPrimaryButton,
    .ModernSecondaryButton {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .ModernSocialLinks {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .ModernHeroImageWrapper {
        height: 350px;
    }

    .FloatingCard {
        padding: 9px 13px;
        font-size: 12px;
    }

    .FloatingIcon {
        width: 15px;
        height: 15px;
    }

    .HighlightText {
        display: block;
        margin: 7px 0;
    }
}

/* Contact Page Specific Styles */

/* Contact Hero Section */
.ContactHeroSection {
    padding: 140px 0 73px;
    background: linear-gradient(135deg, var(--crimson-flame) 0%, var(--burgundy-wine) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ContactHeroSection::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"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    opacity: 0.3;
}

.ContactHeroContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
    position: relative;
    z-index: 2;
}

.ContactHeroSubheading {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 620;
    display: block;
    margin-bottom: 19px;
    opacity: 0.9;
}

.ContactHeroContent h1 {
    font-size: 3.4rem;
    font-weight: 720;
    line-height: 1.2;
    margin-bottom: 23px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ContactHeroContent p {
    font-size: 19px;
    opacity: 0.87;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Main Section */
.ContactMainSection {
    padding: 97px 0;
    background: var(--ivory-silk);
}

.ContactMainContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

.ContactContentWrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 73px;
    align-items: flex-start;
}

/* Contact Form Styles */
.ContactFormWrapper {
    background: #fff;
    padding: 43px;
    border-radius: 17px;
    box-shadow: 0 11px 37px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(214, 40, 40, 0.08);
}

.ContactFormWrapper h2 {
    font-size: 2.3rem;
    color: var(--charcoal-depth);
    margin-bottom: 13px;
    font-weight: 620;
}

.ContactFormWrapper > p {
    color: var(--shadow-gray);
    margin-bottom: 37px;
    line-height: 1.6;
    font-size: 17px;
}

.FormFieldsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    margin-bottom: 23px;
}

.FormFieldGroup {
    margin-bottom: 23px;
}

.FormFieldLabel {
    display: block;
    font-size: 15px;
    font-weight: 620;
    color: var(--charcoal-depth);
    margin-bottom: 9px;
}

.FormFieldInput,
.FormFieldSelect,
.FormFieldTextarea {
    width: 100%;
    padding: 15px 17px;
    border: 2px solid #e8e8e8;
    border-radius: 9px;
    font-size: 16px;
    transition: all 0.32s ease;
    background: #fff;
    color: var(--charcoal-depth);
    font-family: inherit;
}

.FormFieldInput:focus,
.FormFieldSelect:focus,
.FormFieldTextarea:focus {
    outline: none;
    border-color: var(--crimson-flame);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.FormFieldInput.error,
.FormFieldSelect.error,
.FormFieldTextarea.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.FormFieldTextarea {
    resize: vertical;
    min-height: 120px;
}

.FormFieldError {
    display: block;
    color: #e74c3c;
    font-size: 14px;
    margin-top: 7px;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.FormFieldError.show {
    opacity: 1;
}

.FormCheckboxLabel {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
}

.FormFieldCheckbox {
    display: none;
}

.FormCheckboxCustom {
    width: 19px;
    height: 19px;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.28s ease;
    margin-top: 2px;
}

.FormFieldCheckbox:checked + .FormCheckboxCustom {
    background: var(--crimson-flame);
    border-color: var(--crimson-flame);
}

.FormFieldCheckbox:checked + .FormCheckboxCustom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.FormPolicyLink {
    color: var(--crimson-flame);
    text-decoration: underline;
    font-weight: 520;
}

.FormPolicyLink:hover {
    color: var(--burgundy-wine);
}

.ContactFormSubmit {
    width: 100%;
    background: linear-gradient(135deg, var(--crimson-flame) 0%, #ee5d10 100%);
    color: #fff;
    padding: 17px 31px;
    border: none;
    border-radius: 11px;
    font-size: 17px;
    font-weight: 620;
    cursor: pointer;
    transition: all 0.32s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 13px;
}

.ContactFormSubmit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 9px 27px rgba(214, 40, 40, 0.4);
}

.ContactFormSubmit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.FormSubmitIcon {
    width: 19px;
    height: 19px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.FormSuccessMessage {
    background: rgba(46, 139, 87, 0.1);
    border: 2px solid var(--emerald-glow);
    border-radius: 9px;
    padding: 17px;
    margin-top: 23px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--emerald-glow);
    font-weight: 520;
}

.FormSuccessIcon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(47%) sepia(63%) saturate(1000%) hue-rotate(114deg) brightness(90%) contrast(85%);
}

/* Contact Info Styles */
.ContactInfoWrapper {
    background: #fff;
    padding: 43px;
    border-radius: 17px;
    box-shadow: 0 11px 37px rgba(0, 0, 0, 0.09);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.ContactInfoWrapper h2 {
    font-size: 2rem;
    color: var(--charcoal-depth);
    margin-bottom: 13px;
    font-weight: 620;
}

.ContactInfoWrapper > p {
    color: var(--shadow-gray);
    margin-bottom: 37px;
    line-height: 1.6;
}

.ContactInfoList {
    margin-bottom: 37px;
}

.ContactInfoItem {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 31px;
    padding-bottom: 31px;
    border-bottom: 1px solid rgba(214, 40, 40, 0.1);
}

.ContactInfoItem:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ContactInfoIcon {
    width: 47px;
    height: 47px;
    background: var(--pearl-blush);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ContactInfoIcon img {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

.ContactInfoContent h3 {
    font-size: 17px;
    color: var(--charcoal-depth);
    margin-bottom: 7px;
    font-weight: 620;
}

.ContactInfoContent p {
    color: var(--shadow-gray);
    line-height: 1.5;
    margin: 0;
}

.ContactCompanyInfo {
    border-top: 2px solid rgba(214, 40, 40, 0.1);
    padding-top: 31px;
}

.ContactCompanyInfo h3 {
    font-size: 18px;
    color: var(--charcoal-depth);
    margin-bottom: 13px;
    font-weight: 620;
}

.ContactCompanyInfo p {
    color: var(--shadow-gray);
    line-height: 1.6;
    margin-bottom: 23px;
}

.CompanyStats {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.CompanyStatItem {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    color: var(--charcoal-depth);
    font-weight: 520;
}

.CompanyStatIcon {
    width: 17px;
    height: 17px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

/* Contact CTA Section */
.ContactCTASection {
    padding: 73px 0;
    background: linear-gradient(135deg, var(--slate-edge) 0%, var(--charcoal-depth) 100%);
    color: #fff;
    text-align: center;
}

.ContactCTAContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

.ContactCTAContent h2 {
    font-size: 2.4rem;
    color: #da3024;
    margin-bottom: 17px;
    font-weight: 620;
}

.ContactCTAContent p {
    font-size: 18px;
    opacity: 0.87;
    margin-bottom: 37px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ContactCTAButtons {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}

.ContactCTAButton {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 17px 31px;
    border-radius: 11px;
    font-size: 17px;
    font-weight: 620;
    transition: all 0.32s ease;
    text-decoration: none;
}

.ContactCTAButtonPrimary {
    background: var(--golden-hour);
    color: var(--charcoal-depth);
}

.ContactCTAButtonPrimary:hover {
    background: #e89c00;
    transform: translateY(-2px);
    box-shadow: 0 7px 21px rgba(244, 199, 79, 0.4);
}

.ContactCTAButtonSecondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ContactCTAButtonSecondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.CTAButtonIcon {
    width: 19px;
    height: 19px;
}

.ContactCTAButtonPrimary .CTAButtonIcon {
    filter: brightness(0) saturate(100%) invert(20%) sepia(10%) saturate(500%) hue-rotate(314deg) brightness(96%) contrast(93%);
}

.ContactCTAButtonSecondary .CTAButtonIcon {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .ContactContentWrapper {
        grid-template-columns: 1fr;
        gap: 53px;
    }

    .ContactInfoWrapper {
        position: static;
    }
}

@media (max-width: 890px) {
    .ContactHeroSection {
        padding: 120px 0 53px;
    }

    .ContactHeroContent h1 {
        font-size: 2.6rem;
    }

    .ContactMainSection {
        padding: 63px 0;
    }

    .ContactFormWrapper,
    .ContactInfoWrapper {
        padding: 31px 23px;
    }

    .FormFieldsGrid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ContactCTASection {
        padding: 53px 0;
    }

    .ContactCTAButtons {
        flex-direction: column;
        align-items: center;
    }

    .ContactCTAButton {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .ContactHeroContent h1 {
        font-size: 2.2rem;
    }

    .ContactFormWrapper h2,
    .ContactInfoWrapper h2 {
        font-size: 1.8rem;
    }

    .ContactCTAContent h2 {
        font-size: 2rem;
    }
}

/* Thank You Page Specific Styles */

/* Thank You Hero Section */
.ThankYouHeroSection {
    padding: 140px 0 73px;
    background: linear-gradient(135deg, var(--emerald-glow) 0%, #228B22 100%);
    color: #fff;
    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"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.06)"/></svg>');
    opacity: 0.4;
}

.ThankYouHeroContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
    position: relative;
    z-index: 2;
}

.ThankYouIcon {
    margin-bottom: 31px;
}

.SuccessIconLarge {
    width: 87px;
    height: 87px;
    filter: brightness(0) saturate(100%) invert(100%);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ThankYouHeroContent h1 {
    font-size: 3.6rem;
    font-weight: 720;
    line-height: 1.2;
    margin-bottom: 23px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ThankYouHeroContent p {
    font-size: 19px;
    opacity: 0.91;
    max-width: 600px;
    margin: 0 auto 31px;
    line-height: 1.6;
}

.EmailConfirmation {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.15);
    padding: 13px 23px;
    border-radius: 27px;
    font-size: 16px;
    font-weight: 520;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.EmailIcon {
    width: 19px;
    height: 19px;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Thank You Main Section */
.ThankYouMainSection {
    padding: 97px 0;
    background: var(--ivory-silk);
}

.ThankYouMainContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

.ThankYouContentGrid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 53px;
    align-items: flex-start;
}

/* What's Next Section */
.WhatsNextCard {
    background: #fff;
    padding: 43px;
    border-radius: 17px;
    box-shadow: 0 11px 37px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.WhatsNextCard h2 {
    font-size: 2.3rem;
    color: var(--charcoal-depth);
    margin-bottom: 37px;
    font-weight: 620;
}

.NextStepsList {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.NextStepItem {
    display: flex;
    align-items: flex-start;
    gap: 23px;
}

.StepNumber {
    width: 43px;
    height: 43px;
    background: var(--emerald-glow);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 720;
    flex-shrink: 0;
}

.StepContent h3 {
    font-size: 19px;
    color: var(--charcoal-depth);
    margin-bottom: 9px;
    font-weight: 620;
}

.StepContent p {
    color: var(--shadow-gray);
    line-height: 1.6;
    margin: 0;
}

/* Quick Actions Section */
.QuickActionsCard {
    background: #fff;
    padding: 43px;
    border-radius: 17px;
    box-shadow: 0 11px 37px rgba(0, 0, 0, 0.09);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.QuickActionsCard h2 {
    font-size: 2rem;
    color: var(--charcoal-depth);
    margin-bottom: 13px;
    font-weight: 620;
}

.QuickActionsCard > p {
    color: var(--shadow-gray);
    margin-bottom: 31px;
    line-height: 1.6;
}

.QuickActionsList {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.QuickActionItem {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 19px;
    border: 2px solid rgba(214, 40, 40, 0.1);
    border-radius: 13px;
    transition: all 0.32s ease;
    text-decoration: none;
    color: inherit;
}

.QuickActionItem:hover {
    border-color: var(--crimson-flame);
    background: var(--pearl-blush);
    transform: translateY(-2px);
    box-shadow: 0 7px 21px rgba(214, 40, 40, 0.15);
}

.QuickActionIcon {
    width: 31px;
    height: 31px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(84%) saturate(6826%) hue-rotate(351deg) brightness(95%) contrast(89%);
    flex-shrink: 0;
}

.QuickActionText h3 {
    font-size: 17px;
    color: var(--charcoal-depth);
    margin-bottom: 5px;
    font-weight: 620;
}

.QuickActionText p {
    color: var(--shadow-gray);
    margin: 0;
    font-size: 15px;
}

/* Thank You Stats Section */
.ThankYouStatsSection {
    padding: 73px 0;
    background: linear-gradient(135deg, var(--slate-edge) 0%, var(--charcoal-depth) 100%);
    color: #fff;
}

.ThankYouStatsContainer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 23px;
}

.StatsHeader {
    text-align: center;
    margin-bottom: 53px;
}

.StatsHeader h2 {
    font-size: 2.6rem;
    margin-bottom: 17px;
    font-weight: 620;
}

.StatsHeader p {
    font-size: 18px;
    opacity: 0.87;
    max-width: 500px;
    margin: 0 auto;
}

.StatsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 31px;
}

.StatItem {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 37px 23px;
    border-radius: 17px;
    backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.34s ease;
}

.StatItem:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.StatIcon {
    width: 41px;
    height: 41px;
    filter: brightness(0) saturate(100%) invert(100%);
    margin: 0 auto 19px;
}

.StatNumber {
    font-size: 2.8rem;
    font-weight: 720;
    color: var(--golden-hour);
    display: block;
    margin-bottom: 11px;
    line-height: 1;
}

.StatLabel {
    font-size: 15px;
    opacity: 0.87;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 520;
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .ThankYouContentGrid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .QuickActionsCard {
        position: static;
    }
}

@media (max-width: 890px) {
    .ThankYouHeroSection {
        padding: 120px 0 53px;
    }

    .ThankYouHeroContent h1 {
        font-size: 2.8rem;
    }

    .ThankYouMainSection {
        padding: 63px 0;
    }

    .WhatsNextCard,
    .QuickActionsCard {
        padding: 31px 23px;
    }

    .ThankYouStatsSection {
        padding: 53px 0;
    }

    .StatsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 23px;
    }
}

@media (max-width: 640px) {
    .ThankYouHeroContent h1 {
        font-size: 2.4rem;
    }

    .SuccessIconLarge {
        width: 67px;
        height: 67px;
    }

    .NextStepItem {
        flex-direction: column;
        text-align: center;
        gap: 17px;
    }

    .QuickActionItem {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .StatsGrid {
        grid-template-columns: 1fr;
    }

    .StatsHeader h2 {
        font-size: 2.2rem;
    }
}

/* Additional Animations */
.NextStepItem {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.NextStepItem:nth-child(1) { animation-delay: 0.2s; }
.NextStepItem:nth-child(2) { animation-delay: 0.4s; }
.NextStepItem:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.QuickActionItem {
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
}

.QuickActionItem:nth-child(1) { animation-delay: 0.8s; }
.QuickActionItem:nth-child(2) { animation-delay: 1s; }
.QuickActionItem:nth-child(3) { animation-delay: 1.2s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}