/* CSS Variables - УДАЛЯЕМ ВСЕ СИНИЕ ЦВЕТА */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e6a6bd; /* Розовый вместо синего */
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --success-color: #e6a6bd; /* Розовый вместо зеленого */
    --info-color: #e6a6bd; /* Розовый вместо синего */
    --whatsapp-color: #25D366; /* Зеленый цвет WhatsApp */
    --whatsapp-hover: #128C7E; /* Темно-зеленый для ховера */
    --service-color: #e6a6bd;
    --service-color-dark: #d48aa6;
    --service-color-darker: #c26d90;
    --button-color: #303845; /* Темно-серый для основных кнопок */
    --button-hover: #1f252f; /* Темнее для ховера */
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-dark: rgba(0,0,0,0.2);
    --transition-speed: 0.3s;
}

/* БАЗОВОЕ ПЕРЕОПРЕДЕЛЕНИЕ ВСЕХ СИНИХ ЦВЕТОВ */
* {
    color: inherit;
}

/* СИЛЬНОЕ ПЕРЕОПРЕДЕЛЕНИЕ ВСЕХ BOOTSTRAP ЦВЕТОВ */
:root {
    --bs-blue: #e6a6bd !important;
    --bs-indigo: #e6a6bd !important;
    --bs-purple: #e6a6bd !important;
    --bs-pink: #e6a6bd !important;
    --bs-red: #e74c3c !important;
    --bs-orange: #e6a6bd !important;
    --bs-yellow: #e6a6bd !important;
    --bs-green: #e6a6bd !important;
    --bs-teal: #e6a6bd !important;
    --bs-cyan: #e6a6bd !important;
    --bs-white: #fff !important;
    --bs-gray: #6c757d !important;
    --bs-gray-dark: #343a40 !important;
    --bs-primary: #e6a6bd !important;
    --bs-secondary: #6c757d !important;
    --bs-success: #e6a6bd !important;
    --bs-info: #e6a6bd !important;
    --bs-warning: #e6a6bd !important;
    --bs-danger: #e74c3c !important;
    --bs-light: #f8f9fa !important;
    --bs-dark: #212529 !important;
    --bs-primary-rgb: 230, 166, 189 !important;
    --bs-secondary-rgb: 108, 117, 125 !important;
    --bs-success-rgb: 230, 166, 189 !important;
    --bs-info-rgb: 230, 166, 189 !important;
    --bs-warning-rgb: 255, 193, 7 !important;
    --bs-danger-rgb: 231, 76, 60 !important;
    --bs-light-rgb: 248, 249, 250 !important;
    --bs-dark-rgb: 33, 37, 41 !important;
    --bs-white-rgb: 255, 255, 255 !important;
    --bs-black-rgb: 0, 0, 0 !important;
    --bs-body-color-rgb: 33, 37, 41 !important;
    --bs-body-bg-rgb: 255, 255, 255 !important;
}

/* ПЕРЕОПРЕДЕЛЕНИЕ ВСЕХ КЛАССОВ BOOTSTRAP */
.bg-primary,
.bg-success,
.bg-info {
    background-color: #e6a6bd !important;
}

.text-primary,
.text-success,
.text-info,
a.text-primary:hover,
a.text-success:hover,
a.text-info:hover {
    color: #e6a6bd !important;
}

.border-primary,
.border-success,
.border-info {
    border-color: #e6a6bd !important;
}

.btn-primary,
.btn-success,
.btn-info {
    background-color: #e6a6bd !important;
    border-color: #e6a6bd !important;
    color: white !important;
}

.btn-primary:hover,
.btn-success:hover,
.btn-info:hover {
    background-color: #d48aa6 !important;
    border-color: #d48aa6 !important;
    color: white !important;
}

.btn-outline-primary,
.btn-outline-success,
.btn-outline-info {
    color: #e6a6bd !important;
    border-color: #e6a6bd !important;
}

.btn-outline-primary:hover,
.btn-outline-success:hover,
.btn-outline-info:hover {
    background-color: #e6a6bd !important;
    border-color: #e6a6bd !important;
    color: white !important;
}

/* СТИЛЬ ДЛЯ WHATSAPP КНОПОК - 303845 */
.whatsapp-link,
.whatsapp-btn {
    background-color: #303845 !important;
    border-color: #303845 !important;
    color: white !important;
}

.whatsapp-link:hover,
.whatsapp-btn:hover {
    background-color: #1f252f !important;
    border-color: #1f252f !important;
    color: white !important;
}

.whatsapp-link i,
.whatsapp-btn i {
    color: white !important;
}

/* Исключение для зеленых иконок WhatsApp */
i.fa-whatsapp,
.fab.fa-whatsapp {
    color: white !important;
}

/* ВАЖНОЕ ДОПОЛНЕНИЕ: ВСЕ КНОПКИ НА САЙТЕ, включая в герое и всех секциях */
.hero .btn-primary,
.hero .btn-success,
.hero .btn-info,
.hero button[class*="btn"],
section .btn-primary,
section .btn-success,
section .btn-info,
section button[class*="btn"],
#home .btn-primary,
#about .btn-primary,
#stats .btn-primary,
#portfolio .btn-primary,
#services .btn-primary,
#contact .btn-primary,
.btn-application {
    background-color: #e6a6bd !important;
    border-color: #e6a6bd !important;
    color: white !important;
}

.hero .btn-primary:hover,
.hero .btn-success:hover,
.hero .btn-info:hover,
section .btn-primary:hover,
section .btn-success:hover,
section .btn-info:hover,
#home .btn-primary:hover,
#about .btn-primary:hover,
#stats .btn-primary:hover,
#portfolio .btn-primary:hover,
#services .btn-primary:hover,
#contact .btn-primary:hover,
.btn-application:hover {
    background-color: #d48aa6 !important;
    border-color: #d48aa6 !important;
    color: white !important;
}

/* Иконки в кнопках */
.hero .btn-primary i,
.hero .btn-success i,
.hero .btn-info i,
section .btn-primary i,
section .btn-success i,
section .btn-info i {
    color: white !important;
}

/* ФОРСИРОВАННОЕ УДАЛЕНИЕ ВСЕХ СИНИХ ЦВЕТОВ */
a,
a:hover,
a:focus,
a:active,
a.text-primary,
a.text-success,
a.text-info,
.nav-link,
.nav-link:hover,
.nav-link:focus,
.btn-link,
.btn-link:hover,
.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus,
.breadcrumb-item a,
.breadcrumb-item a:hover,
.pagination .page-link,
.pagination .page-link:hover,
.list-group-item-action,
.list-group-item-action:hover,
.alert-link,
.alert-link:hover,
.badge.bg-primary,
.badge.bg-success,
.badge.bg-info,
.progress-bar,
.progress-bar.bg-primary,
.progress-bar.bg-success,
.progress-bar.bg-info {
    color: #e6a6bd !important;
}

/* ОСОБЕННО ВАЖНО: ВСЕ ИКОНКИ */
i.fas,
i.fab,
i.far,
i.fal,
i.fa-check-circle,
i.fa-calendar-alt,
i.fa-ruler-combined,
i.fa-home,
i.fa-users,
i.fa-percentage,
i.fa-user-check,
i.fa-map-marker-alt,
i.fa-envelope,
i.fa-phone,
i.fa-clock,
i.fa-eye,
i.fa-pen,
i.fa-pencil-alt,
i.fa-phone-alt,
i.fa-arrow-left,
i.fa-arrow-right,
i.fa-paper-plane,
i.fa-images,
i.fa-image,
i[class*="fa-"] {
    color: #e6a6bd !important;
}

/* ИКОНКИ СОЦСЕТЕЙ - ДОЛЖНЫ БЫТЬ РОЗОВЫМИ НА БЕЛОМ ФОНЕ */
.contact-info-box .social-links i,
.contact-info-box .social-links a i,
.contact-info-box i.fab,
footer .social-links i,
footer .social-links a i,
footer i.fab {
    color: #e6a6bd !important;
}

/* Исключение для WhatsApp иконок */
i.fa-whatsapp,
.fab.fa-whatsapp {
    color: white !important;
}

/* ВСЕ ЦИФРЫ В СЕКЦИИ "ПОЧЕМУ МЫ" */
.stat-number,
#stats .stat-number,
.stats-section .stat-number,
[class*="stat-"] .stat-number {
    color: #e6a6bd !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}

/* ВСЕ ЗАГОЛОВКИ СЕКЦИЙ */
.section-title h2,
h2[style*="color"] {
    color: #e6a6bd !important;
}

/* ГРАДИЕНТЫ И ФОНЫ */
.hero-quote {
    border-left-color: #e6a6bd !important;
}

.contact-section {
    background: linear-gradient(135deg, var(--primary-color), #e6a6bd) !important;
}

.stats-section::before,
footer::before {
    background: linear-gradient(90deg, #e6a6bd, var(--accent-color)) !important;
}

.about-content h3::after {
    background: linear-gradient(90deg, #e6a6bd, var(--accent-color)) !important;
}

/* КНОПКИ В МОДАЛЬНЫХ ОКНАХ */
.modal .btn-primary,
.modal .btn-success,
#applicationModal .btn-primary,
#projectModal .btn-primary {
    background-color: #e6a6bd !important;
    border-color: #e6a6bd !important;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-optimized {
    -webkit-tap-highlight-color: transparent;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; color: #e6a6bd !important; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; color: #e6a6bd !important; }
h5 { font-size: 1.1rem; }

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 60px 0;
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 15px;
    color: #e6a6bd !important;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Container & Grid */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -10px;
    margin-right: -10px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, 
.col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, 
.col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, 
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, 
.col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, 
.col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, 
.col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, 
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, 
.col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, 
.col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-left: 10px;
    padding-right: 10px;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px var(--shadow-light);
    padding: 15px 0;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.navbar-brand span {
    color: #e6a6bd !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    transition: color var(--transition-speed);
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    color: #e6a6bd !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 62, 80, 0.5)),
                url('../images/interior-hero-v2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 36px 0 0;
    text-align: center;
    min-height: 0 !important;
    height: auto !important;
    display: block;
    position: relative;
}

.hero h1 {
    color: white;
    margin-bottom: 10px;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.hero-quote {
    font-style: italic;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 12px auto;
    padding: 10px 15px;
    border-left: 4px solid #e6a6bd !important;
    background: rgba(44, 62, 80, 0.6);
    line-height: 1.8;
    border-radius: 0 10px 10px 0;
}

/* WHATSAPP КНОПКИ В ГЕРОЕ */
.hero .whatsapp-link,
.hero a.whatsapp-link {
    background-color: #303845 !important;
    border-color: #303845 !important;
    color: white !important;
}

.hero .whatsapp-link:hover,
.hero a.whatsapp-link:hover {
    background-color: #1f252f !important;
    border-color: #1f252f !important;
    color: white !important;
}

.hero .whatsapp-link i,
.hero a.whatsapp-link i {
    color: white !important;
}

/* КНОПКИ В ГЕРОЕ - ФИНАЛЬНОЕ ИСПРАВЛЕНИЕ */
.hero .btn-primary,
.hero .btn-success,
.hero .btn-info,
.hero .btn-application,
.hero button[data-bs-toggle="modal"] {
    background-color: #e6a6bd !important;
    border-color: #e6a6bd !important;
    color: white !important;
    background-image: none !important;
    background-position: 0% 0% !important;
    background-size: auto !important;
    background-repeat: repeat !important;
    background-origin: padding-box !important;
    background-clip: border-box !important;
    background-attachment: scroll !important;
}

.hero .btn-primary:hover,
.hero .btn-success:hover,
.hero .btn-info:hover,
.hero .btn-application:hover,
.hero button[data-bs-toggle="modal"]:hover {
    background-color: #d48aa6 !important;
    border-color: #d48aa6 !important;
    color: white !important;
}

.hero .btn-primary i,
.hero .btn-success i,
.hero .btn-info i,
.hero .btn-application i,
.hero button[data-bs-toggle="modal"] i {
    color: white !important;
}

/* About Section */
.about-content-wrapper {
    display: flex;
    align-items: center;
}

.about-image {
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: transform var(--transition-speed);
}

.about-image:hover {
    transform: scale(1.02);
}


#about {
    padding: 0 0 50px !important;
    margin-top: 0 !important;
}

#about .container,
#about .row,
#about .about-content,
#about .about-image {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#about .about-content h3 {
    margin-top: 0 !important;
}

/* Stats Section */
.stats-section {
    margin-top: 72px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e6a6bd, var(--accent-color)) !important;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-icon i {
    color: #e6a6bd !important;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e6a6bd !important;
    margin-bottom: 10px;
    line-height: 1;
}

/* Portfolio */
.portfolio-filter {
    text-align: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: none;
    border: 2px solid #e6a6bd !important;
    color: #e6a6bd !important;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all var(--transition-speed);
    font-size: 0.9rem;
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: #e6a6bd !important;
    color: white !important;
    transform: translateY(-2px);
}

.project-card {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all var(--transition-speed);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.project-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
    background: white;
}

.project-type {
    display: inline-block;
    padding: 3px 10px;
    background: var(--light-color);
    color: #e6a6bd !important;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Стили для пакетов услуг */
.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Эффект приближения при наведении */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.price-tag {
    background: #e6a6bd !important;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(230, 166, 189, 0.3);
}

.price-tag.premium {
    background: linear-gradient(135deg, #e6a6bd, #d48aa6) !important;
    box-shadow: 0 4px 12px rgba(230, 166, 189, 0.4);
}

.price-tag.lux {
    background: linear-gradient(135deg, #e6a6bd, #c26d90) !important;
    box-shadow: 0 4px 12px rgba(230, 166, 189, 0.5);
}

.service-card h4 {
    margin-bottom: 10px;
    font-weight: 800;
    color: #e6a6bd !important;
    font-size: 1.3rem;
    text-shadow: none;
}

.package-subtitle {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Стили для списка фич */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.service-features::-webkit-scrollbar {
    display: none;
}

.service-features {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.service-features li {
    padding: 5px 0 5px 18px;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 0.85rem;
    position: relative;
    color: #333;
    line-height: 1.3;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "•";
    color: #e6a6bd;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 4px;
}

.premium-package .service-features li:before {
    color: #d48aa6;
}

.lux-package .service-features li:before {
    color: #c26d90;
}

.feature-special {
    position: relative;
    padding-left: 22px;
}

.feature-special:before {
    content: "*";
    color: #e6a6bd;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    left: 4px;
    top: 3px;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(230, 166, 189, 0.1), rgba(212, 138, 166, 0.1));
    padding: 8px 12px 8px 30px;
    border-radius: 6px;
    margin: 8px -12px;
    border-left: 3px solid #e6a6bd;
    font-weight: 600;
    position: relative;
    line-height: 1.3;
}

.feature-highlight:before {
    content: "•••";
    color: #e6a6bd;
    position: absolute;
    left: 8px;
    top: 6px;
    font-size: 0.8rem;
    font-weight: bold;
}

.lux-package .feature-highlight {
    background: linear-gradient(135deg, rgba(230, 166, 189, 0.15), rgba(194, 109, 144, 0.15));
    border-left: 3px solid #c26d90;
}

.lux-package .feature-highlight:before {
    color: #c26d90;
}

/* Описание пакета с левой полосой */
.package-description {
    background: #f8f9fa;
    padding: 12px 12px 12px 20px;
    border-radius: 8px;
    margin-top: 12px;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
}

/* Левая полоса для всех пакетов */
.package-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e6a6bd;
    border-radius: 2px 0 0 2px;
}

/* Цвет полосы для премиум и люкс пакетов */
.premium-package .package-description::before {
    background: #d48aa6;
}

.lux-package .package-description::before {
    background: #c26d90;
}

.package-description p {
    margin: 0;
}

/* Кнопки */
.btn {
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all var(--transition-speed);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: var(--button-color);
    border-color: var(--button-color);
    color: white;
}

.btn:hover {
    background: var(--button-hover);
    border-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 56, 69, 0.3);
    color: white;
}

/* КНОПКИ С РОЗОВЫМ ЦВЕТОМ - ФИНАЛЬНАЯ ВЕРСИЯ */
.btn-primary,
.btn-success,
.btn-info,
.btn-application,
[class*="btn-"][data-bs-toggle="modal"],
.navbar .btn-primary,
.navbar .btn-application,
section .btn-primary,
section .btn-success,
section .btn-info,
.hero .btn-primary,
.hero .btn-success,
.hero .btn-info,
#home .btn-primary,
#about .btn-primary,
#stats .btn-primary,
#portfolio .btn-primary,
#services .btn-primary,
#contact .btn-primary {
    background-color: #e6a6bd !important;
    border-color: #e6a6bd !important;
    color: white !important;
}

.btn-primary:hover,
.btn-success:hover,
.btn-info:hover,
.btn-application:hover,
[class*="btn-"][data-bs-toggle="modal"]:hover,
.navbar .btn-primary:hover,
.navbar .btn-application:hover,
section .btn-primary:hover,
section .btn-success:hover,
section .btn-info:hover,
.hero .btn-primary:hover,
.hero .btn-success:hover,
.hero .btn-info:hover,
#home .btn-primary:hover,
#about .btn-primary:hover,
#stats .btn-primary:hover,
#portfolio .btn-primary:hover,
#services .btn-primary:hover,
#contact .btn-primary:hover {
    background-color: #d48aa6 !important;
    border-color: #d48aa6 !important;
    color: white !important;
}

/* Иконки в кнопках */
.btn-primary i,
.btn-success i,
.btn-info i,
.btn-application i,
[class*="btn-"][data-bs-toggle="modal"] i,
.navbar .btn-primary i,
.navbar .btn-application i,
section .btn-primary i,
section .btn-success i,
section .btn-info i,
.hero .btn-primary i,
.hero .btn-success i,
.hero .btn-info i,
#home .btn-primary i,
#about .btn-primary i,
#stats .btn-primary i,
#portfolio .btn-primary i,
#services .btn-primary i,
#contact .btn-primary i {
    color: white !important;
}

/* Contacts */
#contact.contact-section {
    padding-top: 24px;
    padding-bottom: 24px;
}

#contact .section-title {
    margin-bottom: 14px;
}

#contact .section-title h2 {
    margin-bottom: 6px;
}

#contact .row > .col-lg-6.text-center > h4 {
    margin-bottom: 8px !important;
}

#contact .row > .col-lg-6.text-center > .whatsapp-btn {
    margin-bottom: 10px !important;
}

#contact .row > .col-lg-6.text-center > .mt-4 {
    margin-top: 10px !important;
}

#contact .row > .col-lg-6.text-center > .mt-4 h5 {
    margin-bottom: 8px !important;
}

#contact .contact-info-box > p {
    margin-bottom: 10px !important;
}

#contact .contact-phone-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

#contact .contact-phone-link:hover,
#contact .contact-phone-link:focus {
    color: #d48aa6;
    text-decoration: underline;
}

#contact .contact-info-box > .mt-4 {
    margin-top: 14px !important;
}

#contact .contact-info-box h5 {
    margin-bottom: 10px !important;
}

#contact .contact-info-box {
    width: 340px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 18px !important;
}

@media (max-width: 576px) {
    #contact.contact-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #contact .section-title {
        margin-bottom: 12px;
    }

    #contact .contact-info-box .social-links {
        justify-content: flex-start;
    }
}

.contact-section::before {
    display: block !important;
}

.contact-section {
    background: linear-gradient(135deg, var(--primary-color), #e6a6bd) !important;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e6a6bd, var(--accent-color)) !important;
}

.contact-info-box {
    background: white !important;
    padding: 25px !important;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: transform var(--transition-speed);
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box p strong {
    color: var(--primary-color);
}

.contact-info-box i {
    color: #e6a6bd !important;
}

/* ИКОНКИ СОЦСЕТЕЙ В КОНТАКТНОЙ ИНФОРМАЦИИ */
.contact-info-box .social-links a i,
.contact-info-box i.fab,
.contact-info-box i.fas {
    color: #e6a6bd !important;
}

.contact-info-box .social-links a:hover i {
    color: #d48aa6 !important;
}

/* WHATSAPP КНОПКИ В КОНТАКТАХ */
.contact-section .whatsapp-btn {
    background-color: #303845 !important;
    border-color: #303845 !important;
    color: white !important;
}

.contact-section .whatsapp-btn:hover {
    background-color: #1f252f !important;
    border-color: #1f252f !important;
    color: white !important;
}

.contact-section .whatsapp-btn i {
    color: white !important;
}

.whatsapp-btn {
    background: #303845 !important;
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all var(--transition-speed);
    width: 100%;
    max-width: 300px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #1f252f !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(48, 56, 69, 0.3);
}

.whatsapp-btn i {
    color: white !important;
}

/* Forms */
.form-control {
    font-size: 16px;
    padding: 12px 15px;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.form-control:focus {
    border-color: #e6a6bd !important;
    box-shadow: 0 0 0 0.25rem rgba(230, 166, 189, 0.25) !important;
}

.input-group .btn {
    padding: 12px 20px;
    border-radius: 8px;
    background: #e6a6bd !important;
    border: none;
}

.input-group .btn:hover {
    background: #d48aa6 !important;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 24px 0 12px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e6a6bd, var(--accent-color)) !important;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition-speed);
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #e6a6bd !important;
    transform: translateY(-3px);
    background: rgba(255,255,255,0.2);
}

/* ИКОНКИ СОЦСЕТЕЙ В ФУТЕРЕ - ДОЛЖНЫ БЫТЬ БЕЛЫМИ НА ТЕМНОМ ФОНЕ */
footer .social-links a i,
footer i.fab,
footer i.fas {
    color: white !important;
}

footer .social-links a:hover i {
    color: #e6a6bd !important;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

/* Lists */
.list-unstyled li {
    margin-bottom: 8px;
    padding-left: 5px;
    display: flex;
    align-items: flex-start;
}

.list-unstyled li i {
    margin-top: 3px;
    color: #e6a6bd !important;
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.will-change {
    will-change: transform;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
}

.alert-info {
    background: rgba(230, 166, 189, 0.1);
    color: #8a5d6b;
    border-left: 4px solid #e6a6bd;
}

/* Transitions */
* {
    -webkit-transition: all var(--transition-speed) ease;
    -moz-transition: all var(--transition-speed) ease;
    -ms-transition: all var(--transition-speed) ease;
    -o-transition: all var(--transition-speed) ease;
    transition: all var(--transition-speed) ease;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Стили для портретного изображения в секции "О студии" */
.portrait-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

@media (min-width: 992px) {
    .portrait-image {
        max-width: 450px;
        max-height: 700px;
    }
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e6a6bd, var(--accent-color)) !important;
    border-radius: 2px;
}

.about-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.about-content h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-content h4 i {
    color: #e6a6bd !important;
}

.about-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px var(--shadow-medium);
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .nav-link {
        padding: 10px 15px;
        border-radius: 5px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-link:hover {
        background-color: var(--light-color);
    }
}

/* Desktop Optimizations */
@media (min-width: 992px) {
    .about-image {
        max-width: 450px;
        margin-right: 30px;
        margin-left: 0;
    }
    
    .navbar-collapse {
        background-color: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 65px 0 0;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .hero-quote {
        font-size: 1rem;
        margin: 20px auto;
        padding: 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .project-img {
        height: 180px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    footer {
        padding: 30px 0 15px;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0 auto 20px;
    }
    
    .about-content-wrapper {
        flex-direction: column;
    }
    
    /* Адаптивность для услуг */
    .price-tag {
        font-size: 1.1rem;
        padding: 6px 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    #stats.stats-section {
        margin-top: 32px;
        padding-top: 30px;
        padding-bottom: 18px;
    }

    #stats .row > [class*="col-"] {
        width: 50%;
        margin-bottom: 12px !important;
    }

    #stats .stat-item {
        padding: 10px 4px;
    }

    #stats .stat-icon {
        margin-bottom: 8px;
        font-size: 1.5rem;
    }

    #stats .stat-number {
        font-size: 1.75rem !important;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    #stats .stat-item p {
        font-size: 0.85rem;
        line-height: 1.35;
    }

    .about-image.portrait-image {
        aspect-ratio: 1 / 1 !important;
        width: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .about-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-actions .btn {
        margin-left: 0 !important;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .filter-btn {
        width: 80%;
        max-width: 200px;
    }
    
    .project-card {
        margin-bottom: 20px;
    }
    
    .contact-info-box {
        padding: 20px !important;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group .form-control {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .input-group .btn {
        border-radius: 5px;
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero .lead {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Navigation Open State */
html.navbar-open {
    overflow: hidden;
}

/* ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ ДЛЯ УДАЛЕНИЯ СИНИХ ЦВЕТОВ */

/* Удаляем все синие градиенты */
.contact-section::before {
    background: linear-gradient(90deg, #e6a6bd, var(--accent-color)) !important;
}

/* Удаляем синие тени */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(230, 166, 189, 0.25) !important;
}

/* Удаляем синие ссылки в навигации */
.nav-link.active {
    color: #e6a6bd !important;
}

/* Удаляем синие элементы в формах */
.input-group .btn:hover {
    background: #d48aa6 !important;
}

/* Удаляем синие элементы в футере */
footer a {
    color: rgba(230, 166, 189, 0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e6a6bd !important;
}

/* Финальное переопределение - все синее должно стать розовым */
[style*="blue"],
[style*="Blue"],
[style*="BLUE"],
[class*="blue"],
[class*="Blue"],
[class*="BLUE"],
[href*="blue"],
[href*="Blue"],
[href*="BLUE"],
*[style*="color: blue"],
*[style*="color: Blue"],
*[style*="color: BLUE"],
*[style*="color:#007bff"],
*[style*="color:#0d6efd"],
*[style*="color:#0dcaf0"],
*[style*="color:#198754"],
*[style*="color:#20c997"] {
    color: #e6a6bd !important;
    background-color: transparent !important;
    border-color: #e6a6bd !important;
}

/* УБЕДИТЕЛЬНОЕ ИСПРАВЛЕНИЕ ДЛЯ КНОПКИ В ГЕРОЕ */
#home .btn-primary,
.hero .btn-primary,
.hero button.btn-primary {
    background: #e6a6bd !important;
    background-color: #e6a6bd !important;
    border: 1px solid #e6a6bd !important;
    border-color: #e6a6bd !important;
    color: white !important;
}

#home .btn-primary:hover,
.hero .btn-primary:hover,
.hero button.btn-primary:hover {
    background: #d48aa6 !important;
    background-color: #d48aa6 !important;
    border: 1px solid #d48aa6 !important;
    border-color: #d48aa6 !important;
    color: white !important;
}

#home .btn-primary i,
.hero .btn-primary i,
.hero button.btn-primary i {
    color: white !important;
}

/* ИСПРАВЛЕНИЕ ДЛЯ ИКОНОК СОЦСЕТЕЙ - РАЗДЕЛЬНЫЕ НАСТРОЙКИ ДЛЯ РАЗНЫХ СЕКЦИЙ */

/* В контактах (белый фон) - розовые иконки */
.contact-info-box .social-links a i {
    color: #e6a6bd !important;
}

.contact-info-box .social-links a:hover i {
    color: #d48aa6 !important;
}

/* В футере (темный фон) - белые иконки */
footer .social-links a i {
    color: white !important;
}

footer .social-links a:hover i {
    color: #e6a6bd !important;
}

/* ФИНАЛЬНОЕ ИСПРАВЛЕНИЕ ДЛЯ WHATSAPP КНОПОК - 303845 */
.whatsapp-link,
.whatsapp-btn,
.hero .whatsapp-link,
.hero a.whatsapp-link,
.contact-section .whatsapp-btn,
#home .whatsapp-link,
a.whatsapp-link {
    background-color: #303845 !important;
    border-color: #303845 !important;
    color: white !important;
}

.whatsapp-link:hover,
.whatsapp-btn:hover,
.hero .whatsapp-link:hover,
.hero a.whatsapp-link:hover,
.contact-section .whatsapp-btn:hover,
#home .whatsapp-link:hover,
a.whatsapp-link:hover {
    background-color: #1f252f !important;
    border-color: #1f252f !important;
    color: white !important;
}

.whatsapp-link i,
.whatsapp-btn i,
.hero .whatsapp-link i,
.hero a.whatsapp-link i,
.contact-section .whatsapp-btn i,
#home .whatsapp-link i,
a.whatsapp-link i {
    color: white !important;
}

/* Исключение для иконок WhatsApp */
i.fa-whatsapp,
.fab.fa-whatsapp,
.whatsapp-link i.fa-whatsapp,
.whatsapp-btn i.fa-whatsapp {
    color: white !important;
}

/* Final spacing override for compact hero-to-about transition */
#home.hero {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 36px !important;
    padding-bottom: 0 !important;
    display: block !important;
}

#home.hero > .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

#home.hero + #about {
    margin-top: 0 !important;
    padding-top: 48px !important;
}

@media (max-width: 576px) {
    #home.hero + #about {
        padding-top: 32px !important;
    }
}

#home.hero .mt-4 {
    margin-top: 12px !important;
}

/* Workflow Section */
.workflow-section {
    padding: 60px 0;
}

.workflow-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Same visual treatment as the cards in “Наши ценности”. */
.workflow-card-accent {
    background: rgba(230, 166, 189, 0.05);
    border: 0;
    border-left: 4px solid #e6a6bd;
    border-radius: 0.25rem;
    box-shadow: none;
}

.workflow-card-accent:hover {
    transform: none;
    box-shadow: none;
}

.workflow-card-accent h4 {
    color: #333 !important;
    font-weight: 600;
}

.workflow-card h4 {
    margin-bottom: 20px;
    font-weight: 800;
    color: #e6a6bd !important;
    font-size: 1.3rem;
    text-shadow: none;
    text-align: left;
}

.workflow-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.workflow-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.workflow-checklist li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
}

.workflow-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #e6a6bd;
    font-weight: 800;
}

.workflow-step {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.workflow-step:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.workflow-step h5 {
    color: #333;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.workflow-step p {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .workflow-section {
        padding: 40px 0;
    }

    .workflow-card {
        padding: 20px;
    }
}

.workflow-card-wide {
    margin-top: 8px;
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.workflow-steps-grid .workflow-step {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .workflow-steps-grid {
        grid-template-columns: 1fr;
    }
}
