/* PortfolioBuilder CSS - flux.css */
/* Reset i bazowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #fb8500;
    --primary-light: #fff4e6;
    --primary-dark: #b35e00;
    --secondary-color: #384aeb;
    --secondary-light: #e8ebff;
    --tertiary-color: #82c658;
    --tertiary-light: #f0f7ea;
    --accent-color: #e42d2a;
    --accent-light: #fdeaea;
    --neutral-color: #6c757d;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --success-color: #28a745;
    --text-color: #333333;
    --background-color: #ffffff;
    --border-color: #ececec
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', serif;
    font-weight: 600;
    margin-bottom: 13px;
    color: var(--primary-dark)
}

h1 {
    font-size: 2.8rem;
    line-height: 1.3;
}

h2 {
    font-size: 2.4rem;
    line-height: 1.4;
}

h3 {
    font-size: 1.9rem;
    line-height: 1.5;
}

p {
    margin-bottom: 18px;
    color: #555;
    font-weight: 420;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.32s ease
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.content_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Navigation Styles */
.navigation_wrapper {
    background: var(--background-color);
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.34s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.navbar-brand .brand_image {
    height: 48px;
    width: auto
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 31px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.31s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 31px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.31s ease;
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 520;
    padding: 11px 19px;
    border-radius: 0;
    transition: all 0.29s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
    background-color: var(--primary-light);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 16px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.32s ease;
        padding-top: 95px;
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 16px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 23px;
        font-size: 19px;
        color: var(--text-color);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        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;
    }
}

/* Hero Section */
.hero-banner {
    background: #F3F8F9;
    position: relative;
    margin-top: 84px;
    padding: 73px 0;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    display: block;
    width: 7%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 47px;
    align-items: center;
}

.hero-banner__content h4 {
    font-size: 34px;
    font-family: "Poppins", sans-serif;
    color: #525252;
    margin-bottom: 16px;
}

.hero-banner__content h1 {
    font-family: "Times New Roman", serif;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 820;
    margin-bottom: 14px;
    color: var(--primary-dark);
}

.hero-banner__content p {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.8;
}

.button {
    display: inline-block;
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    color: var(--background-color);
    font-weight: 580;
    padding: 16px 58px;
    background: var(--secondary-color);
    transition: all .47s ease;
    font-size: 17px;
}

.button-hero {
    padding: 16px 48px;
}

.button:hover {
    border-color: var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
}

@media (min-width: 640px) {
    .hero-banner::before {
        width: 24%;
    }
}

@media (min-width: 1120px) {
    .hero-banner::before {
        width: 39%;
    }
}

@media (max-width: 890px) {
    .hero_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-banner__content h1 {
        font-size: 34px;
        margin-bottom: 29px;
    }

    .hero-banner__content p {
        margin-bottom: 47px;
    }
}

@media (min-width: 890px) {
    .hero-banner__content h1 {
        font-size: 58px;
    }
}

/* About Section */
.site-section {
    padding: 2.8em 0;
}

@media (min-width: 890px) {
    .site-section {
        padding: 8.7em 0;
    }
}

.section_header_wrapper {
    margin-bottom: 57px;
}

.section-header {
    color: var(--primary-orange);
    font-size: 43px;
    font-weight: 950;
    margin-bottom: 26px;
}

.lead-paragraph {
    font-size: 1.31rem;
    font-weight: 320;
    color: #666;
}

.about_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.circle-background {
    position: relative;
}

.circle-background:after {
    width: 317px;
    height: 317px;
    content: "";
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    bottom: -97px;
    right: -97px;
    background: var(--neutral-light);
}

.text-black {
    color: var(--text-color) !important;
    margin-bottom: 23px;
    font-size: 1.87rem;
}

@media (max-width: 1120px) {
    .circle-background:after {
        bottom: 0px;
        right: -13px;
        display: none;
    }
}

@media (max-width: 890px) {
    .about_content_grid {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .circle-background:after {
        display: none;
    }

    .section-header {
        font-size: 32px;
    }
}

/* Features Section */
.page-section {
    padding: 2.9em 0;
}

@media (min-width: 890px) {
    .page-section {
        padding: 8.9em 0;
    }
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 47px;
}

.feature_item {
    text-align: center;
    padding: 34px 23px;
}

.feature_icon {
    width: 68px;
    height: 68px;
    margin-bottom: 26px;
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(25deg);
}

.feature-title {
    font-size: 1.52rem;
    color: var(--text-color);
    margin-bottom: 19px;
}

/* Text + Image Section */
.main-section {
    padding: 3.2em 0;
}

@media (min-width: 890px) {
    .main-section {
        padding: 8.8em 0;
    }
}

.text_image_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 61px;
    align-items: center;
}

.h3 {
    font-size: 1.97rem;
    margin-bottom: 21px;
}

.content_block {
    margin-bottom: 28px;
}

.features_list_container {
    margin-bottom: 57px;
}

.check-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 41px;
    margin-bottom: 19px;
    line-height: 1.7;
}

.check-list li:before {
    left: 0;
    font-size: 24px;
    top: -.5rem;
    content: "✓";
    position: absolute;
    color: var(--tertiary-color);
    font-weight: 720;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 7px;
}

@media (max-width: 890px) {
    .text_image_grid {
        grid-template-columns: 1fr;
        gap: 41px;
    }
}

/* Services Cards Section */
.upcoming_games_area {
    padding: 127px 0 87px;
    background: var(--neutral-light);
}

.services_header {
    text-align: center;
    margin-bottom: 87px;
}

.main_title h2 {
    font-size: 79px;
    color: var(--info-color);
    opacity: 0.12;
    margin: 0;
    line-height: 63px;
}

.main_title h1 {
    color: var(--text-color);
    margin-top: -43px;
    font-size: 2.7rem;
}

.main_title p {
    font-size: 15px;
    line-height: 25px;
    color: #777777;
    margin-bottom: 0px;
    max-width: 590px;
    margin: auto;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 43px;
}

.new_games_item {
    position: relative;
    display: inline-block;
    margin-bottom: 43px;
    border-radius: 0;
    overflow: hidden;
}

.new_games_item:hover .upcoming_title {
    background: linear-gradient(to right, var(--info-color) 0%, var(--tertiary-color) 100%);
}

.new_games_item:hover .upcoming_title a {
    color: var(--background-color);
}

.upcoming_title {
    position: absolute;
    background: rgba(44, 37, 93, 0.87);
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    transition: all 0.43s ease;
}

.upcoming_title h3 {
    font-size: 19px;
    margin: 0;
    padding: 23px;
    transition: all 0.43s ease;
}

.upcoming_title h3 a {
    color: var(--background-color);
    font-weight: 620;
}

@media (max-width: 890px) {
    .upcoming_games_area {
        padding: 67px 0 47px;
    }

    .services_header {
        margin-bottom: 43px;
    }

    .main_title h2 {
        font-size: 43px;
    }

    .services_grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }
}

/* Statistics Counter Section */
.statistics-counter {
    overflow-x: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#counter-section {
    position: relative;
    z-index: 0;
}

#counter-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .47;
    background: var(--secondary-color);
    width: 100%;
}

.stats_display_grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-wrapper {
    width: 100%;
}

.counter_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 43px;
}

.counter_item {
    display: flex;
    justify-content: center;
}

.metrics-block {
    display: block;
    width: 100%;
    text-align: center;
}

.counter-value {
    font-weight: 780;
    font-size: 56px;
    color: var(--background-color);
    display: block;
    position: relative;
    font-family: "Times New Roman", serif;
}

.metric-content span {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 780;
    margin-top: 11px;
}

.section-metrics {
    padding: 7.8em 0;
    position: relative;
}

@media (max-width: 890px) {
    .section-metrics {
        padding: 6.7em 0;
    }

    .counter_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 27px;
    }

    .counter-value {
        font-size: 43px;
    }
}

@media (max-width: 640px) {
    .counter_grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testmonial_area {
    background: var(--neutral-light);
    position: relative;
    padding: 142px 0 132px 0;
    overflow: hidden;
}

.testimonial_content_wrapper {
    display: flex;
    justify-content: center;
}

.testimonials_container {
    max-width: 890px;
    width: 100%;
}

.single_testmonial {
    box-shadow: 0px 19px 41px 0px rgba(0, 0, 2, 0.11);
    border-radius: 0;
    padding: 71px 91px 96px 91px;
    background: var(--background-color);
}

.testimonial_layout {
    display: flex;
    align-items: center;
    gap: 31px;
}

.test_thumb {
    flex-shrink: 0;
}

.test_thumb img {
    width: 142px;
    height: 142px;
    object-fit: cover;
    border-radius: 50%;
}

.test_content h4 {
    font-size: 24px;
    font-weight: 680;
    color: var(--text-color);
    margin-bottom: 6px;
}

.test_content span {
    display: block;
    color: #8a8a8a;
    font-family: "Poppins", sans-serif;
    font-weight: 380;
    font-size: 18px;
    margin-bottom: 21px;
    line-height: 1;
}

.test_content p {
    font-size: 20px;
    color: #555559;
    margin-bottom: 0;
    line-height: 39px;
}

@media (max-width: 890px) {
    .testmonial_area {
        padding: 63px 0 63px 0;
    }

    .testimonial_layout {
        flex-direction: column;
        text-align: center;
        gap: 23px;
    }

    .single_testmonial {
        padding: 43px 31px;
    }

    .test_content p {
        font-size: 18px;
        line-height: 31px;
    }
}

/* FAQ Section */
.faq_header {
    margin-bottom: 57px;
}

.block-heading-1 h2 {
    font-size: 2.9rem;
    color: var(--primary-orange);
    margin-bottom: 21px;
}

.faq_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
}

.faq_item {
    margin-bottom: 34px;
}

.faq_question {
    font-size: 1.47rem;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.faq_icon {
    width: 24px;
    height: 24px;
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(25deg);
    flex-shrink: 0;
}

@media (max-width: 890px) {
    .faq_content_grid {
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .block-heading-1 h2 {
        font-size: 2.3rem;
    }
}

/* Contact Form Section */
.contact-form-wrapper {
    padding: 61px 0;
    margin-bottom: 51px;
    background: var(--primary-light);
}

.main-title {
    font-family: "Times New Roman", serif;
    font-size: 35px;
    color: var(--primary-dark);
    font-weight: 780;
    margin-bottom: 26px;
    text-align: center;
}

.contact-form-wrapper p {
    line-height: 31px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    color: #8a8a8a;
    margin-bottom: 47px;
    text-align: center;
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
}

.form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    max-width: 870px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 0;
}

.full_width {
    grid-column: 1 / -1;
}

.form-control {
    width: 100%;
    font-size: 15px;
    line-height: 31px;
    color: #a0a0a0;
    border: 1px solid var(--border-color);
    font-family: "Poppins", sans-serif;
    border-radius: 0px;
    padding: 14px 26px;
    background: var(--background-color);
    transition: all 0.28s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(251, 133, 0, 0.12);
    color: var(--text-color);
}

.form-control::placeholder {
    color: #a0a0a0;
}

textarea.form-control {
    height: 152px;
    resize: vertical;
}

.submit_button {
    margin-top: 26px;
    cursor: pointer;
    background: var(--accent-color);
    color: var(--background-color);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 580;
    line-height: 43px;
    border: 1px solid var(--accent-color);
    border-radius: 0;
    padding: 0px 37px;
    transition: all 350ms linear 0s;
    width: 100%;
}

.submit_button:hover {
    color: var(--accent-color);
    background: transparent;
}

@media (max-width: 640px) {
    .form_grid {
        grid-template-columns: 1fr;
        gap: 19px;
    }
}

/* Footer Section */
.ftco-footer {
    font-size: 18px;
    background: #0a0a0a;
    padding: 7.9em 0;
}

.footer_content_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 47px;
    margin-bottom: 51px;
}

.logo {
    text-transform: uppercase;
    font-weight: 780;
    color: var(--background-color);
    font-size: 1.8rem;
}

.logo span {
    color: var(--primary-orange);
}

.ftco-heading-2 {
    font-weight: normal;
    color: var(--background-color);
    margin-bottom: 47px;
    font-size: 22px;
    font-weight: 480;
}

.footer_links {
    list-style: none;
    padding: 0;
}

.footer_link {
    color: rgba(255, 255, 255, 0.87);
    display: block;
    padding: 8px 0;
    transition: all 0.31s ease;
}

.footer_link:hover {
    color: var(--background-color);
    padding-left: 8px;
}

.ftco-footer p {
    color: rgba(255, 255, 255, 0.77);
    line-height: 1.8;
}

.ftco-footer-social {
    list-style: none;
    margin: 31px 0 0 0;
    padding: 0;
    display: flex;
    gap: 13px;
}

.ftco-footer-social li a {
    height: 57px;
    width: 57px;
    display: block;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    position: relative;
    transition: all 0.34s ease;
}

.ftco-footer-social li a img {
    position: absolute;
    width: 29px;
    height: 29px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: invert(1);
}

.ftco-footer-social li a:hover {
    background: var(--primary-orange);
}

.contact_details {
    padding: 0;
    list-style: none;
}

.contact_details li {
    display: flex;
    align-items: flex-start;
    line-height: 1.7;
    margin-bottom: 19px;
    gap: 13px;
}

.contact_icon {
    width: 21px;
    height: 21px;
    filter: invert(1);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact_text {
    color: rgba(255, 255, 255, 0.77);
}

.contact_details a {
    color: rgba(255, 255, 255, 0.77);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.contact_details a:hover .contact_text {
    color: var(--background-color);
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-top: 31px;
}

.footer_copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
}

@media (max-width: 890px) {
    .ftco-footer {
        padding: 4.7em 0;
    }

    .footer_content_grid {
        grid-template-columns: 1fr;
        gap: 37px;
        margin-bottom: 37px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* AOS Animation Placeholders */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.57s;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos="fade-up"] {
    transform: translateY(97px);
}

[data-aos="fade-left"] {
    transform: translateX(-117px);
}

[data-aos="fade-right"] {
    transform: translateX(117px);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .content_container {
        max-width: 1120px;
    }
}

@media (max-width: 1280px) {
    .content_container {
        max-width: 960px;
    }
}

@media (max-width: 890px) {
    .content_container {
        padding: 0 18px;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    h3 {
        font-size: 1.7rem;
    }
}

/* Dodatkowe style dla strony About */
.about_hero_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 123px 0 87px 0;
    margin-top: 84px;
    position: relative;
    overflow: hidden;
}

.about_hero_section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 43%;
    height: 100%;
    background: rgba(251, 133, 0, 0.08);
    transform: skewX(-11deg);
    transform-origin: top right;
}

.hero_about_content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.hero_about_title {
    font-size: 3.2rem;
    color: var(--primary-dark);
    margin-bottom: 27px;
    font-weight: 920;
}

.hero_about_subtitle {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mission Vision Values Section */
.mission_vision_section {
    padding: 97px 0;
    background: var(--background-color);
}

.mvv_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 51px;
    margin-top: 67px;
}

.mvv_card {
    background: var(--neutral-light);
    padding: 47px 37px;
    border-radius: 0;
    text-align: center;
    position: relative;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mvv_card:hover {
    transform: translateY(-7px);
    box-shadow: 0 13px 41px rgba(0, 0, 0, 0.12);
}

.mvv_icon {
    width: 73px;
    height: 73px;
    margin: 0 auto 29px auto;
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(25deg);
}

.mvv_title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 23px;
    font-weight: 680;
}

.mvv_description {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Company History Section */
.company_history_section {
    padding: 89px 0;
    background: var(--primary-light);
}

.history_timeline {
    margin-top: 73px;
}

.timeline_item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 43px;
    margin-bottom: 57px;
    position: relative;
}

.timeline_item::before {
    content: "";
    position: absolute;
    left: 89px;
    top: 0;
    bottom: -57px;
    width: 3px;
    background: var(--primary-orange);
}

.timeline_item:last-child::before {
    display: none;
}

.timeline_year {
    background: var(--primary-orange);
    color: white;
    padding: 19px 0;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 720;
    position: relative;
}

.timeline_year::after {
    content: "";
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-left-color: var(--primary-orange);
}

.timeline_content h4 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 17px;
    font-weight: 640;
}

.timeline_content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Team Section */
.team_showcase_section {
    padding: 103px 0;
    background: var(--background-color);
}

.team_members_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 47px;
    margin-top: 79px;
}

.team_member_card {
    text-align: center;
    background: var(--neutral-light);
    padding: 41px 29px 51px 29px;
    border-radius: 0;
    transition: all 0.41s ease;
}

.team_member_card:hover {
    transform: scale(1.03);
    box-shadow: 0 17px 47px rgba(0, 0, 0, 0.11);
}

.member_avatar {
    width: 127px;
    height: 127px;
    border-radius: 50%;
    margin: 0 auto 31px auto;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
}

.member_name {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 11px;
    font-weight: 620;
}

.member_position {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 19px;
    font-weight: 520;
}

.member_description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats About Section */
.stats_about_section {
    padding: 91px 0;
    background: var(--secondary-color);
    color: white;
    position: relative;
}

.stats_about_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 51px;
    text-align: center;
}

.stat_about_item {
    padding: 23px 17px;
}

.stat_about_number {
    font-size: 3.1rem;
    font-weight: 820;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 13px;
    font-family: "Times New Roman", serif;
}

.stat_about_label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 580;
}

/* Why Choose Us Section */
.why_choose_section {
    padding: 107px 0;
    background: var(--background-color);
}

.benefits_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 53px;
    margin-top: 71px;
}

.benefit_item {
    display: flex;
    align-items: flex-start;
    gap: 27px;
    padding: 31px 23px;
    background: var(--neutral-light);
    border-radius: 0;
    transition: all 0.33s ease;
}

.benefit_item:hover {
    background: var(--primary-light);
    transform: translateX(7px);
}

.benefit_icon {
    width: 59px;
    height: 59px;
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(25deg);
    flex-shrink: 0;
}

.benefit_content h4 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 13px;
    font-weight: 620;
}

.benefit_content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact CTA Section */
.contact_cta_section {
    padding: 83px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta_content h2 {
    color: white;
    font-size: 2.7rem;
    margin-bottom: 23px;
    font-weight: 780;
}

.cta_content p {
    font-size: 1.2rem;
    margin-bottom: 37px;
    color: rgba(255, 255, 255, 0.91);
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.cta_button {
    display: inline-block;
    background: white;
    color: var(--primary-orange);
    padding: 17px 47px;
    border-radius: 0;
    font-weight: 620;
    text-decoration: none;
    transition: all 0.31s ease;
    font-size: 1.1rem;
}

.cta_button:hover {
    background: var(--neutral-light);
    transform: translateY(-3px);
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.17);
}

/* Responsive Design */
@media (max-width: 890px) {
    .about_hero_section {
        padding: 67px 0 47px 0;
    }

    .hero_about_title {
        font-size: 2.4rem;
    }

    .timeline_item {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .timeline_item::before {
        display: none;
    }

    .timeline_year::after {
        display: none;
    }

    .mvv_grid,
    .team_members_grid,
    .stats_about_grid,
    .benefits_grid {
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .mission_vision_section,
    .company_history_section,
    .team_showcase_section,
    .stats_about_section,
    .why_choose_section,
    .contact_cta_section {
        padding: 47px 0;
    }
}

@media (max-width: 640px) {
    .benefit_item {
        flex-direction: column;
        text-align: center;
        gap: 19px;
    }

    .hero_about_title {
        font-size: 2.1rem;
    }

    .cta_content h2 {
        font-size: 2.2rem;
    }
}

/* Thank You Page Specific Styles */
.thankyou_main_section {
    padding: 127px 0 97px 0;
    margin-top: 84px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--neutral-light) 100%);
    position: relative;
    overflow: hidden;
}

.thankyou_main_section::before {
    content: "";
    position: absolute;
    top: -47px;
    left: -73px;
    width: 220px;
    height: 220px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.08;
    animation: float_circle 6.7s ease-in-out infinite;
}

.thankyou_main_section::after {
    content: "";
    position: absolute;
    bottom: -89px;
    right: -67px;
    width: 180px;
    height: 180px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.06;
    animation: float_circle 5.3s ease-in-out infinite reverse;
}

@keyframes float_circle {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-23px) scale(1.05);
    }
}

.thankyou_content_wrapper {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.success_icon_container {
    margin-bottom: 37px;
    position: relative;
}

.success_checkmark {
    width: 89px;
    height: 89px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: scale_success 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success_checkmark::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--success-color);
    border-radius: 50%;
    opacity: 0.23;
    animation: pulse_ring 1.7s ease-out infinite;
}

.checkmark_icon {
    width: 43px;
    height: 43px;
    filter: invert(1);
}

@keyframes scale_success {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse_ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.thankyou_title {
    font-size: 3.4rem;
    color: var(--primary-dark);
    margin-bottom: 31px;
    font-weight: 890;
    font-family: "Times New Roman", serif;
}

.thankyou_subtitle {
    font-size: 1.6rem;
    color: var(--success-color);
    margin-bottom: 27px;
    font-weight: 520;
}

.thankyou_description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 47px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Next Steps Section */
.next_steps_section {
    padding: 91px 0;
    background: var(--background-color);
}

.steps_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 43px;
    margin-top: 67px;
}

.step_card {
    background: var(--neutral-light);
    padding: 41px 33px;
    text-align: center;
    border-radius: 0;
    position: relative;
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step_card:hover {
    transform: translateY(-9px);
    box-shadow: 0 17px 43px rgba(0, 0, 0, 0.13);
    background: var(--primary-light);
}

.step_number {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 47px;
    height: 47px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 720;
    font-size: 1.3rem;
    font-family: "Times New Roman", serif;
}

.step_icon {
    width: 67px;
    height: 67px;
    margin: 23px auto 29px auto;
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(25deg);
}

.step_title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 19px;
    font-weight: 640;
}

.step_description {
    color: #666;
    line-height: 1.7;
    font-size: 1.02rem;
}

/* Timeline Section */
.timeline_expectations_section {
    padding: 87px 0;
    background: var(--secondary-color);
    color: white;
}

.timeline_wrapper {
    max-width: 890px;
    margin: 0 auto;
    margin-top: 61px;
}

.timeline_steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 41px;
}

.timeline_step {
    text-align: center;
    position: relative;
    padding: 31px 19px;
}

.timeline_step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-left-color: rgba(255, 255, 255, 0.23);
    transform: translateY(-50%);
}

.timeline_step:last-child::after {
    display: none;
}

.timeline_icon {
    width: 59px;
    height: 59px;
    margin: 0 auto 23px auto;
    filter: invert(1);
}

.timeline_time {
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 620;
    margin-bottom: 13px;
}

.timeline_action {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.91);
    line-height: 1.6;
}

/* Contact Info Section */
.contact_info_section {
    padding: 83px 0;
    background: var(--neutral-light);
}

.contact_cards_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 37px;
    margin-top: 57px;
}

.contact_info_card {
    background: var(--background-color);
    padding: 43px 31px;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 7px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.32s ease;
}

.contact_info_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 37px rgba(0, 0, 0, 0.12);
}

.contact_card_icon {
    width: 53px;
    height: 53px;
    margin: 0 auto 27px auto;
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(25deg);
}

.contact_card_title {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 17px;
    font-weight: 620;
}

.contact_card_info {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact_card_info a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 520;
}

.contact_card_info a:hover {
    color: var(--primary-dark);
}

/* Action Buttons Section */
.action_buttons_section {
    padding: 73px 0;
    background: var(--background-color);
    text-align: center;
}

.buttons_wrapper {
    display: flex;
    justify-content: center;
    gap: 27px;
    flex-wrap: wrap;
    margin-top: 41px;
}

.action_button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 17px 37px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 570;
    font-size: 1.05rem;
    transition: all 0.33s ease;
}

.primary_button {
    background: var(--primary-orange);
    color: white;
    border: 2px solid var(--primary-orange);
}

.primary_button:hover {
    background: transparent;
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 9px 27px rgba(251, 133, 0, 0.19);
}

.secondary_button {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.secondary_button:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 9px 27px rgba(56, 74, 235, 0.19);
}

.button_icon {
    width: 19px;
    height: 19px;
    filter: currentColor;
}

.primary_button .button_icon {
    filter: invert(1);
}

.secondary_button .button_icon {
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(230deg);
}

.secondary_button:hover .button_icon {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 890px) {
    .thankyou_main_section {
        padding: 71px 0 57px 0;
    }

    .thankyou_title {
        font-size: 2.6rem;
    }

    .thankyou_subtitle {
        font-size: 1.3rem;
    }

    .next_steps_section,
    .timeline_expectations_section,
    .contact_info_section,
    .action_buttons_section {
        padding: 51px 0;
    }

    .steps_grid,
    .timeline_steps,
    .contact_cards_grid {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .timeline_step::after {
        display: none;
    }

    .buttons_wrapper {
        flex-direction: column;
        align-items: center;
        gap: 19px;
    }

    .action_button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .thankyou_title {
        font-size: 2.2rem;
    }

    .success_checkmark {
        width: 73px;
        height: 73px;
    }

    .checkmark_icon {
        width: 35px;
        height: 35px;
    }
}