/* ============================================
   CUSTOM BOOTSTRAP THEME - СЛАВЯНЕ 54
   ============================================ */

:root {
    --bs-primary: #0d6efd;
    --bs-primary-dark: #0a58ca;
    --bs-success: #10b981;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --font-montserrat: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-montserrat);
    padding-top: 76px;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   ПРОГРЕСС-БАР ПРОКРУТКИ
   ============================================ */
.progress-bar-scroll {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd 0%, #10b981 100%);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ============================================
   NAVBAR УЛУЧШЕНИЯ
   ============================================ */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98) !important;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    background-image: url('../img/IMG_6333.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(10, 88, 202, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-section .lead {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.25rem;
}

/* ============================================
   HOVER EFFECTS
   ============================================ */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.card {
    transition: all 0.3s ease;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
    overflow: hidden;
    border-radius: 0.5rem;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\F52A';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 3rem;
    background: rgba(13, 110, 253, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   КНОПКА "ВВЕРХ"
   ============================================ */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    animation: scrollToTopPulse 3s infinite;
}

#scrollTopBtn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6);
}

#scrollTopBtn i {
    font-size: 20px;
    color: white;
}

@keyframes scrollToTopPulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(13, 110, 253, 0.6);
    }
}

/* ============================================
   WHATSAPP ПЛАВАЮЩАЯ КНОПКА
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
    color: white;
    font-size: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   СЧЁТЧИКИ
   ============================================ */
.counter-box h2 {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS УЛУЧШЕНИЯ
   ============================================ */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    transform: translateY(-2px);
}

.btn-warning {
    color: #000;
    font-weight: 700;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* ============================================
   CARDS IMPROVEMENTS
   ============================================ */
.card {
    border-radius: 1rem;
    overflow: hidden;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* ============================================
   ACCORDION IMPROVEMENTS
   ============================================ */
.accordion-button {
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-item {
    border-radius: 0.75rem !important;
}

/* ============================================
   CAROUSEL IMPROVEMENTS
   ============================================ */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 100px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 25px;
    }
    
    #scrollTopBtn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    #scrollTopBtn i {
        font-size: 18px;
    }
    
    /* Адаптивные размеры заголовков для мобильных */
    .animated-title {
        font-size: 2.5rem !important;
        line-height: 1.3;
    }
}

/* Планшеты */
@media (min-width: 768px) and (max-width: 991px) {
    .animated-title {
        font-size: 3rem !important;
        line-height: 1.25;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-primary {
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.15);
}

.shadow-success {
    box-shadow: 0 0.5rem 1rem rgba(16, 185, 129, 0.15);
}

/* ============================================
   LOADING STATES
   ============================================ */
.btn.loading {
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   PRICE TABLE УЛУЧШЕНИЯ
   ============================================ */
.table-row-highlight {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.02) 100%);
}

.table-row-highlight:hover {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    transform: translateX(5px);
}

/* ============================================
   АНИМИРОВАННАЯ НАВИГАЦИЯ
   ============================================ */

/* Анимированная навбар */
.animated-navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
}

.animated-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Логотип анимация */
.brand-animate {
    transition: all 0.3s ease;
}

.brand-animate:hover {
    transform: scale(1.05);
}

.logo-rotate {
    transition: transform 0.3s ease;
}

.brand-animate:hover .logo-rotate {
    transform: rotate(10deg);
}

.brand-title {
    transition: color 0.3s ease;
}

.brand-subtitle {
    transition: color 0.3s ease;
}

.brand-animate:hover .brand-title {
    color: #0d6efd !important;
}

.brand-animate:hover .brand-subtitle {
    color: #6c757d !important;
}

/* Анимация навигационных ссылок */
.nav-animate {
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInFromTop 0.6s ease forwards;
}

.nav-animate::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #0d6efd, #0b5ed7);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-animate:hover::after {
    width: 100%;
}

.nav-animate:hover {
    color: #0d6efd !important;
    transform: translateY(-2px);
}

.nav-animate.active {
    color: #0d6efd !important;
    font-weight: 600;
}

.nav-animate.active::after {
    width: 100%;
}

@keyframes slideInFromTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация кнопки телефона */
.phone-btn-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: phoneButtonAppear 0.8s ease 0.5s forwards;
}

.phone-btn-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.phone-btn-animate:hover::before {
    left: 100%;
}

.phone-btn-animate:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.phone-icon {
    transition: transform 0.3s ease;
}

.phone-btn-animate:hover .phone-icon {
    transform: rotate(15deg);
}

.phone-text {
    transition: all 0.3s ease;
}

@keyframes phoneButtonAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Анимация мобильного тогглера */
.animated-toggler {
    border: none;
    transition: all 0.3s ease;
}

.animated-toggler:hover {
    transform: scale(1.1);
}

.animated-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Стили для задержки анимации */
.nav-animate[data-delay="0.1s"] { animation-delay: 0.1s; }
.nav-animate[data-delay="0.2s"] { animation-delay: 0.2s; }
.nav-animate[data-delay="0.3s"] { animation-delay: 0.3s; }
.nav-animate[data-delay="0.4s"] { animation-delay: 0.4s; }
.nav-animate[data-delay="0.5s"] { animation-delay: 0.5s; }
.nav-animate[data-delay="0.6s"] { animation-delay: 0.6s; }
.nav-animate[data-delay="0.7s"] { animation-delay: 0.7s; }
.nav-animate[data-delay="0.8s"] { animation-delay: 0.8s; }

/* ============================================
   АНИМИРОВАННЫЕ КНОПКИ
   ============================================ */

/* Универсальные анимации для всех кнопок */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

/* Специальные анимации для разных типов кнопок */
.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-outline-primary {
    border: 2px solid #0d6efd;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover::after {
    left: 0;
}

.btn-outline-primary:hover {
    color: white !important;
    border-color: #0d6efd;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover::after {
    left: 0;
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Анимация для больших кнопок */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
}

/* Анимация для полноширинных кнопок */
.btn.w-100 {
    transition: all 0.3s ease;
}

.btn.w-100:hover {
    transform: translateY(-3px) scale(1.02);
}

/* ============================================
   СОВРЕМЕННЫЕ КАРТОЧКИ ОТЗЫВОВ
   ============================================ */
.review-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.review-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6f42c1, #dc3545);
}

.review-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars-rating {
    display: flex;
    gap: 0.25rem;
}

.stars-rating i {
    color: #ffc107;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.stars-rating i:hover {
    transform: scale(1.2);
}

.review-date {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.review-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-style: italic;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 3rem;
    color: #0d6efd;
    position: absolute;
    top: -10px;
    left: -15px;
    opacity: 0.3;
    font-family: serif;
}

.review-content p::after {
    content: '"';
    font-size: 3rem;
    color: #0d6efd;
    position: absolute;
    bottom: -20px;
    right: -10px;
    opacity: 0.3;
    font-family: serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.author-avatar:hover {
    transform: scale(1.1);
}

.author-avatar.bg-primary { background: linear-gradient(135deg, #0d6efd, #0b5ed7); }
.author-avatar.bg-success { background: linear-gradient(135deg, #198754, #157347); }
.author-avatar.bg-info { background: linear-gradient(135deg, #0dcaf0, #0aa2c0); }
.author-avatar.bg-warning { background: linear-gradient(135deg, #ffc107, #ffb300); }
.author-avatar.bg-danger { background: linear-gradient(135deg, #dc3545, #bb2d3b); }
.author-avatar.bg-secondary { background: linear-gradient(135deg, #6c757d, #5a6268); }

.author-info h6 {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Анимация появления карточек */
.review-card-modern {
    opacity: 0;
    transform: translateY(30px);
    animation: reviewCardSlideIn 0.6s ease forwards;
}

.review-card-modern:nth-child(1) { animation-delay: 0.1s; }
.review-card-modern:nth-child(2) { animation-delay: 0.2s; }
.review-card-modern:nth-child(3) { animation-delay: 0.3s; }
.review-card-modern:nth-child(4) { animation-delay: 0.4s; }
.review-card-modern:nth-child(5) { animation-delay: 0.5s; }
.review-card-modern:nth-child(6) { animation-delay: 0.6s; }

@keyframes reviewCardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .review-card-modern {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .review-content p {
        font-size: 0.95rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ============================================
   ФОНЫ СЕКЦИЙ
   ============================================ */

/* Галерея - черный градиент для фото */
.gallery-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-section .text-center {
    color: white;
}

.gallery-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.gallery-section .badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%) !important;
    color: #000 !important;
    font-weight: 600;
}

.gallery-section .animated-title {
    background: linear-gradient(135deg, #ffffff 0%, #ffc107 50%, #ff6b6b 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

.gallery-item {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.gallery-item img {
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Видео - темный градиент с кинематографическими эффектами */
.video-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: videoLighting 8s ease-in-out infinite;
}

.video-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
    animation: videoScan 6s linear infinite;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-section .badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%) !important;
    color: #000 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.video-section .animated-title {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffc107 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.video-section .ratio {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-section .ratio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-section .ratio:hover::before {
    opacity: 1;
}

.video-section .ratio:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.video-section video {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.video-section video:hover {
    filter: brightness(1.1) contrast(1.1);
}

/* Стили для YouTube видео карточек */
.video-card {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: videoCardSlideIn 0.6s ease forwards;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }

.video-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.video-card .ratio {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.video-card .ratio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-card:hover .ratio::before {
    opacity: 1;
}

.video-card:hover .ratio {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.video-card iframe {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.video-card:hover iframe {
    filter: brightness(1.1) contrast(1.05);
}

.video-info {
    padding: 1rem 0;
}

.video-info h6 {
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-card:hover .video-info h6 {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

.video-info p {
    transition: all 0.3s ease;
}

.video-card:hover .video-info p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Статистика видео */
.video-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item:hover i {
    transform: scale(1.2);
}

.stat-item h6 {
    font-weight: 600;
    transition: all 0.3s ease;
}

.stat-item:hover h6 {
    color: #ffc107 !important;
}

@keyframes videoCardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .video-card .ratio {
        border-radius: 12px;
    }
    
    .video-card iframe {
        border-radius: 12px;
    }
    
    .video-stats {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.25rem;
    }
    
    .stat-item i {
        font-size: 1.5rem !important;
    }
}

@keyframes videoLighting {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes videoScan {
    0% { 
        transform: translateX(-100%);
    }
    100% { 
        transform: translateX(100%);
    }
}

/* Цены - светло-зеленый для денег */
.prices-section {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 50%, #d4edda 100%);
    position: relative;
    overflow: hidden;
}

.prices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.prices-section .container {
    position: relative;
    z-index: 2;
}

.prices-section .badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.prices-section .animated-title {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* Процесс - светло-голубой для спокойствия */
.process-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 50%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(33, 150, 243, 0.05) 50%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-section .badge {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.process-section .animated-title {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 50%, #28a745 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* Материалы - бежевый для стройматериалов */
.materials-section {
    background: linear-gradient(135deg, #fdf6e3 0%, #f5e6d3 50%, #e8dcc0 100%);
    position: relative;
    overflow: hidden;
}

.materials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(160, 82, 45, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.materials-section .container {
    position: relative;
    z-index: 2;
}

.materials-section .badge {
    background: linear-gradient(135deg, #8b4513 0%, #cd853f 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.materials-section .animated-title {
    background: linear-gradient(135deg, #8b4513 0%, #cd853f 50%, #daa520 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* Отзывы - светло-фиолетовый для доверия */
.reviews-section {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8d5ff 50%, #d4c5e8 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(108, 117, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(108, 117, 125, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-section .badge {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.reviews-section .animated-title {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 50%, #fd7e14 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* Контакты - темно-синий для серьезности */
.contacts-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.contacts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contacts-section .container {
    position: relative;
    z-index: 2;
}

.contacts-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contacts-section .badge {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.contacts-section .animated-title {
    background: linear-gradient(135deg, #ffffff 0%, #007bff 50%, #6f42c1 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* FAQ - светло-желтый для внимания */
.faq-section {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 50%, #ffecb3 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 152, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section .badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%) !important;
    color: #000 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.faq-section .animated-title {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 50%, #dc3545 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* О компании - белый с серыми акцентами */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 30%, rgba(108, 117, 125, 0.05) 50%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(108, 117, 125, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section .badge {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.about-section .animated-title {
    background: linear-gradient(135deg, #6c757d 0%, #495057 50%, #343a40 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* Услуги - светло-серый градиент */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(108, 117, 125, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .badge {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.services-section .animated-title {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 50%, #6f42c1 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* Преимущества - белый с синими акцентами */
.advantages-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(13, 110, 253, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.advantages-section .container {
    position: relative;
    z-index: 2;
}

.advantages-section .badge {
    background: linear-gradient(135deg, #198754 0%, #157347 100%) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.advantages-section .animated-title {
    background: linear-gradient(135deg, #198754 0%, #157347 50%, #0d6efd 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
}

/* ============================================
   АНИМИРОВАННЫЕ ЗАГОЛОВКИ
   ============================================ */

/* Анимированные заголовки секций */
.animated-title {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: titleSlideIn 1s ease forwards;
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 50%, #dc3545 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease forwards, gradientShift 3s ease infinite;
    font-size: 3.5rem !important;
    line-height: 1.2;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 50%, #dc3545 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Задержки для заголовков */
.animated-title:nth-child(1) { animation-delay: 0.1s; }
.animated-title:nth-child(2) { animation-delay: 0.2s; }
.animated-title:nth-child(3) { animation-delay: 0.3s; }
.animated-title:nth-child(4) { animation-delay: 0.4s; }
.animated-title:nth-child(5) { animation-delay: 0.5s; }

/* Hover эффекты для заголовков */
.animated-title:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Дополнительные эффекты */
.animated-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6f42c1, #dc3545);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.animated-title:hover::after {
    width: 80%;
}

/* Анимация для fade-in текста */
.fade-in-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   АНИМИРОВАННЫЕ ЭФФЕКТЫ
   ============================================ */

/* Частицы */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 6s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 5s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 8s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; animation-duration: 9s; }
.particle:nth-child(10) { left: 15%; animation-delay: 1.5s; animation-duration: 8s; }
.particle:nth-child(11) { left: 25%; animation-delay: 2.5s; animation-duration: 6s; }
.particle:nth-child(12) { left: 35%; animation-delay: 3.5s; animation-duration: 7s; }
.particle:nth-child(13) { left: 45%; animation-delay: 4.5s; animation-duration: 9s; }
.particle:nth-child(14) { left: 55%; animation-delay: 5.5s; animation-duration: 5s; }
.particle:nth-child(15) { left: 65%; animation-delay: 6.5s; animation-duration: 8s; }

@keyframes float {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20vh) scale(1);
        opacity: 0.8;
    }
}

/* Печатная машинка */
.typewriter-text {
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
    min-height: 1.2em;
}

.typewriter-text.typing::after {
    content: '|';
    color: #fff;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes typewriter {
    from { 
        width: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    to { 
        width: 100%;
        opacity: 1;
    }
}

@keyframes blink-cursor {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #fff; }
}

/* Fade in text */
.fade-in-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating badges */
.floating-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 3D Hover Effects */
.hover-3d {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Card Tilt Effect */
.card-tilt {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.card-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Parallax Images */
.parallax-img {
    transition: transform 0.3s ease;
}

.card-tilt:hover .parallax-img {
    transform: scale(1.05);
}

/* Morphing Icons */
.morphing-icon {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.morphing-icon:hover {
    transform: scale(1.2) rotate(10deg);
    color: #ffc107 !important;
}

/* Bounce Effects */
.cta-bounce {
    animation: ctaBounce 2s ease-in-out infinite;
}

@keyframes ctaBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.phone-bounce {
    animation: phoneBounce 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes phoneBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Animated Counters */
.counter-box h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.counter-box:hover h2 {
    transform: scale(1.1);
    color: #ffc107;
}

/* Parallax Sections */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Glow Effects */
.glow-effect {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
    transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.8);
}

/* Pulse Animation */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

