/* Service Landing Pages - Bootstrap Only Styles */

/* Gradient backgrounds */
.bg-gradient-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(34, 197, 94, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(234, 179, 8, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.bg-gradient-indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(244, 63, 94, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.bg-gradient-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(249, 115, 22, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.bg-gradient-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(6, 182, 212, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

/* Section backgrounds */
.section-bg-green {
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.05), rgba(255, 255, 255, 1), rgba(16, 185, 129, 0.03));
}

.section-bg-blue {
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.05), rgba(255, 255, 255, 1), rgba(139, 92, 246, 0.03));
}

.section-bg-orange {
    background: linear-gradient(to bottom, rgba(249, 115, 22, 0.05), rgba(255, 255, 255, 1), rgba(234, 179, 8, 0.03));
}

.section-bg-indigo {
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.05), rgba(255, 255, 255, 1), rgba(168, 85, 247, 0.03));
}

.section-bg-pink {
    background: linear-gradient(to bottom, rgba(236, 72, 153, 0.05), rgba(255, 255, 255, 1), rgba(244, 63, 94, 0.03));
}

.section-bg-red {
    background: linear-gradient(to bottom, rgba(239, 68, 68, 0.05), rgba(255, 255, 255, 1), rgba(249, 115, 22, 0.03));
}

.section-bg-teal {
    background: linear-gradient(to bottom, rgba(20, 184, 166, 0.05), rgba(255, 255, 255, 1), rgba(6, 182, 212, 0.03));
}

/* Decorative circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    pointer-events: none;
}

.decorative-circle-1 {
    width: 288px;
    height: 288px;
    top: 80px;
    left: 40px;
}

.decorative-circle-2 {
    width: 384px;
    height: 384px;
    bottom: 80px;
    right: 40px;
}

.decorative-circle-3 {
    width: 256px;
    height: 256px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Badge styles */
.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.badge-green {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.15));
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-blue {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.15));
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-orange {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(234, 179, 8, 0.15));
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.badge-indigo {
    background: linear-gradient(to right, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.15));
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.badge-pink {
    background: linear-gradient(to right, rgba(236, 72, 153, 0.1), rgba(244, 63, 94, 0.15));
    color: #db2777;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.badge-red {
    background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.15));
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-teal {
    background: linear-gradient(to right, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.15));
    color: #0d9488;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

/* Gradient text */
.text-gradient-green {
    background: linear-gradient(to right, #16a34a, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(to right, #2563eb, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-orange {
    background: linear-gradient(to right, #ea580c, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-indigo {
    background: linear-gradient(to right, #4f46e5, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-pink {
    background: linear-gradient(to right, #db2777, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-red {
    background: linear-gradient(to right, #dc2626, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-teal {
    background: linear-gradient(to right, #0d9488, #14b8a6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature cards */
.feature-card {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card-green:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-card-blue:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-card-orange:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.feature-card-indigo:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-card-pink:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.feature-card-red:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.feature-card-teal:hover {
    border-color: rgba(20, 184, 166, 0.3);
}

.feature-card-red:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

/* Feature icon circles */
.feature-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-circle {
    transform: scale(1.1);
}

/* Gradient buttons */
.btn-gradient-green {
    background: linear-gradient(to right, #16a34a, #10b981);
    border: none;
    color: white;
}

.btn-gradient-green:hover {
    background: linear-gradient(to right, #15803d, #059669);
    color: white;
}

.btn-gradient-blue {
    background: linear-gradient(to right, #2563eb, #8b5cf6);
    border: none;
    color: white;
}

.btn-gradient-blue:hover {
    background: linear-gradient(to right, #1d4ed8, #7c3aed);
    color: white;
}

.btn-gradient-orange {
    background: linear-gradient(to right, #ea580c, #eab308);
    border: none;
    color: white;
}

.btn-gradient-orange:hover {
    background: linear-gradient(to right, #c2410c, #ca8a04);
    color: white;
}

.btn-gradient-indigo {
    background: linear-gradient(to right, #4f46e5, #a855f7);
    border: none;
    color: white;
}

.btn-gradient-indigo:hover {
    background: linear-gradient(to right, #4338ca, #9333ea);
    color: white;
}

.btn-gradient-pink {
    background: linear-gradient(to right, #db2777, #f43f5e);
    border: none;
    color: white;
}

.btn-gradient-pink:hover {
    background: linear-gradient(to right, #be185d, #e11d48);
    color: white;
}

.btn-gradient-red {
    background: linear-gradient(to right, #dc2626, #f97316);
    border: none;
    color: white;
}

.btn-gradient-red:hover {
    background: linear-gradient(to right, #b91c1c, #ea580c);
    color: white;
}

.btn-gradient-teal {
    background: linear-gradient(to right, #0d9488, #06b6d4);
    border: none;
    color: white;
}

.btn-gradient-teal:hover {
    background: linear-gradient(to right, #0f766e, #0891b2);
    color: white;
}

/* Floating badge */
.floating-badge {
    position: absolute;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    border: 2px solid;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hero section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Image hover effect */
.feature-image-preview {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-image-preview {
    opacity: 1;
}

/* Section titles - увеличенный размер */
.section-title {
    font-size: 3rem !important;
    line-height: 1.2;
    font-weight: 700 !important;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem !important;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 4rem !important;
    }
}

/* Подзаголовки секций - меньший размер */
.section-title + .lead,
.section-title ~ .lead {
    font-size: 1.25rem !important;
    font-weight: 400 !important;
}

@media (min-width: 768px) {
    .section-title + .lead,
    .section-title ~ .lead {
        font-size: 1.5rem !important;
    }
}

/* Feature cards - уменьшенная высота */
.feature-card .card-body {
    padding: 1rem !important;
}

.feature-icon-circle {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 0.75rem !important;
}

.feature-icon-circle i {
    font-size: 1.25rem !important;
}

.feature-card h3 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
}

.feature-card p {
    font-size: 0.875rem !important;
    margin-bottom: 0.5rem !important;
}

/* Background image covers entire card */
.feature-image-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

.feature-bg-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.feature-card:hover .feature-image-background {
    opacity: 0.6 !important;
}

/* Ensure content stays visible above background image */
.feature-card .card-body {
    position: relative !important;
    z-index: 2 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    transition: background 0.4s ease !important;
}

.feature-card:hover .card-body {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Responsive typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
}

/* Accordion fixes */
.accordion-collapse {
    transition: height 0.35s ease;
}

.accordion-collapse.show {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
}

.accordion-collapse:not(.show) {
    display: none !important;
}

.accordion-body {
    padding: 1.25rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
}

@media (min-width: 1025px) {
    .hero-title {
        font-size: 4.5rem !important;
    }
}
