:root {
--graphite: #1a1a1a;
--dark-gray: #2a2a2a;
--medium-gray: #4a4a4a;
--light-gray: #e8e8e8;
--concrete: #f0f0f0;
--accent-gold: #B89A6E;
--accent-gold-dark: #9C8255;
--white: #ffffff;
--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
--transition: all 0.3s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: var(--white);
background-color: var(--graphite);
overflow-x: hidden;
line-height: 1.6;
width: 100%;
}
html {
width: 100%;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Manrope', sans-serif;
font-weight: 800;
line-height: 1.2;
}
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
/* Header & Navigation */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
padding: 15px 0;
transition: var(--transition);
}
header.scrolled {
background-color: rgba(26, 26, 26, 0.95);
box-shadow: var(--shadow-md);
padding: 10px 0;
}
.navbar {
padding: 0;
}
.navbar-brand {
display: flex;
align-items: center;
font-family: 'Manrope', sans-serif;
font-weight: 800;
font-size: 1.3rem;
color: var(--white) !important;
white-space: nowrap;
}
.navbar-brand span.accent {
color: var(--accent-gold);
}
.navbar-brand .logo-block {
display: inline-block;
width: 46px;
height: 46px;
background-image: url("/static/assets/logo.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
margin-right: 8px;
border-radius: 4px;
position: relative;
overflow: hidden;
flex-shrink: 0;
}
.navbar-nav .nav-link {
color: var(--white) !important;
font-weight: 500;
font-size: 1.05rem;
margin: 0 8px;
position: relative;
padding: 5px 0 !important;
transition: var(--transition);
white-space: nowrap;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
color: var(--accent-gold) !important;
}
.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent-gold);
transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
width: 100%;
}
.navbar-toggler {
border: none;
padding: 0;
margin-left: 15px;
}
.navbar-toggler-icon {
width: 24px;
height: 24px;
display: inline-block;
}
/* Hero Section */
.hero {
min-height: 100vh;
height: auto;
background: linear-gradient(rgba(26, 26, 26, 0.35), rgba(42, 42, 42, 0.45)), url('/static/assets/main.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
padding-bottom: 80px;
}
.hero::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 750px;
padding-top: 20px;
margin: 0 auto;
text-align: center;
}
.hero h1 {
font-size: 2.1rem;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
background: linear-gradient(to right, var(--white), var(--accent-gold));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
line-height: 1.1;
margin-bottom: 25px;
}
.hero p {
font-size: 1.35rem;
margin-bottom: 30px;
color: var(--light-gray);
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
.hero-btns {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 30px;
align-items: center;
}
.btn {
padding: 14px 32px;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
border: none;
box-shadow: var(--shadow-md);
width: 100%;
max-width: 300px;
}
.btn-primary {
background-color: var(--accent-gold);
color: var(--white);
}
.btn-primary:hover {
background-color: var(--accent-gold-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.btn-outline-light {
background-color: transparent;
color: var(--white);
border: 2px solid var(--white);
}
.btn-outline-light:hover {
background-color: var(--white);
color: var(--graphite);
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.hero-stats {
display: flex;
justify-content: space-around;
margin-top: 40px;
flex-wrap: wrap;
gap: 15px;
width: 100%;
}
.stat-item {
text-align: center;
min-width: 120px;
flex: 1;
max-width: 150px;
}
.stat-number {
font-size: 2.2rem;
font-weight: 800;
color: var(--accent-gold);
line-height: 1;
}
.stat-label {
font-size: 0.95rem;
color: var(--light-gray);
margin-top: 5px;
}
/* Section Styling */
section {
padding: 80px 0;
}
.section-title {
text-align: center;
margin-bottom: 60px;
padding: 0 15px;
}
.section-title h2 {
font-size: 2.5rem;
position: relative;
display: inline-block;
padding-bottom: 15px;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--accent-gold);
border-radius: 2px;
}
.section-title p {
color: var(--light-gray);
font-size: 1.15rem;
margin-top: 15px;
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
/* Service Header */
.service-header {
text-align: center;
margin-bottom: 50px;
padding: 0 15px;
}
.service-header h2 {
font-size: 2.8rem;
margin-bottom: 20px;
}
.service-header p {
font-size: 1.3rem;
max-width: 800px;
margin: 0 auto;
color: var(--light-gray);
}
/* Service Intro */
.service-intro {
background: rgba(50, 50, 50, 0.7);
border-radius: 16px;
padding: 30px;
margin-bottom: 40px;
}
.service-intro h3 {
font-size: 2rem;
margin-bottom: 20px;
text-align: center;
}
.service-intro p {
font-size: 1.15rem;
line-height: 1.8;
color: var(--light-gray);
max-width: 800px;
margin: 0 auto;
}
/* Service Features */
.service-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-bottom: 50px;
}
.service-feature {
background: rgba(42, 42, 42, 0.7);
border-radius: 12px;
padding: 25px;
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.service-feature:hover {
transform: translateY(-5px);
background: rgba(50, 50, 50, 0.9);
box-shadow: var(--shadow-md);
}
.service-feature h4 {
font-size: 1.6rem;
margin-bottom: 15px;
color: var(--accent-gold);
display: flex;
align-items: center;
}
.service-feature h4 svg {
margin-right: 10px;
width: 24px;
height: 24px;
color: var(--accent-gold);
}
.service-feature p {
color: var(--light-gray);
line-height: 1.7;
}
/* Service Details */
.service-details {
background-color: var(--dark-gray);
padding: 50px 0;
}
.service-details-container {
{#display: grid;#}
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
align-items: center;
}
.service-detail-card {
background: rgba(50, 50, 50, 0.7);
border-radius: 16px;
padding: 25px;
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.service-detail-card:hover {
transform: translateY(-5px);
background: rgba(60, 60, 60, 0.9);
box-shadow: var(--shadow-md);
}
.service-detail-card h4 {
font-size: 1.8rem;
margin-bottom: 15px;
color: var(--accent-gold);
}
.service-detail-card p {
color: var(--light-gray);
margin-bottom: 15px;
line-height: 1.6;
}
.service-detail-card ul {
padding-left: 20px;
margin-bottom: 20px;
}
.service-detail-card ul li {
margin-bottom: 10px;
color: var(--light-gray);
position: relative;
}
.service-detail-card ul li:before {
content: "✓";
color: var(--accent-gold);
position: absolute;
left: -20px;
font-weight: bold;
}
/* Адаптивная таблица */
.table-responsive-custom {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin-top: 20px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.table-responsive-custom::-webkit-scrollbar {
height: 8px;
}
.table-responsive-custom::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
}
.table-responsive-custom::-webkit-scrollbar-thumb {
background: var(--accent-gold);
border-radius: 4px;
}
.table-responsive-custom::-webkit-scrollbar-thumb:hover {
background: var(--accent-gold-dark);
}
.price-table {
width: 100%;
border-collapse: collapse;
background: rgba(30, 30, 30, 0.7);
min-width: 600px;
}
.price-table th {
background-color: var(--accent-gold);
color: var(--white);
padding: 14px 16px;
text-align: left;
font-weight: 600;
position: sticky;
top: 0;
z-index: 1;
}
.price-table td {
padding: 14px 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
color: var(--light-gray);
}
.price-table tr:last-child td {
border-bottom: none;
}
.price-table tr:nth-child(even) {
background-color: rgba(50, 50, 50, 0.5);
}
.price-table tr:hover {
background-color: rgba(60, 60, 60, 0.8);
}
.price-table .price {
color: var(--accent-gold);
font-weight: 700;
font-size: 1.1rem;
}
/* Мобильная версия таблицы (карточки) */
.table-mobile {
display: none;
}
.table-mobile-item {
background: rgba(50, 50, 50, 0.7);
border-radius: 12px;
padding: 20px;
margin-bottom: 15px;
border-left: 4px solid var(--accent-gold);
}
.table-mobile-item h5 {
color: var(--accent-gold);
font-size: 1.2rem;
margin-bottom: 10px;
}
.table-mobile-row {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.table-mobile-row:last-child {
border-bottom: none;
}
.table-mobile-row strong {
color: var(--white);
}
.table-mobile-row .price {
color: var(--accent-gold);
font-weight: 700;
}
/* Service Gallery */
.service-gallery {
background-color: var(--dark-gray);
padding: 50px 0;
}
.service-gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}
.service-gallery-item {
border-radius: 12px;
overflow: hidden;
position: relative;
height: 220px;
box-shadow: var(--shadow-md);
transition: var(--transition);
aspect-ratio: 16/9;
}
.service-gallery-item:hover {
transform: scale(1.03);
box-shadow: var(--shadow-lg);
}
.service-gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.service-gallery-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: var(--transition);
padding: 10px;
text-align: center;
}
.service-gallery-item:hover .service-gallery-overlay {
opacity: 1;
}
.service-gallery-overlay span {
font-size: 1.3rem;
font-weight: 600;
color: var(--white);
}
/* Delivery Section */
.delivery-section {
background-color: var(--graphite);
padding: 50px 0;
}
.delivery-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.delivery-card {
background: rgba(42, 42, 42, 0.7);
border-radius: 16px;
padding: 25px;
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.delivery-card h4 {
font-size: 1.6rem;
margin-bottom: 15px;
color: var(--accent-gold);
}
.delivery-card p {
color: var(--light-gray);
margin-bottom: 15px;
line-height: 1.6;
}
.delivery-conditions {
margin-top: 20px;
}
.delivery-condition {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.delivery-condition-icon {
width: 36px;
height: 36px;
background: linear-gradient(135deg, var(--accent-gold) 0%, #9C8255 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
flex-shrink: 0;
}
.delivery-condition-icon svg {
width: 20px;
height: 20px;
color: var(--white);
}
.delivery-condition-text {
color: var(--light-gray);
font-size: 1rem;
}
/* Calculator Section */
.calculator {
background: linear-gradient(135deg, var(--dark-gray) 0%, var(--graphite) 100%);
position: relative;
overflow: hidden;
padding-top: 70px;
padding-bottom: 70px;
}
.calculator::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(184, 154, 110, 0.08) 0%, transparent 70%);
z-index: 0;
}
.calculator-form {
background: rgba(35, 35, 35, 0.9);
border-radius: 20px;
padding: 35px 25px;
box-shadow: var(--shadow-lg);
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
border: 1px solid rgba(255, 255, 255, 0.08);
width: 100%;
}
.form-group {
margin-bottom: 20px;
}
.form-label {
display: block;
margin-bottom: 8px;
font-weight: 500;
font-size: 1rem;
}
.form-control {
background-color: rgba(50, 50, 50, 0.7);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--white) !important;
padding: 12px 15px;
border-radius: 12px;
font-size: 1rem;
transition: var(--transition);
width: 100%;
}
.form-control::placeholder {
color: rgba(255, 255, 255, 0.5) !important;
}
.form-control:focus {
background-color: rgba(60, 60, 60, 0.9);
border-color: var(--accent-gold);
box-shadow: 0 0 0 0.25rem rgba(184, 154, 110, 0.25);
outline: none;
color: var(--white) !important;
}
.form-select {
appearance: none;
color: var(--white) !important;
background-color: rgba(50, 50, 50, 0.7);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 12px 35px 12px 15px;
border-radius: 12px;
font-size: 1rem;
width: 100%;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23b89a6e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 12px center;
background-size: 14px 10px;
}
.form-select:focus {
background-color: rgba(60, 60, 60, 0.9);
border-color: var(--accent-gold);
box-shadow: 0 0 0 0.25rem rgba(184, 154, 110, 0.25);
color: var(--white) !important;
}
.form-select option {
color: var(--white) !important;
background-color: var(--graphite) !important;
padding: 8px 12px;
}
.form-select option:hover {
background-color: var(--accent-gold) !important;
color: var(--white) !important;
}
.form-select option:checked {
background-color: var(--accent-gold-dark) !important;
color: var(--white) !important;
}
.result-box {
background: rgba(50, 50, 50, 0.7);
border-radius: 16px;
padding: 20px 15px;
margin-top: 25px;
text-align: center;
border: 1px solid rgba(184, 154, 110, 0.3);
}
.result-title {
font-size: 1.3rem;
margin-bottom: 8px;
color: var(--light-gray);
}
.result-amount {
font-size: 2.2rem;
font-weight: 800;
color: var(--accent-gold);
margin: 8px 0;
}
.result-note {
color: var(--white);
opacity: 0.85;
font-size: 0.9rem;
margin-top: 10px;
font-weight: 300;
}
/* Contacts Section */
.contacts {
background-color: var(--graphite);
}
.contact-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
margin-top: 45px;
}
.contact-card {
background: rgba(42, 42, 42, 0.7);
border-radius: 16px;
padding: 30px 20px;
text-align: center;
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.08);
display: flex;
flex-direction: column;
align-items: center;
}
.contact-card:hover {
transform: translateY(-5px);
background: rgba(50, 50, 50, 0.9);
box-shadow: var(--shadow-md);
}
.contact-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--accent-gold) 0%, #9C8255 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 1.6rem;
font-weight: bold;
}
.contact-icon svg {
width: 32px;
height: 32px;
color: var(--white);
}
.contact-card h3 {
font-size: 1.6rem;
margin-bottom: 12px;
}
.contact-card p,
.contact-card a {
color: var(--light-gray);
font-size: 1rem;
text-decoration: none;
display: block;
margin: 6px 0;
transition: var(--transition);
line-height: 1.4;
}
.contact-card a:hover {
color: var(--accent-gold);
}
.map-container {
margin-top: 50px;
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-lg);
height: 300px;
background: linear-gradient(45deg, var(--dark-gray) 0%, var(--graphite) 100%);
position: relative;
width: 100%;
}
.map-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('/static/assets/map.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
.map-placeholder h3 {
font-size: 1.8rem;
margin-bottom: 12px;
}
.map-placeholder p {
color: var(--light-gray);
font-size: 1.1rem;
max-width: 550px;
margin-bottom: 20px;
}
/* Page Header */
.page-header {
min-height: 40vh;
background: linear-gradient(rgba(26, 26, 26, 0.35), rgba(42, 42, 42, 0.45)), url('/static/assets/services-3.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
padding-bottom: 80px;
}
.page-header::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
z-index: 1;
}
.page-header .container {
position: relative;
z-index: 2;
text-align: center;
}
.page-header h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}
.page-header p {
font-size: 1.2rem;
color: var(--light-gray);
max-width: 700px;
margin: 0 auto;
}
/* Footer */
footer {
background-color: var(--dark-gray);
padding: 60px 0 0;
position: relative;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.footer-col h3 {
font-size: 1.6rem;
margin-bottom: 25px;
position: relative;
padding-bottom: 12px;
}
.footer-col h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 35px;
height: 2.5px;
background: var(--accent-gold);
border-radius: 2px;
}
.footer-col p {
color: var(--light-gray);
opacity: 0.85;
margin: 15px 0;
font-size: 0.9rem;
line-height: 1.6;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
white-space: normal;
overflow-wrap: break-word;
word-wrap: break-word;
}
.footer-links {
list-style: none;
margin-top: 15px;
padding-left: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: var(--light-gray);
text-decoration: none;
transition: var(--transition);
font-size: 0.95rem;
display: block;
padding: 4px 0;
}
.footer-links a:hover {
color: var(--accent-gold);
transform: translateX(5px);
padding-left: 5px;
}
.footer-contact-item {
display: flex;
margin-bottom: 12px;
color: var(--light-gray);
opacity: 0.85;
font-size: 0.9rem;
align-items: flex-start;
}
.footer-contact-item i {
min-width: 22px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 3px;
}
.footer-contact-item svg {
width: 16px;
height: 16px;
color: var(--accent-gold);
}
.copyright {
text-align: center;
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.08);
color: var(--light-gray);
opacity: 0.7;
font-size: 0.85rem;
margin-top: 25px;
line-height: 1.5;
}
/* Services Section */
.services {
background-color: var(--graphite);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 25px;
margin-top: 45px;
}
.service-card {
background: rgba(42, 42, 42, 0.7);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.08);
display: flex;
flex-direction: column;
height: 100%;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.service-img {
height: 180px;
overflow: hidden;
min-height: 180px;
}
.service-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.service-card:hover .service-img img {
transform: scale(1.1);
}
.service-content {
padding: 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.service-content h3 {
font-size: 1.6rem;
margin-bottom: 12px;
}
.service-content p {
color: var(--light-gray);
margin-bottom: 15px;
flex-grow: 1;
}
.service-link {
color: var(--accent-gold);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
transition: var(--transition);
margin-top: auto;
width: fit-content;
}
.service-link:hover {
color: var(--white);
}
.service-link::after {
content: "→";
margin-left: 8px;
transition: var(--transition);
}
.service-link:hover::after {
margin-left: 15px;
}
/* Service advantages */
.service-advantages {
margin-top: 50px;
}
.service-advantages h3 {
font-size: 1.8rem;
margin-bottom: 25px;
text-align: center;
}
.service-advantages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.service-advantage {
background: rgba(42, 42, 42, 0.7);
border-radius: 12px;
padding: 25px;
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.08);
text-align: center;
}
.service-advantage:hover {
transform: translateY(-5px);
background: rgba(50, 50, 50, 0.9);
box-shadow: var(--shadow-md);
}
.service-advantage-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--accent-gold) 0%, #9C8255 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
.service-advantage-icon svg {
width: 35px;
height: 35px;
color: var(--white);
}
.service-advantage h4 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--white);
}
.service-advantage p {
color: var(--light-gray);
font-size: 1rem;
line-height: 1.6;
}
.service-call-to-action {
text-align: center;
margin-top: 50px;
}
.service-call-to-action h3 {
font-size: 2rem;
margin-bottom: 20px;
color: var(--white);
}
.service-call-to-action p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 30px;
color: var(--light-gray);
}
.service-call-to-action .btn {
padding: 16px 40px;
font-size: 1.2rem;
}
/* Responsive Design - Mobile First */
@media (max-width: 575px) {
/* Header */
.navbar-brand span {
display: none;
}
.navbar-brand .logo-block {
margin-right: 0;
}
.navbar-nav .nav-link {
font-size: 0.95rem;
margin: 0 5px;
padding: 8px 0 !important;
}
/* Hero */
.hero h1 {
font-size: 1.8rem;
}
.hero p {
font-size: 1.1rem;
}
.btn {
padding: 12px 25px;
font-size: 1rem;
}
.stat-number {
font-size: 1.8rem;
}
.stat-label {
font-size: 0.85rem;
}
/* Section Title */
.section-title h2 {
font-size: 2rem;
}
.section-title p {
font-size: 1rem;
}
/* Service Intro */
.service-intro {
padding: 20px;
}
.service-intro h3 {
font-size: 1.6rem;
}
.service-intro p {
font-size: 1rem;
}
/* Service Details */
.service-details {
padding: 30px 0;
}
.service-detail-card {
padding: 20px;
}
.service-detail-card h4 {
font-size: 1.5rem;
}
/* Показываем мобильную версию таблицы */
.table-responsive-custom {
display: none;
}
.table-mobile {
display: block;
}
/* Calculator */
.calculator-form {
padding: 25px 20px;
}
.form-label {
font-size: 0.95rem;
}
.result-amount {
font-size: 1.8rem;
}
.result-note {
font-size: 0.85rem;
}
/* Footer */
.footer-col {
margin-bottom: 25px;
}
.footer-col p {
font-size: 0.85rem;
}
.copyright {
font-size: 0.8rem;
padding: 15px 10px;
}
/* Page Header */
.page-header h1 {
font-size: 2rem;
}
.page-header p {
font-size: 1rem;
}
/* Services Grid */
.services-grid {
grid-template-columns: 1fr;
}
.service-img {
height: 150px;
min-height: 150px;
}
.service-content h3 {
font-size: 1.4rem;
}
.service-content p {
font-size: 0.95rem;
}
}
@media (min-width: 576px) and (max-width: 767px) {
/* Tablet Small */
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.25rem;
}
.stat-number {
font-size: 2rem;
}
.section-title h2 {
font-size: 2.2rem;
}
.service-img {
height: 160px;
min-height: 160px;
}
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.table-mobile {
display: none;
}
.table-responsive-custom {
display: block;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* Tablet */
.hero h1 {
font-size: 3.2rem;
}
.hero p {
font-size: 1.35rem;
}
.hero-btns {
flex-direction: row;
justify-content: center;
}
.btn {
max-width: none;
width: auto;
}
.stat-number {
font-size: 2.3rem;
}
.stat-label {
font-size: 0.95rem;
}
.section-title h2 {
font-size: 2.4rem;
}
.section-title p {
font-size: 1.15rem;
}
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.calculator-form {
padding: 35px 30px;
}
.result-amount {
font-size: 2rem;
}
.map-container {
height: 320px;
}
.table-mobile {
display: none;
}
.table-responsive-custom {
display: block;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* Desktop Small */
.hero h1 {
font-size: 3.8rem;
}
.hero p {
font-size: 1.45rem;
}
.stat-number {
font-size: 2.6rem;
}
.stat-label {
font-size: 1.05rem;
}
.section-title h2 {
font-size: 2.6rem;
}
.section-title p {
font-size: 1.2rem;
}
.services-grid {
grid-template-columns: repeat(3, 1fr);
}
.calculator-form {
padding: 40px;
}
.result-amount {
font-size: 2.3rem;
}
.map-container {
height: 380px;
}
.table-mobile {
display: none;
}
.table-responsive-custom {
display: block;
}
}
@media (min-width: 1200px) {
/* Desktop Large */
.container {
max-width: 1200px;
}
.hero-content {
text-align: left;
margin: 0;
}
.hero-btns {
justify-content: flex-start;
}
.hero-stats {
justify-content: space-between;
}
.services-grid {
grid-template-columns: repeat(3, 1fr);
}
.table-mobile {
display: none;
}
.table-responsive-custom {
display: block;
}
}
/* Touch devices optimization */
@media (hover: none) and (pointer: coarse) {
.service-card:hover,
.service-detail-card:hover,
.contact-card:hover {
transform: none;
}
.navbar-nav .nav-link::after {
display: none;
}
}