:root {
    --cardinal-crimson: #d62828;
    --blush-whisper: #fbe9e9;
    --deep-garnet: #961c1c;
    --supporting-shade: #4a90e2;
    --supporting-tint: #e3f1ff;
    --warning-amber: #f39c12;
    --warning-soft: #fdf4e7;
    --accent-emerald: #2ecc71;
    --accent-gentle: #e8f8f0;
    --neutral-slate: #bdc3c7;
    --neutral-whisper: #f8f9fa;
    --info-azure: #3498db;
    --alert-coral: #e74c3c;
    --success-mint: #27ae60;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--deep-garnet);
    font-size: 16px;
    overflow-x: hidden;
}

.pageContainer {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 21px;
}

.primaryHeader {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(7px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 21px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid var(--blush-whisper);
}

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

.brandLogo img {
    height: 52px;
    width: auto;
    transition: transform 0.3s ease;
}

.brandLogo:hover img {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
}

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

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--deep-garnet);
    position: relative;
    transition: all 0.3s ease;
}

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

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

.hamburger:after {
    top: 9px;
}

.navWrapper {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navigationList {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.navElement {
    list-style: none;
}

.navRoute {
    color: var(--deep-garnet);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navRoute:hover {
    color: var(--cardinal-crimson);
}

.navRoute::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cardinal-crimson);
    transition: width 0.3s ease;
}

.navRoute:hover::after {
    width: 100%;
}

.heroDisplay {
    padding: 127px 0 73px;
    background: linear-gradient(135deg, var(--blush-whisper) 0%, rgba(255, 255, 255, 0.9) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.welcomeContent h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 41px;
    color: var(--deep-garnet);
    font-weight: 700;
    margin-bottom: 34px;
    line-height: 1.2;
}

.sectionHeader {
    font-family: 'Oswald', sans-serif;
    font-size: 29px;
    color: var(--deep-garnet);
    font-weight: 600;
    margin-bottom: 26px;
    line-height: 1.3;
}

.introductionBlock p {
    line-height: 1.7;
    font-size: 18px;
    color: #666;
    margin-bottom: 19px;
}

.advantagesList {
    margin-top: 47px;
}

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

.advantagesList ul li {
    line-height: 1.6;
    font-size: 17px;
    color: #555;
    margin-bottom: 13px;
    position: relative;
    padding-left: 26px;
}

.advantagesList ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cardinal-crimson);
    font-weight: bold;
}

.trainingPrograms {
    padding: 89px 0;
    background: #fff;
}

.rowLayout {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.columnHalf {
    flex: 0 0 50%;
    padding: 0 13px;
}

.columnThird {
    flex: 0 0 33.333%;
    padding: 0 13px;
}

.columnQuarter {
    flex: 0 0 25%;
    padding: 0 13px;
}

.columnTwoThirds {
    flex: 0 0 66.666%;
    padding: 0 13px;
}

.columnFull {
    flex: 0 0 100%;
    padding: 0 13px;
}

.programContent {
    padding-top: 27px;
}

.programContent h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 37px;
    font-weight: 600;
    color: var(--deep-garnet);
    margin-bottom: 21px;
}

.highlightText {
    font-size: 19px;
    font-weight: 600;
    color: var(--cardinal-crimson);
    margin-bottom: 18px;
}

.programContent p {
    color: #666;
    margin-bottom: 21px;
    line-height: 1.7;
}

.imageContainer {
    position: relative;
    overflow: hidden;
    border-radius: 13px;
}

.imageContainer img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.imageContainer:hover img {
    transform: scale(1.05);
}

.primaryButton {
    display: inline-block;
    background: linear-gradient(45deg, var(--cardinal-crimson), #e63946);
    color: white;
    padding: 15px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 13px rgba(214, 40, 40, 0.3);
}

.primaryButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
}

.darkerSection {
    background: #1a1a1a;
    padding: 97px 0;
}

.darkerSection .sectionHeader {
    color: #f5f5f5;
}

.serviceSubtitle {
    font-size: 13px;
    display: block;
    font-weight: 600;
    color: var(--cardinal-crimson);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.darkerSection p {
    color: #e8e8e8;
}

.mb-4 {
    margin-bottom: 1.8rem;
}

.textCenter {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

.servicesItem {
    padding: 21px;
}

.serviceBlock {
    background: rgba(255, 255, 255, 0.05);
    padding: 34px 21px;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.serviceBlock:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.serviceIcon {
    margin-bottom: 21px;
}

.iconSymbol {
    font-size: 47px;
    line-height: 1;
}

.serviceTitle {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 15px;
}

.serviceDetails p {
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}

.equipmentShowcase {
    padding: 91px 0;
    background: #181818;
}

.equipmentContent {
    padding-top: 29px;
}

.contentSubtitle {
    font-size: 14px;
    display: block;
    color: var(--cardinal-crimson);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
}

.contentMainTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 41px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 27px;
}

.equipmentContent p {
    color: #ffffff;
    margin-bottom: 23px;
    line-height: 1.7;
}

.buttonContainer {
    margin-top: 24px;
}

.lightBackground {
    background: var(--neutral-whisper);
    padding: 93px 0;
}

.emphasizedText {
    font-size: 21px;
    font-weight: 700;
    color: var(--deep-garnet);
    line-height: 1.4;
    margin-bottom: 19px;
}

.accentButton {
    display: inline-block;
    background: var(--supporting-shade);
    color: white;
    padding: 16px 31px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 3%;
}

.accentButton:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.membershipPlans {
    background: #161616;
    padding: 103px 0 79px;
}

.plansTitle {
    text-align: center;
    margin-bottom: 47px;
}

.plansTitle h2 {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 43px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.plansTitle p {
    color: #ffffff;
    margin-bottom: 0;
}

.planToggle {
    text-align: center;
    margin-bottom: 51px;
}

.planToggle ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
    margin: 0;
    padding: 0;
}

.planToggle li {
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    letter-spacing: 1.1px;
}

.switchControl {
    position: relative;
    display: inline-block;
    width: 68px;
    height: 29px;
    margin-bottom: 0;
}

.switchControl input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sliderElement {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: 0.4s;
}

.sliderElement::before {
    position: absolute;
    content: "";
    height: 29px;
    width: 34px;
    right: 0;
    bottom: 0;
    background-color: white;
    transition: 0.4s;
    border-radius: 3px;
}

.switchControl input:checked + .sliderElement:before {
    transform: translateX(-34px);
}

.pricingCard {
    background: #ffffff;
    text-align: center;
    padding: 43px 0 48px;
    position: relative;
    overflow: hidden;
    margin-bottom: 31px;
    border-radius: 7px;
    transition: transform 0.3s ease;
}

.pricingCard:hover {
    transform: translateY(-5px);
}

.pricingCard h4 {
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 33px;
    font-family: 'Oswald', sans-serif;
}

.priceBlock {
    margin-bottom: 36px;
}

.priceBlock h2 {
    color: #1a1a1a;
    font-size: 47px;
    font-weight: 700;
    position: relative;
    padding-left: 19px;
    margin-bottom: 11px;
    display: inline-block;
}

.priceBlock h2 span {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 8px;
}

.priceBlock p {
    font-size: 16px;
    line-height: 1.3;
    color: #1a1a1a;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.pricingCard ul {
    margin-bottom: 37px;
    list-style: none;
    padding: 0;
}

.pricingCard ul li {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 2.4;
}

.planButton {
    display: inline-block;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    padding: 13px 27px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    transition: all 0.3s ease;
}

.planButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 173, 0.4);
}

.popularPlan {
    width: 153px;
    height: 38px;
    background: #8e44ad;
    position: absolute;
    right: -63px;
    top: -5px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popularPlan i {
    color: #ffffff;
    transform: rotate(-45deg);
}

.contactArea {
    padding: 117px 0 92px;
    background: #f8f9fa;
}

.contactTitle {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 19px;
    font-family: 'Oswald', sans-serif;
}

.contactForm .inputGroup {
    margin-bottom: 29px;
}

.formInput {
    border: 1px solid #e3e4e7;
    border-radius: 0;
    height: 47px;
    padding-left: 18px;
    font-size: 14px;
    background: transparent;
    width: 100%;
    transition: border-color 0.3s ease;
}

.formInput:focus {
    outline: 0;
    border-color: var(--cardinal-crimson);
}

.formInput::placeholder {
    font-weight: 300;
    color: #a1a1a1;
}

.formInput[name="message"] {
    border-radius: 0;
    height: auto !important;
    min-height: 120px;
    padding-top: 15px;
    resize: vertical;
}

.submitButton {
    background: #26AE62;
    color: #fff;
    border: 1px solid #26AE62;
    padding: 13px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submitButton:hover {
    background: #219a54;
    transform: translateY(-1px);
}

.contactInfo {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 19px;
}

.contactIcon {
    font-size: 26px;
    color: #8d9197;
    flex-shrink: 0;
}

.infoContent h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #2c2c2c;
}

.infoContent p {
    color: #8c8c8c;
    margin: 0;
}

.mainFooter {
    padding: 87px 0 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3b4752 100%);
    position: relative;
    overflow: hidden;
}

.mainFooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('template/womens_football_practice_nets_goals_3.webp') center/cover;
    opacity: 0.02;
    z-index: 1;
}

.footerHeading {
    font-size: 16px;
    color: #fff;
    margin-bottom: 21px;
}

.mainFooter p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

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

.footerLinks li {
    margin-bottom: 9px;
}

.footerLink {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerLink:hover {
    color: white;
}

.newsletterForm .inputContainer {
    display: flex;
    margin-bottom: 18px;
}

.newsletterInput {
    flex: 1;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 29px 0 0 29px;
    background: transparent;
    color: white;
    padding: 0 16px;
}

.newsletterInput::placeholder {
    color: rgba(255, 255, 255, 0.52);
    font-weight: 300;
    font-style: italic;
}

.newsletterButton {
    height: 42px;
    border: 1px solid #fff;
    background: #fff;
    color: #000;
    padding: 0 21px;
    border-radius: 0 29px 29px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletterButton:hover {
    background: var(--cardinal-crimson);
    border-color: var(--cardinal-crimson);
    color: white;
}

.copyrightSection {
    padding-top: 43px;
    margin-top: 43px;
    text-align: center;
}

.copyrightBorder {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 43px;
}

.copyrightText {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.52);
    margin: 0;
}

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

    .navWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 73px;
        flex-direction: column;
        align-items: center;
    }

    .navigationList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .navElement {
        width: 100%;
        text-align: center;
        margin: 13px 0;
    }

    .navRoute {
        display: inline-block;
        padding: 8px 18px;
        font-size: 17px;
        color: var(--deep-garnet);
    }

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

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

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

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

    .columnHalf,
    .columnThird,
    .columnQuarter,
    .columnTwoThirds {
        flex: 0 0 100%;
        margin-bottom: 34px;
    }

    .welcomeContent h1 {
        font-size: 31px;
    }

    .sectionHeader {
        font-size: 24px;
    }

    .heroDisplay {
        padding: 104px 0 55px;
    }

    .trainingPrograms,
    .darkerSection,
    .equipmentShowcase,
    .lightBackground,
    .membershipPlans {
        padding: 61px 0;
    }

    .contactArea {
        padding: 71px 0 55px;
    }

    .planToggle ul {
        flex-direction: column;
        gap: 11px;
    }
}

@media screen and (max-width: 640px) {
    .pageContainer {
        padding: 0 16px;
    }

    .welcomeContent h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .programContent h2,
    .contentMainTitle {
        font-size: 29px;
    }

    .plansTitle h2 {
        font-size: 34px;
    }

    .rowLayout {
        margin: 0 -8px;
    }

    .columnHalf,
    .columnThird,
    .columnQuarter,
    .columnTwoThirds,
    .columnFull {
        padding: 0 8px;
    }
}

.fullWidth {
    width: 100%;
}

.mb-5 {
    margin-bottom: 3.2rem;
}

.pb-2 {
    padding-bottom: 1.1rem;
}

.sectionAnimation {
    opacity: 1;
    visibility: visible;
}

.submitGroup {
    margin-top: 21px;
}

.signupSection {
    padding: 127px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.signupSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('template/womens_soccer_training_cones_balls_3.webp') center/cover;
    opacity: 0.03;
    z-index: 1;
}

.sectionSubtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--cardinal-crimson);
    text-transform: uppercase;
    letter-spacing: 2.3px;
    margin-bottom: 11px;
}

.sectionTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 47px;
    font-weight: 700;
    color: var(--deep-garnet);
    margin-bottom: 19px;
    line-height: 1.1;
}

.sectionDescription {
    font-size: 17px;
    color: #666;
    max-width: 542px;
    margin: 0 auto;
    line-height: 1.6;
}

.formWrapper {
    position: relative;
    max-width: 834px;
    margin: 0 auto;
    z-index: 2;
}

.formContainer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(13px);
    border-radius: 23px;
    padding: 51px 43px;
    box-shadow: 0 21px 67px rgba(0, 0, 0, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 29px;
    margin-bottom: 43px;
}

.inputWrapper {
    position: relative;
}

.inputWrapper.fullWidth {
    grid-column: span 2;
}

.inputLabel {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-garnet);
    margin-bottom: 9px;
    transition: color 0.3s ease;
}

.styledInput,
.styledTextarea {
    width: 100%;
    padding: 17px 0 13px;
    border: none;
    border-bottom: 2px solid #e1e5e9;
    background: transparent;
    font-size: 16px;
    color: var(--deep-garnet);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: 'Lato', sans-serif;
}

.styledInput::placeholder,
.styledTextarea::placeholder {
    color: #a8b2bd;
    font-style: italic;
    transition: opacity 0.3s ease;
}

.styledInput:focus::placeholder,
.styledTextarea:focus::placeholder {
    opacity: 0;
}

.styledTextarea {
    resize: vertical;
    min-height: 89px;
    line-height: 1.5;
}

.inputUnderline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--cardinal-crimson), #e63946);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.styledInput:focus ~ .inputUnderline,
.styledTextarea:focus ~ .inputUnderline {
    width: 100%;
}

.styledInput:focus ~ .inputLabel,
.styledTextarea:focus ~ .inputLabel {
    color: var(--cardinal-crimson);
}

.styledInput:focus,
.styledTextarea:focus {
    border-bottom-color: transparent;
}

.submitWrapper {
    text-align: center;
    position: relative;
}

.signupButton {
    background: linear-gradient(135deg, var(--cardinal-crimson) 0%, #e63946 100%);
    border: none;
    border-radius: 31px;
    padding: 19px 47px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 23px rgba(214, 40, 40, 0.3);
    min-width: 267px;
}

.signupButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(214, 40, 40, 0.4);
}

.signupButton:active {
    transform: translateY(-1px);
}

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

.buttonRipple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.signupButton:active .buttonRipple {
    width: 200px;
    height: 200px;
}

.formNote {
    margin-top: 21px;
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.4;
}

.backgroundShape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--cardinal-crimson), #e63946);
    opacity: 0.07;
    z-index: 1;
}

.shape1 {
    width: 167px;
    height: 167px;
    top: -67px;
    right: -43px;
    animation: float1 6s ease-in-out infinite;
}

.shape2 {
    width: 234px;
    height: 234px;
    bottom: -89px;
    left: -71px;
    animation: float2 8s ease-in-out infinite;
}

.shape3 {
    width: 134px;
    height: 134px;
    top: 50%;
    right: -23px;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-19px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(23px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-13px) rotate(90deg); }
}

@media screen and (max-width: 890px) {
    .formGrid {
        grid-template-columns: 1fr;
        gap: 29px;
    }
    
    .inputWrapper.fullWidth {
        grid-column: span 1;
    }
    
    .formContainer {
        padding: 34px 23px;
        border-radius: 17px;
    }
    
    .sectionTitle {
        font-size: 37px;
    }
    
    .signupSection {
        padding: 87px 0;
    }
}

@media screen and (max-width: 640px) {
    .sectionTitle {
        font-size: 29px;
    }
    
    .signupButton {
        width: 100%;
        padding: 17px 23px;
        font-size: 14px;
    }
    
    .formContainer {
        padding: 27px 18px;
    }
}

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

.footerLogoImg {
    width: 157px;
    height: auto;
    margin-bottom: 13px;
    border-radius: 8px;
    filter: brightness(0) invert(1);
}

.footerDescription {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 11px;
}

.footerContactInfo {
    position: relative;
    z-index: 2;
    margin-bottom: 23px;
}

.footerContactItem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 17px;
    gap: 11px;
}

.contactIconFooter {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contactTextFooter p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 3px 0;
}

.contactTextFooter p:last-child {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

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

.quickContactBtn {
    display: inline-block;
    background: linear-gradient(135deg, var(--cardinal-crimson), #e63946);
    color: white;
    padding: 11px 19px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 13px rgba(214, 40, 40, 0.3);
}

.quickContactBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
    color: white;
}

.footerBottomSection {
    margin-top: 53px;
    padding: 29px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 2;
}

.footerBottomLinks {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.bottomLink {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.bottomLink:hover {
    color: white;
}

.linkSeparator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.mainFooter .pageContainer {
    position: relative;
    z-index: 2;
}

.footerHeading {
    position: relative;
    z-index: 2;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

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

@media screen and (max-width: 890px) {
    .mainFooter {
        padding: 61px 0 0;
    }
    
    .columnQuarter {
        flex: 0 0 50%;
        margin-bottom: 34px;
    }
    
    .footerBottomLinks {
        text-align: center;
        justify-content: center;
        margin-top: 17px;
    }
}

@media screen and (max-width: 640px) {
    .columnQuarter {
        flex: 0 0 100%;
        margin-bottom: 29px;
    }
    
    .footerBottomSection {
        text-align: center;
    }
    
    .footerBottomLinks {
        flex-direction: column;
        gap: 8px;
    }
    
    .linkSeparator {
        display: none;
    }
}

.coachingTeam {
    padding: 89px 0;
    background: #fff;
}

.teamContent {
    padding-top: 27px;
}

.teamContent h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 37px;
    font-weight: 600;
    color: var(--deep-garnet);
    margin-bottom: 21px;
}

.facilityFeatures {
    background: #1a1a1a;
    padding: 97px 0;
}

.philosophySection {
    padding: 91px 0;
    background: #181818;
}

.philosophyContent {
    padding-top: 29px;
}

.achievementsSection {
    background: var(--neutral-whisper);
    padding: 93px 0;
}

.achievementsContent {
    padding-top: 27px;
}

.achievementsContent h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 37px;
    font-weight: 600;
    color: var(--deep-garnet);
    margin-bottom: 21px;
}

.trainingApproach {
    padding: 127px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.trainingApproach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../template/female_soccer_practice_gear_1.webp') center/cover;
    opacity: 0.03;
    z-index: 1;
}

.approachCard {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(13px);
    border-radius: 17px;
    padding: 39px 27px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 31px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 13px 43px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.approachCard:hover {
    transform: translateY(-5px);
}

.approachCard h4 {
    color: var(--deep-garnet);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 23px;
    font-size: 18px;
}

.approachDetails p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 11px;
    position: relative;
    padding-left: 19px;
}

.approachDetails p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cardinal-crimson);
    font-weight: bold;
}

.approachDetails p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 890px) {
    .coachingTeam,
    .facilityFeatures,
    .philosophySection,
    .achievementsSection,
    .trainingApproach {
        padding: 61px 0;
    }
}

.signupSection {
    padding: 127px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.signupSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('template/womens_soccer_training_cones_balls_3.webp') center/cover;
    opacity: 0.03;
    z-index: 1;
}

.sectionHeader {
    margin-bottom: 67px;
    position: relative;
    z-index: 2;
}

.sectionSubtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--cardinal-crimson);
    text-transform: uppercase;
    letter-spacing: 2.3px;
    margin-bottom: 11px;
}

.sectionTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 47px;
    font-weight: 700;
    color: var(--deep-garnet);
    margin-bottom: 19px;
    line-height: 1.1;
}

.sectionDescription {
    font-size: 17px;
    color: #666;
    max-width: 542px;
    margin: 0 auto;
    line-height: 1.6;
}

.formWrapper {
    position: relative;
    max-width: 834px;
    margin: 0 auto;
    z-index: 2;
}

.formContainer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(13px);
    border-radius: 23px;
    padding: 51px 43px;
    box-shadow: 0 21px 67px rgba(0, 0, 0, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 29px;
    margin-bottom: 43px;
}

.inputWrapper {
    position: relative;
}

.inputWrapper.fullWidth {
    grid-column: span 2;
}

.inputLabel {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-garnet);
    margin-bottom: 9px;
    transition: color 0.3s ease;
}

.styledInput,
.styledTextarea {
    width: 100%;
    padding: 17px 0 13px;
    border: none;
    border-bottom: 2px solid #e1e5e9;
    background: transparent;
    font-size: 16px;
    color: var(--deep-garnet);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: 'Lato', sans-serif;
}

.styledInput::placeholder,
.styledTextarea::placeholder {
    color: #a8b2bd;
    font-style: italic;
    transition: opacity 0.3s ease;
}

.styledInput:focus::placeholder,
.styledTextarea:focus::placeholder {
    opacity: 0;
}

.styledTextarea {
    resize: vertical;
    min-height: 89px;
    line-height: 1.5;
}

.inputUnderline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--cardinal-crimson), #e63946);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.styledInput:focus ~ .inputUnderline,
.styledTextarea:focus ~ .inputUnderline {
    width: 100%;
}

.styledInput:focus ~ .inputLabel,
.styledTextarea:focus ~ .inputLabel {
    color: var(--cardinal-crimson);
}

.styledInput:focus,
.styledTextarea:focus {
    border-bottom-color: transparent;
}

.submitWrapper {
    text-align: center;
    position: relative;
}

.signupButton {
    background: linear-gradient(135deg, var(--cardinal-crimson) 0%, #e63946 100%);
    border: none;
    border-radius: 31px;
    padding: 19px 47px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 23px rgba(214, 40, 40, 0.3);
    min-width: 267px;
}

.signupButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(214, 40, 40, 0.4);
}

.signupButton:active {
    transform: translateY(-1px);
}

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

.buttonRipple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.signupButton:active .buttonRipple {
    width: 200px;
    height: 200px;
}

.formNote {
    margin-top: 21px;
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.4;
}

.backgroundShape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--cardinal-crimson), #e63946);
    opacity: 0.07;
    z-index: 1;
}

.shape1 {
    width: 167px;
    height: 167px;
    top: -67px;
    right: -43px;
    animation: float1 6s ease-in-out infinite;
}

.shape2 {
    width: 234px;
    height: 234px;
    bottom: -89px;
    left: -71px;
    animation: float2 8s ease-in-out infinite;
}

.shape3 {
    width: 134px;
    height: 134px;
    top: 50%;
    right: -23px;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-19px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(23px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-13px) rotate(90deg); }
}

@media screen and (max-width: 890px) {
    .formGrid {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .inputWrapper.fullWidth {
        grid-column: span 1;
    }

    .formContainer {
        padding: 34px 23px;
        border-radius: 17px;
    }

    .sectionTitle {
        font-size: 37px;
    }

    .signupSection {
        padding: 87px 0;
    }
}

@media screen and (max-width: 640px) {
    .sectionTitle {
        font-size: 29px;
    }

    .signupButton {
        width: 100%;
        padding: 17px 23px;
        font-size: 14px;
    }

    .formContainer {
        padding: 27px 18px;
    }
}

.thankyouSection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush-whisper) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.thankyouSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('template/female_soccer_practice_gear_1.webp') center/cover;
    opacity: 0.04;
    z-index: 1;
}

.thankyouContainer {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(11px);
    border-radius: 27px;
    padding: 73px 51px;
    text-align: center;
    box-shadow: 0 23px 79px rgba(0, 0, 0, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 634px;
    margin: 0 23px;
    position: relative;
    z-index: 2;
}

.successIcon {
    width: 89px;
    height: 89px;
    background: linear-gradient(135deg, var(--cardinal-crimson), #e63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 34px;
    position: relative;
    animation: successPulse 2s ease-in-out infinite;
}

.successIcon::before {
    content: '✓';
    color: white;
    font-size: 43px;
    font-weight: bold;
    line-height: 1;
}

.successIcon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--cardinal-crimson);
    border-radius: 50%;
    opacity: 0.3;
    animation: successRing 2s ease-in-out infinite;
}

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

@keyframes successRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.thankyouTitle {
    font-family: 'Oswald', sans-serif;
    font-size: 41px;
    font-weight: 700;
    color: var(--deep-garnet);
    margin-bottom: 23px;
    line-height: 1.2;
}

.thankyouMessage {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 31px;
}

.thankyouDetails {
    background: rgba(251, 233, 233, 0.6);
    border-radius: 13px;
    padding: 27px;
    margin-bottom: 39px;
    border-left: 4px solid var(--cardinal-crimson);
}

.thankyouDetails h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--deep-garnet);
    margin-bottom: 17px;
}

.thankyouDetails p {
    color: #555;
    margin-bottom: 9px;
    font-size: 16px;
}

.thankyouDetails p:last-child {
    margin-bottom: 0;
}

.actionButtons {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}

.primaryAction {
    background: linear-gradient(135deg, var(--cardinal-crimson), #e63946);
    color: white;
    padding: 16px 31px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 19px rgba(214, 40, 40, 0.3);
}

.primaryAction:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214, 40, 40, 0.4);
    color: white;
}

.secondaryAction {
    background: transparent;
    color: var(--deep-garnet);
    padding: 16px 31px;
    text-decoration: none;
    border: 2px solid var(--deep-garnet);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    transition: all 0.3s ease;
}

.secondaryAction:hover {
    background: var(--deep-garnet);
    color: white;
    transform: translateY(-2px);
}

.floatingShapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floatingShape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--cardinal-crimson), #e63946);
    opacity: 0.05;
}

.floatingShape:nth-child(1) {
    width: 143px;
    height: 143px;
    top: 12%;
    left: 8%;
    animation: floatUp 8s ease-in-out infinite;
}

.floatingShape:nth-child(2) {
    width: 87px;
    height: 87px;
    top: 67%;
    right: 11%;
    animation: floatDown 6s ease-in-out infinite;
}

.floatingShape:nth-child(3) {
    width: 198px;
    height: 198px;
    bottom: 7%;
    left: 3%;
    animation: floatSide 9s ease-in-out infinite;
}

.floatingShape:nth-child(4) {
    width: 67px;
    height: 67px;
    top: 34%;
    right: 21%;
    animation: floatRotate 7s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-23px) rotate(180deg); }
}

@keyframes floatDown {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(19px) rotate(-180deg); }
}

@keyframes floatSide {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(17px) rotate(90deg); }
}

@keyframes floatRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

@media screen and (max-width: 890px) {
    .thankyouContainer {
        padding: 51px 31px;
        margin: 0 17px;
    }

    .thankyouTitle {
        font-size: 33px;
    }

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

    .primaryAction,
    .secondaryAction {
        width: 100%;
        max-width: 267px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .thankyouContainer {
        padding: 37px 21px;
    }

    .thankyouTitle {
        font-size: 27px;
    }

    .successIcon {
        width: 71px;
        height: 71px;
        margin-bottom: 27px;
    }

    .successIcon::before {
        font-size: 34px;
    }
}

.aas {
    margin-top: 5%;
}