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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
    min-height: 70px;
}

.header-left {
    display: flex;
    align-items: center;
    
    gap: 15px;
}

.logo-container{
    margin-top: -15px;
    height: 130px;
    margin-bottom: -40px;
    margin-right: -40px;
}
.logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.company-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.work-text {
    font-size: 14px;
    color: #666;
    margin-left: 20px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0078D4;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    background: #00BFFF;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0099CC;
    transform: translateY(-1px);
}

.btn-primary,
a.btn-primary {
    text-decoration: none;
    display: inline-flex;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #0078D4;
}

.btn-large {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
}

.region-select {
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    min-width: 120px;
}

.region-select:hover {
    border-color: #0078D4;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15);
}

.region-select:focus {
    outline: none;
    border-color: #0078D4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    min-width: 120px;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dropdown-selected:hover {
    border-color: #0078D4;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15);
}

.custom-dropdown.open .dropdown-selected {
    border-color: #0078D4;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15);
}

.selected-text {
    font-weight: 500;
    color: #333;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: #666;
    font-size: 12px;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #0078D4;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.custom-dropdown.open .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 200px;
}

.dropdown-option {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-option:hover {
    background: #f8f9fa;
    color: #0078D4;
}

.dropdown-option.selected {
    background: #e6f3ff;
    color: #0078D4;
    font-weight: 500;
    position: relative;
}

.dropdown-option.selected::after {
    content: '✓';
    position: absolute;
    right: 16px;
    color: #0078D4;
    font-weight: bold;
}

/* Mobile specific - hide checkmarks */
@media (max-width: 768px) {
    .dropdown-option.selected::after {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero_bel.jpg') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.8), rgba(0, 191, 255, 0.7));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 100%;
    
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 60%;
}

.hero-buttons {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.hero-btn-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.telegram-text {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 8px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

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

.section-title .highlight {
    color: #0078D4;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.stat-card.photo-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-card.photo-placeholder:hover {
    border-color: #0078D4;
    color: #0078D4;
}

.photo-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.photo-upload i {
    font-size: 24px;
}

.stat-card.stat-number {
    background: #0078D4;
    color: white;
}

.stat-card.stat-number.highlight {
    background: #003D75;
}

.stat-card.stat-number.light {
    background: #E6F3FF;
    color: #0078D4;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.2;
}

/* Photo cards */
.photo-card {
    padding: 0;
    overflow: hidden;
    height: 190px;
}

.stat-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rating card - simple white background */
.rating-card {
    position: relative;
    background: white;
}

.rating-card .stat-value,
.rating-card .stat-label {
    position: relative;
    z-index: 1;
}

/* Centered care section */
.care-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.care-content-centered .care-title {
    margin-bottom: 30px;
}

.care-content-centered .care-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer links */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #0078D4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Care Section */
.care-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.care-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-player {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    display: none;
}

.care-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.care-list {
    list-style: none;
    padding: 0;
}

.care-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.care-list li:before {
    content: '●';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 18px;
}

/* Development Section */
.development-section {
    padding: 80px 0;
    background: #e6f3ff;
}

.development-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.development-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.development-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.development-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #0078D4;
    margin-bottom: 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.review-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 60px 0;
}

.stat-block {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-rating {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #333;
}

.stars {
    color: #FFD700;
    font-size: 18px;
}

.reviews-count {
    font-size: 14px;
    color: #666;
}

.rating-description {
    font-size: 14px;
    color: #666;
    max-width: 200px;
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.hh-icon {
    background: #d52b1e;
    font-size: 18px;
}

.chart-icon {
    
    font-size: 24px;
    padding: 8px;
}

.chart-icon-img {
    width: 61px;
    height: 61px;
    object-fit: contain;
    
}

.employee-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.reviewer-position {
    font-size: 14px;
    color: #0078D4;
    margin-bottom: 3px;
}

.reviewer-city {
    font-size: 12px;
    color: #999;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-text {
    display: flex;
    gap: 30px;
}

.footer-company {
    font-weight: 600;
    font-size: 16px;
}

.footer-work {
    font-size: 14px;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: #ccc;
    text-align: center;
    line-height: 1.5;
}

.footer-copyright a {
    color: #0078D4;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .navigation {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .container-header {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .header-left {
        flex-direction: row;
        align-items: center;
        justify-content: start;
        margin-left: -100px;
        gap: 10px;
        width: 100%;
        
    }
    
    .logo-container {
        margin-top: 10px;
        
        
        
    }
    
    .company-name {
        font-size: 18px;
        line-height: 1.2;
        flex: 1;
        margin-bottom: -20px;
        margin-left: -70px;

    }
    
    .work-text {
        display: none;
    }
    
    .navigation {
        display: none;
    }
    
    .header-right {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .header-right .btn-primary {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 90%;
    }
    
    .hero-content {
        max-width: 100%;
        margin-left: 0;
    }
    
    /* Fix horizontal scroll */
    .hero, .about, .why-choose, .care-section, .development-section, .steps-section, .reviews-section {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .hero-bg, .hero-overlay {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .care-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .development-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-stats {
        grid-template-columns: 1fr;
    }
    
    .employee-reviews {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        overflow-x: hidden;
        gap: 10px;
    }
    

    
    .stat-card .stat-value {
        font-size: 24px !important;
    }
    
    .stat-card .stat-label {
        font-size: 11px !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        overflow-x: hidden;
    }
    
    .benefit-card {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Additional overflow fixes */
    .care-content, .development-content, .steps-grid, .review-stats, .employee-reviews {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .care-content > *, .development-content > *, .steps-grid > *, .review-stats > *, .employee-reviews > * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-text {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Mobile footer adaptation */
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    /* Mobile telegram text */
    .development-right .btn-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .telegram-text {
        margin-left: 0;
        margin-top: 5px;
        margin-left: 30px;
        
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .why-choose {
        padding: 60px 0;
    }

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