/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', sans-serif;
    /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
    line-height: 1.6;
    color: #000000;
    background-color: #FFD72D;
}

/*@font-face {*/
/*    font-family: 'Gilroy';*/
/*    src: url('/fonts/Gilroy-Light.ttf') format('truetype');*/
/*    font-weight: 500; !* light *!*/
/*    font-style: normal;*/
/*}*/

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    /* light */
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    line-height: 1.2;
}

h2 {
    font-size: 1.7em;
}

.bg-white {
    background-color: #ffffff !important;
}

.text-center {
    text-align: center;
}

.my-5 {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-white {
    background-color: #FFFFFF;
    color: #000000;
}

.btn-primary-white:hover {
    background-color: #dddddd;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-outline {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.btn-outline:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.btn-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Header */
.header {
    background-color: #FFD72D;
    padding: 16px 0;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    padding: 16px;
    border: 1px solid #000000;
    border-radius: 4px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    height: 56px;
    /* Match button height */
}

.nav-link:hover {
    background-color: #000000;
    color: #FFFFFF;
}

/* Logo responsive styles */
.logo-large {
    display: block;
}

.logo-small {
    display: none;
}

/* Buyback text responsive styles */
.buyback-short {
    display: none;
}

.buyback-full {
    display: inline;
}

/* Ensure button heights match nav-links */
.header .btn {
    height: 56px;
    padding: 16px;
}

.seo-article {
    text-align: justify;
}

@media (max-width: 1024px) {
    .logo-large {
        display: none;
    }

    .logo-small {
        display: block;
    }

    .buyback-short {
        display: inline;
    }

    .buyback-full {
        display: none;
    }
}


/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #FFD72D;
}

.hero-content {
    display: flex;
    align-items: center;
    /*gap: 47px;*/
    justify-content: space-around;
}

.hero-text {
    flex: 1;
    max-width: 845px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.11;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 56px;
}

.hero-description {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.18;
    color: #000000;
    margin-bottom: 32px;
    max-width: 652px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-image {
    flex-shrink: 0;
}

.pc-image {
    width: 382px;
    height: 443px;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 16px 0 16px;
    background-color: #FFD72D;
    overflow: hidden;
}

.features-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.features-track {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 7px 2px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 0.93;
    color: #000000;
    white-space: nowrap;
}

.feature-caret {
    width: 24px;
    height: 25px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.features-marquee:hover .features-track {
    animation-play-state: paused;
}

/* Smooth animation for better performance */
.features-track {
    will-change: transform;
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .features-track {
        animation: none;
    }
}

/* Universal Section Layout */
.section-layout {
    /*padding: 16px 0 16px;*/
    padding: 150px 0 150px;
    background-color: #FFD72D;
}

.section-layout-content {
    display: flex;
    gap: 47px;
    align-items: flex-start;
}

.section-layout-header {
    flex: 1;
    max-width: 652px;
    position: sticky;
    top: 0;
}

.section-layout-body {
    flex: 1;
    max-width: 650px;
}

.section-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 8px;
    text-decoration: none;
}

.section-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.18;
    color: #000000;
    max-width: 652px;
    text-align: justify;
}

.services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(309px, 1fr));
    /*grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 25vw, 309px), 1fr));*/
    /*grid-template-columns: repeat(auto-fit, minmax(clamp(100px, 25vw, 209px), 1fr));*/
    gap: 32px;
    max-width: 650px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-image {
    width: 309px;
    height: 309px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
}

.service-count {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
}

.service-arrow {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}


.process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 650px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-image {
    flex-shrink: 0;
}

.step-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.27;
    text-transform: uppercase;
    color: #000000;
}

.step-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
    padding-bottom: 18px;
    max-width: 400px;
    word-wrap: break-word;
}

.step-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.16;
    color: #000000;
    max-width: 309px;
}


.advantages-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 650px;
}

.advantage-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border: 1px solid #000000;
    border-radius: 4px;
    background-color: #FFD72D;
}

.advantage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advantage-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.27;
    text-transform: uppercase;
    color: #000000;
}

.advantage-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.16;
    color: #000000;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background-color: #010101;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.contact-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.27;
    text-transform: uppercase;
    color: #FFFFFF;
    /*margin-bottom: 40px;*/
}

.phone-numbers {
    display: flex;
    align-items: center;
    gap: 40px;
}

.phone-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
}

.phone-logo {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.phone-number {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
}

/* FAQ Section */
.faq {
    padding: 0;
    background-color: #FFD72D;
}

.faq-items {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 2px solid #000000;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 60px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.faq-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.28;
    text-transform: uppercase;
    color: #000000;
    flex: 1;
}

.faq-arrow {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 60px 24px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.16;
    color: #000000;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 80px 0;
}

.footer-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.footer-main {
    flex: 1;
    max-width: 979px;
}

.footer-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 56px;
    max-width: 845px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-address,
.footer-email {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-phone {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    height: 352px;
}

.footer-links-title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #FFFFFF;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-link {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.16;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFD72D;
}

.logo-img {
    width: 200px;
    height: 56px;
    object-fit: contain;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFD72D;
    z-index: 1000;
    height: 100vh;
    overflow: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #FFD72D;
}

.mobile-menu-logo {
    padding: 10px;
}

.mobile-menu-close {
    background: #000000;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 16px;
    border-radius: 4px;
    transition: background-color 0.15s ease-in-out;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background-color: #333333;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 0 16px 40px;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    display: block;
    padding: 5px 0;
    margin-left: 16px;
    color: #000000;
    text-decoration: none;
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.275;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.15s ease-in-out;
}

.mobile-nav-link:hover {
    color: #333333;
}

.mobile-callback-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.mobile-callback-btn:hover {
    background-color: #333333;
}

.mobile-nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 48px;
    }

    .footer-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        position: relative;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        /*gap: 32px;*/
        justify-content: space-around;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-image {
        display: none;
    }

    .pc-image {
        width: 280px;
        height: 320px;
    }

    .features {
        padding: 16px 0 16px;
    }

    .features-track {
        gap: 16px;
        animation-duration: 25s;
    }

    .feature-item {
        padding: 12px 0;
    }

    .feature-text {
        font-size: 16px;
    }

    /* Universal Section Layout Mobile */
    .section-layout {
        padding: 80px 0 80px;
    }

    .section-layout-content {
        flex-direction: column;
        gap: 32px;
        /*align-items: center;*/
        align-items: unset;
    }

    .section-layout-header {
        position: static;
        max-width: none;
        text-align: center;
    }

    .section-layout-body {
        max-width: none;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: none;
        gap: 24px;
    }

    .service-card {
        max-width: 343px;
        margin: 0 auto;
        border: 2px solid #000000;
        border-radius: 4px;
        overflow: hidden;
    }

    .service-card:first-child {
        border: none;
        background-color: #f0f0f0;
    }

    .service-image {
        width: 100%;
        height: 171px;
    }


    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .step-image {
        align-self: center;
    }

    .step-img {
        width: 80px;
        height: 80px;
    }

    .step-header {
        justify-content: center;
        gap: 8px;
    }

    .step-number {
        font-size: 56px;
    }

    .step-title {
        font-size: 24px;
        max-width: none;
        padding-bottom: 8px;
    }

    .step-description {
        max-width: none;
        font-size: 14px;
    }


    .advantage-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
        border: 1px solid #000000;
        border-radius: 4px;
    }

    .advantage-title {
        font-size: 24px;
    }

    .advantage-description {
        font-size: 16px;
    }

    .advantage-card .btn {
        width: 100%;
        justify-content: center;
    }

    .contact {
        padding: 30px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
        /*margin-bottom: 24px;*/
    }

    .phone-numbers {
        flex-direction: column;
        gap: 16px;
    }

    .faq {
        padding: 0;
    }

    .faq-question {
        padding: 24px 16px;
        border-bottom: 2px solid #000000;
    }

    .faq-title {
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 16px 24px;
    }

    .faq-answer p {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .faq-item:last-child .faq-question {
        border-bottom: none;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        height: auto;
    }

    .footer-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .footer-info {
        gap: 16px;
    }

    .footer-address,
    .footer-email,
    .footer-phone {
        font-size: 16px;
    }

    .footer-links-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .footer-links-list {
        gap: 16px;
    }

    .footer-link {
        font-size: 16px;
    }

    .logo-img {
        width: 200px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 32px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 16px;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 16px;
    }

    .logo {
        padding: 12px 16px;
        font-size: 16px;
        min-width: 140px;
    }

    .service-image {
        height: 150px;
    }

    .step-img {
        width: 60px;
        height: 60px;
    }

    .step-number {
        font-size: 48px;
    }

    .step-title {
        font-size: 20px;
    }

    .advantage-title {
        font-size: 20px;
    }

    .contact-title {
        font-size: 28px;
    }

    .faq-title {
        font-size: 16px;
    }

    .features-track {
        gap: 12px;
        animation-duration: 20s;
    }

    .feature-text {
        font-size: 14px;
    }

    .service-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-arrow {
        align-self: flex-end;
    }

    .process-step {
        padding: 16px 0;
    }

    .advantage-card {
        padding: 12px;
    }

    .phone-item {
        padding: 12px;
    }

    .phone-number {
        font-size: 16px;
    }

    .mobile-menu {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .breadcrumb-content {
        gap: 24px;
    }

    /* Breadcrumb Mobile Styles */
    .breadcrumb-links {
        max-width: 100%;
    }

    .breadcrumb-link {
        font-size: 14px;
        line-height: 18px;
        display: inline-block;
        max-width: 200px;
    }

    .breadcrumb-link.active {
        font-size: 14px;
        line-height: 18px;
    }

    .breadcrumb-separator {
        font-size: 14px;
        line-height: 18px;
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .breadcrumb-description {
        font-size: 18px;
    }


    .price-item {
        padding: 16px 0;
    }

    .price-title {
        font-size: 18px;
    }

    .price-amount {
        font-size: 18px;
    }

    .price-arrow {
        width: 32px;
        height: 32px;
    }

    .attention-footer {
        padding: 40px 0 0;
    }

    .attention-footer-title {
        font-size: 32px;
    }

    .price-notice-content {
        padding: 0 0 40px;
    }

    .price-notice-text {
        font-size: 14px;
    }

    .seo-article p {
        font-size: 14px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .footer-title {
        font-size: 24px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 14px;
    }

    .logo {
        min-width: 120px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .features-track {
        gap: 10px;
        animation-duration: 18s;
    }

    .feature-text {
        font-size: 13px;
    }

    .feature-caret {
        width: 20px;
        height: 21px;
    }

    /* Breadcrumb Small Mobile Styles */
    .breadcrumb-link {
        font-size: 12px;
        line-height: 16px;
        max-width: 110px;
    }

    .breadcrumb-link.active {
        font-size: 12px;
        line-height: 16px;
    }

    .breadcrumb-separator {
        font-size: 12px;
        line-height: 16px;
    }


    .attention-footer-title {
        font-size: 28px;
    }

    .price-title {
        font-size: 16px;
    }

    .price-amount {
        font-size: 16px;
    }

    .price-notice-text {
        font-size: 13px;
    }
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 1px solid #000000;
    border-radius: 4px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.language-toggle:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.language-arrow {
    transition: transform 0.15s ease-in-out;
}

.language-dropdown.active .language-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 120px;
    background: white;
    border: 1px solid #000000;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.15s ease-in-out;
    z-index: 50;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 12px 16px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
    border-bottom: 1px solid #f1f3f4;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: #000000;
    color: #FFFFFF;
}

/* Mobile Language Dropdown */
.mobile-language-dropdown {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    border-top: none;
}

.mobile-language-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.mobile-language-toggle:hover {
    background-color: #333333;
    border-color: #333333;
    color: #FFFFFF;
}

.mobile-language-menu {
    display: none;
    margin-top: 8px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 50;
}

.mobile-language-dropdown.active .mobile-language-menu {
    display: block;
}

.mobile-language-option {
    display: block;
    padding: 12px 16px;
    color: #495057;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
    border-bottom: 1px solid #f1f3f4;
}

.mobile-language-option:last-child {
    border-bottom: none;
}

.mobile-language-option:hover {
    background-color: #f8f9fa;
    color: #000000;
}

/* Mobile Services Dropdown */
.mobile-services-dropdown {
    position: relative;
}

.mobile-services-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 5px 0;
    margin-left: 16px;
    background: transparent;
    border: none;
    color: #000000;
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.275;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.mobile-services-toggle:hover {
    color: #333333;
}

.services-arrow {
    transition: transform 0.15s ease-in-out;
}

.mobile-services-dropdown.active .services-arrow {
    transform: rotate(180deg);
}

.mobile-services-menu {
    display: none;
    padding: 0 0 16px 56px;
}

.mobile-services-dropdown.active .mobile-services-menu {
    display: block;
}

.mobile-service-link {
    display: block;
    padding: 16px 0;
    color: #000000;
    text-decoration: none;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    transition: all 0.15s ease-in-out;
}

.mobile-service-link:hover {
    color: #333333;
}

/* Prices Page Styles */
.breadcrumb {
    padding: 16px;
    background-color: #FFD72D;
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-link {
    font-family: 'Gilroy', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    color: transparent;
    -webkit-text-stroke: 1px black;
    text-stroke: 1px black;
    text-decoration: none;
}

.breadcrumb-link.active {
    font-family: 'Gilroy', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #000000;
    -webkit-text-stroke: 0 black;
    text-stroke: 0px black;
}

.breadcrumb-separator {
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #000000;
}

.breadcrumb-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.breadcrumb-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1.25;
    text-transform: uppercase;
    color: #000000;
}

.breadcrumb-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.177;
    color: #000000;
}

.divider-line {
    width: 100%;
    height: 2px;
    background-color: #000000;
}



.price-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 2px solid #000000;
    text-decoration: none;
}

.price-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.price-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.177;
    text-transform: uppercase;
    color: #000000;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.price-amount {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.275;
    text-transform: uppercase;
    color: #000000;
}

.price-arrow {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.attention-footer {
    padding: 80px 0 0;
    background-color: #FFFFFF;
}

.attention-footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.attention-footer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1.25;
    text-transform: uppercase;
    color: #000000;
}

.price-notice {
    padding: 0;
    background-color: #FFFFFF;
}

.price-notice-content {
    padding: 0 0 40px;
}

.price-notice-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.177;
    color: #000000;
}


.seo-article p {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.177;
    color: #000000;
}

.seo-article ul,
.seo-article ol,
.seo-article li {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.177;
    color: #000000;
}

.seo-article ul,
.seo-article ol {
    padding-left: 24px;
    margin-left: 0;
    list-style-position: outside;
}

.seo-article li+li {
    margin-top: 6px;
}

.seo-article strong {
    font-family: 'Gilroy', sans-serif;
    font-weight: bolder;
    font-size: 20px;
    line-height: 1.177;
    color: #000000;
}

.section-layout-small-padding {
    padding: 32px 0 80px !important;
}

.service-media {
    display: flex;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16/9;
    border-radius: 4px;
    margin: 0 auto 24px auto;
}

/* Reviews Page */
.reviews-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px auto;
}

.reviews-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 12px;
}

.reviews-description {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.177;
    color: #000000;
    margin: 0 auto;
}

.reviews-google-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #f6f8fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 8px 0 24px 0;
}

.reviews-google-bar .google-brand {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0;
}

.reviews-google-bar .g {
    font-weight: 500;
}

.reviews-google-bar .g-g {
    color: #4285F4;
}

.reviews-google-bar .g-o1 {
    color: #EA4335;
}

.reviews-google-bar .g-o2 {
    color: #FBBC05;
}

.reviews-google-bar .g-g2 {
    color: #4285F4;
}

.reviews-google-bar .g-l {
    color: #34A853;
}

.reviews-google-bar .g-e {
    color: #EA4335;
}

.reviews-google-bar .muted {
    font-weight: 500;
}

.reviews-google-bar .google-brand .muted {
    margin-left: 8px;
}

.google-rating-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.google-score {
    font-size: 28px;
    font-weight: 400;
}

.google-stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

.google-count {
    font-weight: 300;
}

.google-btn {
    white-space: nowrap;
}

.reviews-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 10px;
}

.review-author {
    font-weight: 700;
}

.review-rating .star {
    color: #d1d5db;
    font-size: 16px;
}

.review-rating .star.filled {
    color: #f59e0b;
    /* amber */
}

.review-text {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.review-date {
    font-size: 14px;
    opacity: 0.7;
}

.reviews-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.reviews-page .reviews-actions {
    justify-content: center;
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 32px;
    }

    .reviews-description {
        font-size: 18px;
    }

    .review-card {
        flex-basis: 280px;
    }

    .reviews-google-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Swiper overrides within reviews */
.reviews-page .reviews-swiper {
    padding: 8px 0 32px;
}

.reviews-page .swiper-pagination-bullet {
    background: #9ca3af;
    opacity: 1;
}

.reviews-page .swiper-pagination-bullet-active {
    background: #111827;
}

/* Footer social icons layout */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
    line-height: 0;
    width: 56px;
}

/* Blog Show Scoped Styles */
.blog-show .seo-article {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Contacts Page Scoped Styles */
.contacts-page .info-card {
    border: 1px solid #000000;
    border-radius: 6px;
    padding: 16px;
    background: #FFD72D;
    margin-bottom: 16px;
}

.contacts-page .info-card__title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.27;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 8px;
}

.contacts-page .info-card__text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.177;
    color: #000000;
}

.contacts-page .info-card__link {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px dotted #000000;
}

.contacts-page .info-card__link:hover {
    color: #333333;
}

.contacts-page .contacts-map {
    width: 100%;
    height: 320px;
    border-radius: 4px;
    margin-top: 12px;
}

.contacts-page form {
    font-size: 16px;
}

.contacts-page .form-input,
.contacts-page .form-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    padding: 12px 0;
    background: transparent;
    color: #000000;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contacts-page .form-input:focus,
.contacts-page .form-textarea:focus {
    outline: none;
    box-shadow: none;
}

.contacts-page .form-field {
    margin-bottom: 24px;
}

.contacts-page .form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contacts-page .form-actions {
    display: flex;
    justify-content: flex-end;
}

.contacts-page .form-textarea {
    resize: vertical;
    min-height: 80px;
}

.blog-show .latest-posts,
.blog-index .latest-posts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-show .post-card,
.blog-index .post-card {
    flex: 1 1 calc(25% - 12px);
    min-width: 230px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px;
    background: #fff;
}

.blog-show .post-card__link,
.blog-index .post-card__link {
    text-decoration: none;
    color: inherit;
}

.blog-show .post-card__image,
.blog-index .post-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
}

.blog-show .post-card__title,
.blog-index .post-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0 4px 0;
}

.blog-show .post-card__excerpt,
.blog-index .post-card__excerpt {
    font-size: 14px;
    opacity: 0.8;
}

.blog-show .post-card__more,
.blog-index .post-card__more {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
}

@media (max-width: 992px) {

    .blog-show .post-card,
    .blog-index .post-card {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 576px) {

    .blog-show .post-card,
    .blog-index .post-card {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}


.modal-content {
    background-color: #fefefe;
    padding: 32px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-control {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Hero Phone */
.hero-phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.phone-icon {
    width: 24px;
    height: 24px;
}

.master-call-label {
    font-size: 14px;
    color: #666;
    margin-left: 36px;
    /* Align with text */
}

/* Pagination Styles */
.pagination-wrapper nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-wrapper .hidden {
    display: none;
}

.pagination-wrapper .flex {
    display: flex;
}

.pagination-wrapper .justify-between {
    justify-content: space-between;
}

.pagination-wrapper .items-center {
    align-items: center;
}

/* Target the links and spans directly for standard Laravel pagination */
.pagination-wrapper a,
.pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    color: #374151;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
    height: 40px;
    transition: all 0.2s;
}

.pagination-wrapper a:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #111827;
}

/* Active state */
.pagination-wrapper span[aria-current="page"],
.pagination-wrapper .active span,
.pagination-wrapper .active a {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Disabled state */
.pagination-wrapper span[aria-disabled="true"],
.pagination-wrapper .disabled span {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f9fafb;
}

/* SVG icons in pagination (arrows) */
.pagination-wrapper svg {
    width: 20px;
    height: 20px;
}

/* Hide the "Showing results x to y" text if it appears and is not wanted,
   or style it if it is part of the default view */
.pagination-wrapper p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    display: none;
    /* Often we just want the links in simple pagination */
}

/* Mobile responsiveness for pagination */
@media (max-width: 640px) {
    .pagination-wrapper .hidden.sm\:flex-1 {
        display: none !important;
    }

    .pagination-wrapper nav {
        gap: 8px;
    }

    .pagination-wrapper>nav>div:first-child {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}