@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #d62828;
    --light-color: #fbe9e9;
    --dark-color: #961c1c;
    --text-color: #333333;
    --background-color: #ffffff;
    --glass-background: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

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

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

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

.MainHeader {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.NavbarBrand {
    display: flex;
    align-items: center;
}

.LogoImage {
    height: 45px;
    width: auto;
}

.NavToggle {
    display: none;
}

.NavToggleLabel {
    display: none;
}

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

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

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

.Hamburger:after {
    top: 8px;
}

.NavWrapper {
    display: flex;
    align-items: center;
}

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

.NavItem {
    list-style: none;
}

.NavLink {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.NavLink:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.HeroSection {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--background-color) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.HeroContent {
    position: relative;
    z-index: 2;
}

.HeroTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.HeroSubtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.CtaButton {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.CtaButton:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4);
}

.SectionTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.SectionTitle:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.ServicesSection {
    padding: 80px 0;
    background: var(--background-color);
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ServiceCard {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ServiceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ServiceTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.ServiceDescription {
    color: var(--text-color);
    line-height: 1.6;
}

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

.AboutContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.AboutText {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.AboutImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.StatsSection {
    padding: 60px 0;
    background: var(--dark-color);
    color: white;
}

.StatsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.StatItem {
    padding: 20px;
}

.StatNumber {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.StatLabel {
    font-size: 1.1rem;
    margin-top: 10px;
}

.ContactSection {
    padding: 80px 0;
    background: var(--background-color);
}

.ContactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.ContactForm {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.FormGroup {
    margin-bottom: 25px;
}

.FormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.FormInput,
.FormTextarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.FormInput:focus,
.FormTextarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.2);
}

.FormTextarea {
    resize: vertical;
    min-height: 120px;
}

.ContactInfo {
    padding: 40px;
}

.ContactItem {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.EmailLink {
    color: var(--primary-color);
    text-decoration: none;
}

.EmailLink:hover {
    text-decoration: underline;
}

.MainFooter {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.FooterSection {
    margin-bottom: 30px;
}

.FooterHeading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.FooterText {
    line-height: 1.6;
    color: #cccccc;
}

.FooterLinks {
    list-style: none;
}

.FooterLinks li {
    margin-bottom: 10px;
}

.FooterLink {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.CopyrightText {
    color: #cccccc;
    font-size: 14px;
}

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

    .NavWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        z-index: 1001;
    }

    .NavbarNav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

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

    .NavLink {
        display: inline-block;
        padding: 15px 20px;
        font-size: 18px;
        color: var(--dark-color);
        width: 100%;
    }

    .NavToggle:checked ~ .NavWrapper {
        left: 0;
    }

    .NavToggle:checked ~ .NavToggleLabel .Hamburger {
        background: transparent;
    }

    .NavToggle:checked ~ .NavToggleLabel .Hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .NavToggle:checked ~ .NavToggleLabel .Hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .HeroTitle {
        font-size: 2.5rem;
    }

    .HeroSubtitle {
        font-size: 1.1rem;
    }

    .SectionTitle {
        font-size: 2rem;
    }

    .AboutContent {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ContactGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ServicesGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .StatsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .FooterContent {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .Container {
        padding: 0 15px;
    }

    .HeroSection {
        padding: 60px 0;
    }

    .HeroTitle {
        font-size: 2rem;
    }

    .ServicesSection,
    .AboutSection,
    .ContactSection {
        padding: 60px 0;
    }

    .ServiceCard,
    .ContactForm {
        padding: 30px 20px;
    }

    .StatsGrid {
        grid-template-columns: 1fr;
    }
}

.CookieDisclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-background, rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border, rgba(255, 255, 255, 0.2));
    padding: 20px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.CookieDisclaimer.Show {
    transform: translateY(0);
}

.CookieContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.CookieContent {
    flex: 1;
}

.CookieTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color, #961c1c);
    margin-bottom: 8px;
}

.CookieText {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color, #333333);
    margin: 0;
}

.CookieActions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.CookieButton {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.CookieAccept {
    background: var(--primary-color, #d62828);
    color: white;
    box-shadow: 0 2px 10px rgba(214, 40, 40, 0.3);
}

.CookieAccept:hover {
    background: var(--dark-color, #961c1c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.CookieDecline {
    background: transparent;
    color: var(--text-color, #333333);
    border: 2px solid var(--light-color, #fbe9e9);
}

.CookieDecline:hover {
    background: var(--light-color, #fbe9e9);
    color: var(--dark-color, #961c1c);
}

.CookieSettings {
    background: transparent;
    color: var(--primary-color, #d62828);
    border: 1px solid var(--primary-color, #d62828);
    font-size: 13px;
    padding: 8px 16px;
}

.CookieSettings:hover {
    background: var(--primary-color, #d62828);
    color: white;
}

.CookieClose {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color, #333333);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.CookieClose:hover {
    background: var(--light-color, #fbe9e9);
    color: var(--primary-color, #d62828);
}

@media screen and (max-width: 768px) {
    .CookieContainer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .CookieActions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .CookieButton {
        min-width: 80px;
        padding: 8px 16px;
    }

    .CookieSettings {
        order: 3;
        width: 100%;
    }

    .CookieDisclaimer {
        padding: 15px;
    }

    .CookieText {
        font-size: 13px;
        text-align: center;
    }
}

.CookieLink {
    color: var(--primary-color, #d62828);
    text-decoration: underline;
}

.CookieLink:hover {
    color: var(--dark-color, #961c1c);
}

.FadeInAnimation {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Styles */
.StyledForm {
    background: var(--glass-background);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.StyledForm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--dark-color));
    border-radius: 25px 25px 0 0;
}

.FormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.FormGroup {
    position: relative;
    margin-bottom: 25px;
}

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

.FormInput,
.FormSelect,
.FormTextarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
}

.FormInput:focus,
.FormSelect:focus,
.FormTextarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(214, 40, 40, 0.2);
    transform: translateY(-2px);
}

.FormFocus {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--dark-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.FormInput:focus + .FormFocus,
.FormSelect:focus + .FormFocus,
.FormTextarea:focus + .FormFocus {
    transform: scaleX(1);
}

.FormTextarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

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

.FormSubmit {
    text-align: center;
    margin-top: 30px;
}

.FormButton {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.ButtonIcon {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.FormButton:hover .ButtonIcon {
    transform: translateX(5px);
}

.ContactDetails {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.ContactItem {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.ContactItem:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ContactItemTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.ContactItemText {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.ServicesHighlight {
    background: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.ServicesList {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.ServicesList li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(150, 28, 28, 0.1);
    position: relative;
    padding-left: 20px;
}

.ServicesList li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.ServicesList li:last-child {
    border-bottom: none;
}

.ContactImage {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Thank You Page Styles */
.ThankYouSection {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--background-color) 100%);
    text-align: center;
}

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

.ThankYouIcon {
    margin-bottom: 30px;
}

.CheckmarkAnimation {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: relative;
    animation: scaleIn 0.6s ease-out;
}

.CheckmarkCircle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: drawCircle 0.8s ease-out;
}

.CheckmarkStem {
    width: 3px;
    height: 20px;
    background: var(--primary-color);
    position: absolute;
    top: 35px;
    left: 35px;
    transform: rotate(45deg);
    animation: drawStem 0.3s ease-out 0.5s both;
}

.CheckmarkKick {
    width: 3px;
    height: 12px;
    background: var(--primary-color);
    position: absolute;
    top: 42px;
    left: 28px;
    transform: rotate(-45deg);
    animation: drawKick 0.3s ease-out 0.7s both;
}

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

@keyframes drawCircle {
    0% { border-color: transparent; }
    100% { border-color: var(--primary-color); }
}

@keyframes drawStem {
    0% { height: 0; }
    100% { height: 20px; }
}

@keyframes drawKick {
    0% { height: 0; }
    100% { height: 12px; }
}

.ThankYouTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.ThankYouSubtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.ThankYouInfo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.InfoCard {
    background: var(--glass-background);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
}

.InfoCardTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.InfoList li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(150, 28, 28, 0.1);
    position: relative;
    padding-left: 25px;
}

.InfoList li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.InfoList li:last-child {
    border-bottom: none;
}

.ResponseTime {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.ThankYouActions {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.SecondaryButton {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.SecondaryButton:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.3);
}

.UrgentContact {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.UrgentContactCard {
    background: var(--glass-background);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.ContactMethods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

.ContactMethod {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.ContactMethodTitle {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ContactMethodText {
    color: var(--text-color);
    margin: 5px 0;
    font-weight: 600;
}

.ContactMethodHours {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.OffersList {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.OffersList li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(150, 28, 28, 0.1);
    position: relative;
    padding-left: 20px;
}

.OffersList li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.OffersList li:last-child {
    border-bottom: none;
}

.ServiceLink {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.ServiceLink:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .FormRow {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ThankYouInfo {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .ThankYouTitle {
        font-size: 2.2rem;
    }

    .UrgentContact {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ContactMethods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}



@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #d62828;
    --light-color: #fbe9e9;
    --dark-color: #961c1c;
    --text-color: #333333;
    --background-color: #ffffff;
    --glass-background: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

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

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

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

.MainHeader {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.NavbarBrand {
    display: flex;
    align-items: center;
}

.LogoImage {
    height: 45px;
    width: auto;
}

.NavToggle {
    display: none;
}

.NavToggleLabel {
    display: none;
}

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

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

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

.Hamburger:after {
    top: 8px;
}

.NavWrapper {
    display: flex;
    align-items: center;
}

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

.NavItem {
    list-style: none;
}

.NavLink {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.NavLink:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.HeroSection {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--background-color) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.HeroContent {
    position: relative;
    z-index: 2;
}

.HeroTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.HeroSubtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.CtaButton {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.CtaButton:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4);
}

.SectionTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.SectionTitle:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.ServicesSection {
    padding: 80px 0;
    background: var(--background-color);
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ServiceCard {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ServiceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ServiceTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.ServiceDescription {
    color: var(--text-color);
    line-height: 1.6;
}

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

.AboutContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.AboutText {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.AboutImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.StatsSection {
    padding: 60px 0;
    background: var(--dark-color);
    color: white;
}

.StatsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.StatItem {
    padding: 20px;
}

.StatNumber {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.StatLabel {
    font-size: 1.1rem;
    margin-top: 10px;
}

.ContactSection {
    padding: 80px 0;
    background: var(--background-color);
}

.ContactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.ContactForm {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.FormGroup {
    margin-bottom: 25px;
}

.FormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.FormInput,
.FormTextarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.FormInput:focus,
.FormTextarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.2);
}

.FormTextarea {
    resize: vertical;
    min-height: 120px;
}

.ContactInfo {
    padding: 40px;
}

.ContactItem {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.EmailLink {
    color: var(--primary-color);
    text-decoration: none;
}

.EmailLink:hover {
    text-decoration: underline;
}

.MainFooter {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.FooterSection {
    margin-bottom: 30px;
}

.FooterHeading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.FooterText {
    line-height: 1.6;
    color: #cccccc;
}

.FooterLinks {
    list-style: none;
}

.FooterLinks li {
    margin-bottom: 10px;
}

.FooterLink {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.CopyrightText {
    color: #cccccc;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .NavToggleLabel {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 1002;
        position: relative;
    }

    .NavWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .NavbarNav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
    }

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

    .NavLink {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        color: var(--dark-color);
        width: 100%;
        text-decoration: none;
        border-bottom: 1px solid var(--light-color);
        transition: all 0.3s ease;
    }

    .NavLink:hover {
        background: var(--light-color);
        color: var(--primary-color);
    }

    .NavToggle:checked ~ .NavWrapper {
        left: 0;
    }

    .NavToggle:checked ~ .NavToggleLabel .Hamburger {
        background: transparent;
    }

    .NavToggle:checked ~ .NavToggleLabel .Hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .NavToggle:checked ~ .NavToggleLabel .Hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Overlay для закрытия меню при клике вне его */
    .NavToggle:checked ~ .NavWrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .HeroTitle {
        font-size: 2.5rem;
    }

    .HeroSubtitle {
        font-size: 1.1rem;
    }

    .SectionTitle {
        font-size: 2rem;
    }

    .AboutContent {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ContactGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ServicesGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .StatsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .FooterContent {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* === ИСПРАВЛЕННЫЕ СТИЛИ БУРГЕР-МЕНЮ === */
.NavToggle {
    display: none;
}

.NavToggleLabel {
    display: none;
    cursor: pointer;
    padding: 15px;
    position: relative;
    z-index: 1003;
    background: none;
    border: none;
}

.Hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.Hamburger::before,
.Hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.Hamburger::after {
    top: 8px;
}

/* Анимация при открытии */
.NavToggle:checked + .NavToggleLabel .Hamburger {
    background: transparent;
}

.NavToggle:checked + .NavToggleLabel .Hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.NavToggle:checked + .NavToggleLabel .Hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* МОБИЛЬНЫЕ СТИЛИ */
@media screen and (max-width: 768px) {
    .NavToggleLabel {
        display: block !important;
    }

    .NavWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: left 0.3s ease;
        padding-top: 80px;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .NavToggle:checked ~ .NavWrapper {
        left: 0;
    }

    .NavbarNav {
        flex-direction: column;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 0;
    }

    .NavItem {
        width: 100%;
        text-align: center;
    }

    .NavLink {
        display: block;
        width: 100%;
        padding: 20px;
        font-size: 18px;
        color: var(--dark-color);
        text-decoration: none;
        border-bottom: 1px solid var(--light-color);
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .NavLink:hover {
        background: var(--light-color);
        color: var(--primary-color);
    }

    /* Скрываем обычное меню на мобильных */
    .Navbar .NavWrapper:not(.NavToggle:checked ~ .NavWrapper) {
        display: none;
    }
}

/* ДЕСКТОП СТИЛИ */
@media screen and (min-width: 769px) {
    .NavToggleLabel {
        display: none !important;
    }

    .NavWrapper {
        position: static;
        display: flex;
        background: transparent;
        height: auto;
        box-shadow: none;
        padding: 0;
        width: auto;
        left: 0;
    }

    .NavbarNav {
        display: flex;
        flex-direction: row;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    .NavItem {
        width: auto;
    }

    .NavLink {
        padding: 10px 15px;
        font-size: 16px;
        border: none;
        border-radius: 25px;
        width: auto;
    }
}

@media screen and (max-width: 480px) {
    .Container {
        padding: 0 15px;
    }

    .HeroSection {
        padding: 60px 0;
    }

    .HeroTitle {
        font-size: 2rem;
    }

    .ServicesSection,
    .AboutSection,
    .ContactSection {
        padding: 60px 0;
    }

    .ServiceCard,
    .ContactForm {
        padding: 30px 20px;
    }

    .StatsGrid {
        grid-template-columns: 1fr;
    }
}



/* Стили для секции с картой */
.MapSection {
    padding: 80px 0;
    background: var(--light-color);
}

.MapContainer {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin-top: 50px;
}

.MapInfo {
    background: var(--glass-background);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.MapText {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.TransportInfo {
    margin: 30px 0;
}

.TransportList {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.TransportList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(150, 28, 28, 0.1);
    position: relative;
    padding-left: 25px;
}

.TransportList li:before {
    content: '🚇';
    position: absolute;
    left: 0;
    top: 10px;
}

.TransportList li:nth-child(2):before {
    content: '🚌';
}

.TransportList li:nth-child(3):before {
    content: '🚋';
}

.TransportList li:nth-child(4):before {
    content: '🚗';
}

.TransportList li:last-child {
    border-bottom: none;
}

.MapEmbed {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 15px;
}

.MapEmbed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.MapEmbed:hover iframe {
    filter: grayscale(0%);
}

/* Адаптивные стили для карты */
@media screen and (max-width: 768px) {
    .MapContainer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .MapInfo {
        order: 2;
        padding: 30px 20px;
    }

    .MapEmbed {
        order: 1;
        padding: 10px;
    }

    .MapEmbed iframe {
        height: 300px;
    }

    .TransportList li {
        font-size: 14px;
        padding: 8px 0 8px 30px;
    }
}

@media screen and (max-width: 480px) {
    .MapSection {
        padding: 60px 0;
    }

    .MapEmbed iframe {
        height: 250px;
    }

    .MapInfo {
        padding: 25px 15px;
    }
}

/* Дополнительные стили для улучшения внешнего вида */
.ContactMethodTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.ContactMethodText {
    color: var(--text-color);
    font-weight: 600;
    font-family: monospace;
    font-size: 14px;
    background: rgba(214, 40, 40, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* Анимация появления карты */
.MapSection {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Эффект при наведении на информационный блок */
.MapInfo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}