* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide animated elements by default to prevent flash */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
}

.animate-on-scroll.animated {
    opacity: 1;
    visibility: visible;
}

/* Common Cases Section - hide animated elements */
#common-cases-section .cases-header,
#common-cases-section .case-card,
#common-cases-section .cases-nav-arrow {
    opacity: 0;
    will-change: opacity, transform;
}

/* About Company Section - hide animated elements */
#about-company-section .about-logo-block,
#about-company-section .group-photo,
#about-company-section .money-photo,
#about-company-section .experience-card,
#about-company-section .clock-icon,
#about-company-section .about-cta-button,
#about-company-section .section-label,
#about-company-section .about-main-title,
#about-company-section .about-description-block,
#about-company-section .feature-item {
    opacity: 0;
    will-change: opacity, transform;
}

/* Why Choose Us Section - hide animated elements */
#why-choose-us-section .why-nav-arrow,
#why-choose-us-section .why-photo,
#why-choose-us-section .why-photo-overlay,
#why-choose-us-section .why-main-title,
#why-choose-us-section .why-description-block,
#why-choose-us-section .benefit-item {
    opacity: 0;
    will-change: opacity, transform;
}

/* Distinctive Features Section - hide animated elements */
#distinctive-features-section .features-logo-block,
#distinctive-features-section .features-cta-button,
#distinctive-features-section .features-label,
#distinctive-features-section .features-main-title,
#distinctive-features-section .feature-card {
    opacity: 0;
    will-change: opacity, transform;
}

/* FAQ Section - hide animated elements */
#faq-section .faq-logo-block,
#faq-section .faq-cta-button,
#faq-section .faq-main-title,
#faq-section .faq-item,
#faq-section .faq-photo,
#faq-section .faq-question-mark {
    opacity: 0;
    will-change: opacity, transform;
}

/* Client Reviews Section - hide animated elements */
#client-reviews-section .reviews-logo-block,
#client-reviews-section .reviews-cta-button,
#client-reviews-section .reviews-label,
#client-reviews-section .reviews-main-title,
#client-reviews-section .client-item,
#client-reviews-section .testimonial-block,
#client-reviews-section .reviews-blue-bg,
#client-reviews-section .reviews-photo,
#client-reviews-section .reviews-button {
    opacity: 0;
    will-change: opacity, transform;
}

/* Contact Section - hide animated elements */
#contact-section .contact-top-right-cta,
#contact-section .contact-logo-block,
#contact-section .contact-main-title,
#contact-section .contact-motivational-text,
#contact-section .contact-cta-text-block,
#contact-section .office-location,
#contact-section .contact-form-block,
#contact-section .form-heading,
#contact-section .form-field,
#contact-section .form-submit-button {
    opacity: 0;
    will-change: opacity, transform;
}

/* Statistics Banner Section - hide animated elements */
#statistics-banner .stat-item,
#statistics-banner .stat-number {
    opacity: 0;
    will-change: opacity, transform;
}

:root {
    --primary-blue: #2563EB;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --gold: #FFD700;
    --yellow: #FFD700;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.office-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1200&q=80');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: 1;
}

/* Monitor Display */
.monitor-display {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 300px;
    height: 200px;
    z-index: 3;
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.chart-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chart-numbers {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.chart-numbers .number {
    opacity: 0.8;
}

.candlestick-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 5px;
}

.candle {
    flex: 1;
    min-width: 20px;
    position: relative;
}

.candle-up {
    background: #10b981;
    height: 60%;
    border-radius: 2px;
}

.candle-down {
    background: #ef4444;
    height: 40%;
    border-radius: 2px;
}

/* Abstract Shapes */
.abstract-shapes {
    position: absolute;
    top: 15%;
    right: 5%;
    z-index: 3;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.shape-1 {
    width: 8px;
    height: 30px;
    top: 0;
    left: 0;
    transform: rotate(45deg);
}

.shape-2 {
    width: 12px;
    height: 12px;
    top: 10px;
    left: 20px;
    transform: rotate(30deg);
}

.shape-3 {
    width: 6px;
    height: 20px;
    top: 25px;
    left: 35px;
    transform: rotate(-45deg);
}

.shape-4 {
    width: 10px;
    height: 10px;
    top: 15px;
    left: 50px;
    transform: rotate(60deg);
}

.shape-5 {
    width: 8px;
    height: 25px;
    top: 30px;
    left: 65px;
    transform: rotate(-30deg);
}

/* Top Right CTA */
.top-right-cta {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    cursor: pointer;
}

.cta-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.speech-bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-text {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Hero Content Block */
.hero-content-block {
    position: relative;
    width: 50%;
    min-height: 100vh;
    background: linear-gradient(to right, #0202a63d, #1a1a2e00);
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

/* Navigation Arrow */
.nav-arrow {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    cursor: pointer;
    z-index: 20;
}

/* Logo Block */
.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

/* Headline Block */
.headline-block {
    margin-bottom: 30px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 15px;
}

.headline-underline {
    width: 200px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

/* Body Text Block */
.body-text-block {
    margin-bottom: 40px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    max-width: 500px;
}

/* CTA Button */
.cta-button-block {
    margin-top: 20px;
}

.cta-button {
    padding: 18px 45px;
    background: var(--primary-blue);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.cta-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Common Cases Section */
.common-cases-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    padding: 100px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-cases-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
}

/* Cases Navigation Arrow */
.cases-nav-arrow {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    cursor: pointer;
    z-index: 20;
}

.cases-nav-arrow:hover {
    color: #2563EB;
}

/* Cases Header */
.cases-header {
    margin-bottom: 60px;
    max-width: 900px;
}

.cases-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 30px;
}

.highlighted-word {
    position: relative;
    display: inline-block;
}

.highlighted-word::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow);
    z-index: -1;
    transform: scaleX(var(--underline-scale, 1));
    transform-origin: left;
}

.cases-description {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.description-line {
    width: 4px;
    height: 60px;
    background: var(--yellow);
    border-radius: 2px;
    flex-shrink: 0;
}

.description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
}

/* Cases Cards */
.cases-cards {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cases-cards::-webkit-scrollbar {
    display: none;
}

.case-card {
    min-width: 240px;
    max-width: 240px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.case-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.case-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.case-card:hover .case-icon {
    background: #eff6ff;
    transform: scale(1.1);
}

.case-text {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .cases-nav-arrow {
        left: -60px;
    }
}

@media (max-width: 1200px) {
    .common-cases-section {
        padding: 80px 60px;
    }
    
    .cases-title {
        font-size: 48px;
    }
    
    .cases-nav-arrow {
        left: -40px;
    }
    
    .case-card {
        min-width: 220px;
        max-width: 220px;
    }
}

@media (max-width: 968px) {
    .common-cases-section {
        padding: 60px 40px;
    }
    
    .cases-title {
        font-size: 36px;
    }
    
    .cases-nav-arrow {
        display: none;
    }
    
    .case-card {
        min-width: 200px;
        max-width: 200px;
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .common-cases-section {
        padding: 40px 20px;
    }
    
    .cases-title {
        font-size: 28px;
    }
    
    .cases-header {
        margin-bottom: 40px;
    }
    
    .case-card {
        min-width: 180px;
        max-width: 180px;
        padding: 25px 15px;
    }
    
    .case-text {
        font-size: 12px;
    }
    
    .case-icon {
        width: 60px;
        height: 60px;
    }
}

/* About Company Section */
.about-company-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    padding: 100px 80px;
    display: flex;
    align-items: center;
}

.about-company-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Visuals */
.about-visuals {
    position: relative;
    height: 600px;
}

/* Logo Block */
.about-logo-block {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-blue);
    border-radius: 16px 16px 16px 0;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.about-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-logo-vh {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.about-logo-trust {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 3px;
}

/* Images Collage */
.images-collage {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 80px;
}

.group-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.group-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.money-photo {
    position: absolute;
    top: 10%;
    right: 0;
    width: 50%;
    height: 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.money-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.experience-number {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
}

.clock-icon {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 5;
}

/* Right Side - Content */
.about-content {
    position: relative;
    padding-left: 40px;
}

/* Top Right CTA Button */
.about-cta-button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.about-cta-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.cta-icon-small {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Section Label */
.section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Main Title */
.about-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 30px;
}

/* Description Block */
.about-description-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
}

.about-description-line {
    width: 4px;
    height: 80px;
    background: var(--yellow);
    border-radius: 2px;
    flex-shrink: 0;
}

.about-description-text {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    max-width: 550px;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon.yellow-icon {
    background: #fef9c3;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

@media (max-width: 1200px) {
    .about-company-container {
        gap: 60px;
    }
    
    .about-main-title {
        font-size: 40px;
    }
    
    .hero-content-block {
        width: 55%;
        padding: 50px 60px;
    }
    
    .hero-headline {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .about-company-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visuals {
        height: 500px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-cta-button {
        position: relative;
        display: inline-flex;
        margin-bottom: 30px;
    }
    
    .hero-content-block {
        width: 100%;
        padding: 40px 40px;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .nav-arrow {
        display: none;
    }
    
    .monitor-display {
        display: none;
    }
}

@media (max-width: 640px) {
    .about-company-section {
        padding: 60px 20px;
    }
    
    .about-visuals {
        height: 400px;
    }
    
    .about-logo-block {
        padding: 20px 25px;
    }
    
    .about-logo-vh {
        font-size: 24px;
    }
    
    .about-main-title {
        font-size: 32px;
    }
    
    .experience-card {
        padding: 20px 25px;
    }
    
    .experience-number {
        font-size: 36px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-content-block {
        padding: 30px 20px;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 14px;
    }
    
    .top-right-cta {
        top: 20px;
        right: 20px;
    }
    
    .cta-text {
        font-size: 12px;
    }
}

/* Statistics Banner */
.statistics-banner {
    background: var(--primary-blue);
    padding: 60px 80px;
    position: relative;
    z-index: 100;
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
}

.statistics-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-percent {
    font-size: 40px;
    font-weight: 700;
}

.stat-dot {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-us-section {
    position: relative;
    min-height: 100vh;
    background: #1a1a2e;
    padding: 100px 80px;
    display: flex;
    align-items: center;
}

.why-choose-us-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Navigation Arrow */
.why-nav-arrow {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    z-index: 20;
}

.why-nav-arrow:hover {
    color: var(--yellow);
}

/* Left Side - Visual */
.why-visual {
    position: relative;
}

.why-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.why-logo-banner {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-logo-icon-small {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-logo-text-small {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

/* Right Side - Content */
.why-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-main-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
}

/* Description Block */
.why-description-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-description-line {
    width: 4px;
    height: 80px;
    background: var(--yellow);
    border-radius: 2px;
    flex-shrink: 0;
}

.why-description-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.benefit-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Design for Statistics Banner */
@media (max-width: 1200px) {
    .statistics-container {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-percent {
        font-size: 36px;
    }
}

@media (max-width: 968px) {
    .statistics-banner {
        padding: 50px 40px;
        border-radius: 20px 20px 0 0;
        margin-top: -20px;
    }
    
    .statistics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .why-choose-us-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-nav-arrow {
        display: none;
    }
    
    .why-main-title {
        font-size: 42px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .statistics-banner {
        padding: 40px 20px;
        border-radius: 16px 16px 0 0;
        margin-top: -16px;
    }
    
    .statistics-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-percent {
        font-size: 32px;
    }
    
    .why-choose-us-section {
        padding: 60px 20px;
    }
    
    .why-main-title {
        font-size: 32px;
    }
    
    .why-description-text {
        font-size: 14px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-title {
        font-size: 18px;
    }
    
    .benefit-text {
        font-size: 13px;
    }
}

/* Distinctive Features Section */
.distinctive-features-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    padding: 80px 80px 100px;
    display: flex;
    align-items: center;
}

.distinctive-features-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Features Header */
.features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.features-logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.features-logo-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
}

.features-cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-cta-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.features-cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.features-cta-button:hover .features-cta-text {
    color: white;
}

/* Features Title Block */
.features-title-block {
    text-align: center;
    margin-bottom: 80px;
}

.features-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.features-main-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin: 0;
}

/* Features Cards Grid */
.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.feature-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.feature-card.featured-card {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.feature-card.featured-card:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #64748b;
}

.featured-card .card-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.featured-card .card-title {
    color: white;
}

.card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.featured-card .card-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-main-title {
        font-size: 48px;
    }
    
    .features-cards-grid {
        gap: 30px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
}

@media (max-width: 968px) {
    .distinctive-features-section {
        padding: 60px 40px 80px;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .features-title-block {
        margin-bottom: 60px;
    }
    
    .features-main-title {
        font-size: 36px;
    }
    
    .features-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card.featured-card {
        transform: scale(1);
    }
    
    .feature-card.featured-card:hover {
        transform: translateY(-10px);
    }
    
    .feature-card {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .distinctive-features-section {
        padding: 40px 20px 60px;
    }
    
    .features-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .features-logo-block {
        padding: 10px 16px;
    }
    
    .features-logo-text {
        font-size: 16px;
    }
    
    .features-cta-button {
        padding: 8px 16px;
    }
    
    .features-title-block {
        margin-bottom: 40px;
    }
    
    .features-main-title {
        font-size: 28px;
    }
    
    .features-label {
        font-size: 12px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .card-text {
        font-size: 14px;
    }
    
    .card-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 15px;
        right: 15px;
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    padding: 80px 80px 100px;
    display: flex;
    align-items: center;
}

.faq-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* FAQ Header */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.faq-logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.faq-logo-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
}

.faq-cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cta-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.faq-cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.faq-cta-button:hover .faq-cta-text {
    color: white;
}

/* FAQ Content Wrapper */
.faq-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* FAQ Content */
.faq-main-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 50px;
}

.faq-highlighted-word {
    position: relative;
    display: inline-block;
}

.faq-highlighted-word::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow);
    z-index: -1;
    transform: scaleX(var(--faq-underline-scale, 1));
    transform-origin: left;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #e2e8f0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-question {
    background: var(--primary-blue);
    color: white;
}

.faq-question:hover {
    background: #cbd5e1;
}

.faq-item.active .faq-question:hover {
    background: #1e40af;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.faq-item.active .faq-question-text {
    color: white;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon svg path {
    stroke: #1e293b;
    transition: stroke 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon svg path {
    stroke: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 25px;
    opacity: 1;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* FAQ Visual */
.faq-visual {
    position: relative;
    height: 600px;
}

.faq-photo {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.faq-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: circle(50% at 50% 50%);
}

.faq-question-mark {
    position: absolute;
    z-index: 3;
    opacity: 0;
}

.faq-qm-1 {
    top: 0;
    right: 0;
}

.faq-qm-2 {
    top: 100px;
    right: 60px;
}

.faq-qm-3 {
    bottom: 80px;
    right: 40px;
}

/* Client Reviews Section */
.client-reviews-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    padding: 80px 80px 100px;
    display: flex;
    align-items: center;
}

.client-reviews-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Reviews Header */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.reviews-logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
    transform: rotate(-2deg);
}

.reviews-logo-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
}

.reviews-cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-cta-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.reviews-cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.reviews-cta-button:hover .reviews-cta-text {
    color: white;
}

/* Reviews Content Wrapper */
.reviews-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Reviews Content */
.reviews-label {
    font-size: 14px;
    font-weight: 700;
    color: #f97316;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.reviews-main-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 40px;
}

.reviews-highlighted-word {
    position: relative;
    display: inline-block;
}

.reviews-highlighted-word::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow);
    z-index: -1;
    transform: scaleX(var(--reviews-underline-scale, 1));
    transform-origin: left;
}

/* Clients List */
.clients-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(5px);
}

.client-item.active {
    background: #eff6ff;
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.15);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.client-item.active .client-avatar {
    border-color: var(--primary-blue);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.client-item.active .client-name {
    color: var(--primary-blue);
}

.client-role {
    font-size: 14px;
    color: #64748b;
}

.testimonial-block {
    margin-top: 30px;
    min-height: 150px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin: 0;
    max-width: 600px;
    display: none;
}

.testimonial-text.active {
    display: block;
}

/* Reviews Visual */
.reviews-visual {
    position: relative;
    height: 700px;
}

.reviews-blue-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 16px;
    z-index: 1;
}

.reviews-photo {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 70%;
    height: 80%;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.reviews-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-button-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
}

.reviews-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    border-radius: 8px;
    padding: 12px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reviews-button-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-button-text {
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

/* Responsive Design for FAQ */
@media (max-width: 1200px) {
    .faq-main-title {
        font-size: 48px;
    }
    
    .faq-content-wrapper {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .faq-section {
        padding: 60px 40px 80px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .faq-main-title {
        font-size: 36px;
    }
    
    .faq-visual {
        height: 400px;
    }
    
    .client-reviews-section {
        padding: 60px 40px 80px;
    }
    
    .reviews-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .reviews-main-title {
        font-size: 42px;
    }
    
    .reviews-visual {
        height: 500px;
    }
    
    .reviews-photo {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 40px 20px 60px;
    }
    
    .faq-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .faq-main-title {
        font-size: 28px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-visual {
        height: 300px;
    }
    
    .client-reviews-section {
        padding: 40px 20px 60px;
    }
    
    .reviews-main-title {
        font-size: 32px;
    }
    
    .clients-list {
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .client-item {
        padding: 15px;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
    }
    
    .client-name {
        font-size: 16px;
    }
    
    .client-role {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .reviews-visual {
        height: 400px;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    background: #ffffff;
    min-height: 100vh;
    padding: 80px 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

/* Top Right CTA */
.contact-top-right-cta {
    position: absolute;
    top: 0;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    cursor: pointer;
}

.contact-cta-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.contact-speech-bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.contact-cta-text {
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Contact Info Block */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1f2937;
}

.contact-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 10px;
}

.contact-highlighted-word {
    color: var(--primary-blue);
}

.contact-motivational-text {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    line-height: 1.6;
}

.contact-cta-text-block {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Office Locations */
.office-locations {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.office-item {
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.office-item:hover {
    background: #f3f4f6;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.office-header svg {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.office-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.office-address {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    padding-left: 30px;
}

/* Contact Form Block */
.contact-form-block {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

#form-field-phone {
    z-index: 99999;
}

#form-field-message {
    z-index: 1;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-input,
.form-textarea {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    position: relative;
    z-index: 1;
}

/* Phone Input - intl-tel-input */
#form-field-phone {
    position: relative;
}

#form-field-phone .form-input {
    padding: 14px 16px;
}

/* intl-tel-input customization */
.iti {
    width: 100%;
    display: block;
    position: relative;
    z-index: 99999;
}

.iti__dropdown {
    z-index: 99999 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: black;
}

.iti__country-list {
    background: white;
}

.iti__flag-container {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}

.iti__selected-flag {
    padding: 0 14px;
    height: 100%;
    border-right: none;
    transition: all 0.3s ease;
}

.iti__selected-flag:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.iti__selected-flag:focus {
    outline: none;
}

.phone-input {
    padding-left: 60px !important;
}

.phone-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.phone-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.phone-input.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.phone-error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.iti__country-list {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    border: 1px solid #e5e7eb;
    max-height: 300px;
    overflow-y: auto;
    z-index: 99999 !important;
    position: absolute !important;
}

.iti__dropdown-content {
    z-index: 99999 !important;
    position: relative;
}

.iti__country {
    padding: 10px 12px;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: rgba(37, 99, 235, 0.1);
}

.iti__country-name,
.iti__dial-code {
    color: #1f2937;
    font-size: 14px;
}

.iti__arrow {
    border-top-color: #6b7280;
    margin-left: 6px;
}

.iti__selected-flag:hover .iti__arrow {
    border-top-color: var(--primary-blue);
}

/* Submit Button */
.form-submit-button {
    padding: 16px 40px;
    background: var(--primary-blue);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    margin-top: 10px;
}

.form-submit-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.form-submit-button:active {
    transform: translateY(0);
}

/* Test Data Button */
.form-test-button {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-test-button:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-test-button:active {
    transform: translateY(0);
}

/* Scroll to Top Button */
.contact-scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.contact-scroll-to-top:hover {
    background: #ffed4e;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.contact-scroll-to-top svg {
    color: #1f2937;
}

/* Responsive Design for Contact Section */
@media (max-width: 1200px) {
    .contact-container {
        gap: 60px;
    }
    
    .contact-main-title {
        font-size: 42px;
    }
    
    .form-heading {
        font-size: 28px;
    }
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .contact-top-right-cta {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
        justify-content: flex-end;
    }
    
    .contact-main-title {
        font-size: 36px;
    }
    
    .contact-form-block {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .contact-main-title {
        font-size: 28px;
    }
    
    .contact-motivational-text {
        font-size: 16px;
    }
    
    .contact-form-block {
        padding: 25px;
    }
    
    .form-heading {
        font-size: 24px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .form-submit-button {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .office-item {
        padding: 15px;
    }
    
    .office-title {
        font-size: 16px;
    }
    
    .office-address {
        font-size: 14px;
        padding-left: 25px;
    }
    
    .contact-scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 30px;
        right: 30px;
    }
    
    .contact-scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
