/* ==========================================
   NIKA APPLIANCE REPAIR - MAIN STYLESHEET
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-blue: #2196F3;
    --primary-yellow: #FFD600;
    
    /* Supporting Colors */
    --bright-green: #4CAF50;
    --hot-pink: #E91E63;
    --orange: #FF6B35;
    --purple: #7B1FA2;
    --cyan: #00BCD4;
    
    /* Neutrals */
    --dark: #1A237E;
    --gray-900: #212121;
    --gray-700: #616161;
    --gray-500: #9E9E9E;
    --gray-300: #E0E0E0;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    
    /* Standardized Background Colors - USE ONLY THESE FOR BACKGROUNDS */
    --bg-white: #FFFFFF;                    /* White sections */
    --bg-light-gray: #F8F9FA;               /* Light gray alternating sections */
    --bg-blue-gradient: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #1565C0 100%); /* Blue gradient */
    --bg-dark-blue: linear-gradient(135deg, #1A237E 0%, #3949AB 100%); /* Dark blue gradient */
    
    /* Fonts */
    --font-heading: 'Fredoka', cursive;
    --font-body: 'Rubik', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem;
    --element-padding: 2rem;
}

/* Background Color Classes - Use these for consistent styling */
.bg-white {
    background: var(--bg-white) !important;
}

.bg-light-gray {
    background: var(--bg-light-gray) !important;
}

.bg-blue-gradient {
    background: var(--bg-blue-gradient) !important;
    color: var(--white) !important;
}

.bg-dark-blue {
    background: var(--bg-dark-blue) !important;
    color: var(--white) !important;
}

/* Section Background Pattern */
/* Use this pattern for section backgrounds:
   1. Header/Hero: bg-blue-gradient or bg-white
   2. Section 1: bg-white
   3. Section 2: bg-light-gray
   4. Section 3: bg-white
   5. Section 4: bg-light-gray
   6. CTA sections: bg-blue-gradient or bg-dark-blue
   7. Footer: bg-dark-blue
*/

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px; /* Increased from 16px - better for all users */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.7; /* Increased from 1.6 for better readability */
    background-color: var(--white);
    font-size: 1rem; /* 18px base */
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem; /* 63px - increased for better visibility */
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 {
    font-size: 2.5rem; /* 45px - increased */
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h3 {
    font-size: 2rem; /* 36px - increased */
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h4 {
    font-size: 1.5rem; /* 27px - increased */
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem; /* 18px for body text */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
/* PRIMARY = Booking buttons (Green) */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #27AE60;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem; /* 22.5px - increased from 1.1rem */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 56px; /* Increased from 48px */
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.45);
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
}

/* SECONDARY = Call buttons (Purple) */
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #7c3aed;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem; /* 22.5px - increased */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 56px; /* Increased */
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
}
/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Text Logo Styles */
.logo-text {
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-primary {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.logo-secondary {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-700);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-blue);
}
/* Header CTA buttons removed - no longer used in header */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--primary-blue);
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: var(--section-padding) 0;
    overflow: hidden;
    min-height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(45deg);
    z-index: 0;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    animation: float 20s infinite ease-in-out;
    opacity: 0.3;
    color: var(--white);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(45deg); }
    50% { transform: translate(-30px, -50px) rotate(90deg); }
    75% { transform: translate(-50px, 30px) rotate(135deg); }
}

.icon-1 { top: 5%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 10%; right: 5%; animation-delay: 3s; }
.icon-3 { bottom: 10%; left: 5%; animation-delay: 6s; }
.icon-4 { bottom: 5%; right: 5%; animation-delay: 9s; }
.icon-5 { top: 50%; left: 2%; animation-delay: 12s; }
.icon-6 { top: 60%; right: 2%; animation-delay: 15s; }

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Равные колонки для текста и изображения */
    gap: 2rem; /* Уменьшен gap */
    align-items: center;
}

.hero-title {
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem); /* Уменьшен размер шрифта */
    font-weight: 700; /* Более жирный */
    margin-bottom: 1.5rem;
    line-height: 1.1; /* Уменьшен межстрочный интервал */
    max-width: 800px; /* Ограничена ширина для компактности */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.highlight-yellow {
    color: var(--primary-yellow);
}

.highlight-green {
    color: var(--bright-green);
}

.hero-title .highlight-yellow {
    color: #FFD600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Уменьшаем размер br на мобильных */
@media (max-width: 768px) {
    .hero-title br {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem; /* Уменьшен размер для мобильных */
        line-height: 1.2;
    }
}

.wow-text {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Уменьшен размер WOW */
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-yellow) !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    display: inline-block; /* Изменено с block на inline-block */
    animation: pulse 2s infinite;
    line-height: 0.9; /* Компактнее */
    margin-top: 0.5rem;
}

.hero-title .wow-text {
    color: #FFD600 !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-trust-text {
    color: var(--primary-yellow);
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%; /* FIXED: was 120% causing overflow */
    height: auto;
    position: relative;
    z-index: 3;
    max-width: 550px; /* Reasonable size */
}

/* Remove gradient overlay - try different approach */
/* Countdown Section */
.countdown-section {
    background: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.countdown-title {
    color: var(--dark);
    margin-bottom: 1rem;
}

.countdown-label {
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timer-box {
    background: #DC2626;
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    min-width: 120px;
}
.timer-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.countdown-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: #27AE60;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.5);
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
}
/* Services Section */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.section-title {
    text-align: center;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196F3, #E91E63, #FF6B35, #7B1FA2, #00BCD4);
    background-size: 300% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}
.service-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

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

.service-card:hover .service-icon svg {
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

/* Specific icon animations */
.service-card:nth-child(1):hover .service-icon svg rect:nth-child(3) {
    animation: fridgeDoor 0.5s ease;
}

@keyframes fridgeDoor {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.service-card:nth-child(2):hover .service-icon svg path[fill="#81D4FA"] {
    animation: waterDrop 1s ease infinite;
}

@keyframes waterDrop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.service-card:nth-child(3):hover .service-icon svg circle[cx="50"] {
    animation: drumSpin 2s linear infinite;
    transform-origin: center;
}

@keyframes drumSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card:nth-child(4):hover .service-icon svg path[fill="#FF6F00"] {
    animation: flameFlicker 0.5s ease infinite alternate;
}

@keyframes flameFlicker {
    0% { transform: scaleY(1); opacity: 0.8; }
    100% { transform: scaleY(1.2); opacity: 1; }
}

.service-card:nth-child(5):hover .service-icon svg rect[fill="#FED7AA"] {
    animation: ovenGlow 1s ease infinite alternate;
}

@keyframes ovenGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.9; }
}

.service-card:nth-child(6):hover .service-icon svg circle[fill*="#81D4FA"],
.service-card:nth-child(6):hover .service-icon svg circle[fill*="#B3E5FC"],
.service-card:nth-child(6):hover .service-icon svg circle[fill*="#4FC3F7"] {
    animation: bubbleFloat 2s ease infinite;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    25% { transform: translate(2px, -2px); }
    50% { transform: translateY(-4px); }
    75% { transform: translate(-2px, -2px); }
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-700);
    line-height: 1.8;
}

.services-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--primary-blue);
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #1565C0 100%);
    padding: var(--section-padding) 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Override gradient for headings on blue background */
.why-choose-section h2,
.why-choose-section h3,
.why-choose-section h4 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: var(--white) !important;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title-light {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.benefit-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    opacity: 0.9;
    line-height: 1.8;
}

.why-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: var(--section-padding) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.video-wrapper img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--bright-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
}

.about-text h3 {
    color: var(--gray-700);
    margin-bottom: 1rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-top: 0.5rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: #27AE60;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.25);
}

/* Brands Section */
.brands-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    height: 80px;
    transition: all 0.3s ease;
}
.brand-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-logo img {
    max-width: 120px;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Brand Name Text Style */
.brand-name {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.brand-logo:hover .brand-name {
    color: var(--primary-blue);
    transform: scale(1.05);
}

.brands-more {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gray-700);
}

.highlight-orange {
    color: var(--orange);
    font-weight: 700;
}

/* Brand Logos Section */
.brand-logos-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.logos-title {
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 3rem;
    font-size: 1.5rem;
}

.brand-logos-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-weight: 800;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    cursor: default;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Individual brand styles */
.logo-whirlpool {
    font-family: Arial, sans-serif;
    color: #FDB813;
    font-style: italic;
}

.logo-viking {
    font-family: 'Arial Black', sans-serif;
    color: #0066CC;
    letter-spacing: 2px;
}

.logo-samsung {
    font-family: Arial, sans-serif;
    color: #1428A0;
    letter-spacing: 3px;
}

.logo-ge {
    font-family: 'Georgia', serif;
    color: #00A0E3;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-frigidaire {
    font-family: Arial, sans-serif;
    color: #E31E24;
    font-weight: 700;
}

.logo-fisher {
    font-family: Arial, sans-serif;
    color: #00539B;
    font-size: 0.9rem;
}

.logo-maytag {
    font-family: 'Arial Black', sans-serif;
    background: #003DA5;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

.logo-lg {
    font-family: Arial, sans-serif;
    background: #F80046;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto;
}

.logo-kitchenaid {
    font-family: Georgia, serif;
    color: #E4002B;
    font-style: italic;
}

.logo-electrolux {
    font-family: Arial, sans-serif;
    color: #005EB8;
    font-weight: 300;
    letter-spacing: 1px;
}

.logo-dacor {
    font-family: Arial, sans-serif;
    color: #000;
    font-weight: 300;
    letter-spacing: 3px;
}

.logo-bosch {
    font-family: Arial, sans-serif;
    color: #E20015;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-kenmore {
    font-family: Arial, sans-serif;
    color: #003B7C;
    font-weight: 700;
}

.logo-jennair {
    font-family: Arial, sans-serif;
    color: #000;
    letter-spacing: 2px;
    font-weight: 300;
}

.logo-inglis {
    font-family: Arial, sans-serif;
    color: #ED1C24;
    font-weight: 700;
    font-style: italic;
}

.logo-blomberg {
    font-family: Arial, sans-serif;
    color: #E30613;
    font-weight: 700;
}

.logo-bertazzoni {
    font-family: Georgia, serif;
    color: #B8860B;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.logo-amana {
    font-family: Arial, sans-serif;
    color: #E31837;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-hotpoint {
    font-family: Arial, sans-serif;
    background: #000;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.logo-hobart {
    font-family: Arial, sans-serif;
    background: #0066B3;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    border: 2px solid #E31837;
}

@media (max-width: 768px) {
    .brand-logos-showcase {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .logo-item {
        height: 60px;
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Special layout for 5 videos */
@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-video:nth-child(4),
    .testimonial-video:nth-child(5) {
        grid-column: span 1;
    }
    
    .testimonials-grid {
        grid-template-areas: 
            "video1 video2 video3"
            "video4 . video5";
    }
    
    .testimonial-video:nth-child(1) { grid-area: video1; }
    .testimonial-video:nth-child(2) { grid-area: video2; }
    .testimonial-video:nth-child(3) { grid-area: video3; }
    .testimonial-video:nth-child(4) { grid-area: video4; }
    .testimonial-video:nth-child(5) { grid-area: video5; }
}

.testimonial-video {
    text-align: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
}

.testimonial-title {
    font-weight: 500;
    color: var(--gray-700);
}

.google-rating {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.google-logo {
    height: 30px;
}

.rating-text {
    color: var(--gray-700);
    font-weight: 500;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.reviews-count {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Areas Section */
.areas-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.areas-header {
    text-align: center;
    margin-bottom: 3rem;
}
.areas-badge {
    display: inline-block;
    padding: 0.5rem 1.75rem;
    background: #E91E63;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: var(--white);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.area-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.area-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}
.areas-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.area-feature h3 {
    margin-bottom: 0.5rem;
}

.area-feature p {
    color: var(--gray-700);
}

/* Booking Section */
.booking-section {
    padding: 3rem 0; /* Уменьшен padding */
    background: var(--white);
}

.booking-section .section-title {
    margin-bottom: 1rem; /* Компактнее */
    font-size: 2rem; /* Меньше размер */
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-section .section-subtitle {
    margin-bottom: 0.75rem; /* Компактнее */
}

.booking-fast-text {
    text-align: center;
    font-size: 1rem; /* Уменьшен размер */
    color: var(--bright-green);
    font-weight: 600;
    margin-bottom: 1.5rem; /* Уменьшен margin */
    padding: 0.5rem 1rem; /* Уменьшен padding */
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: fit-content;
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem; /* Уменьшен gap */
    margin-top: 2rem; /* Уменьшен margin */
}
.booking-form {
    background: var(--gray-100);
    padding: 1.5rem; /* Уменьшен padding */
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem; /* Уменьшен gap */
    margin-bottom: 0.75rem; /* Уменьшен margin */
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem; /* CRITICAL: Must be 16px+ to prevent mobile auto-zoom */
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.submit-btn {
    width: 100%;
    padding: 1rem; /* Уменьшен padding */
    background: #27AE60;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem; /* Немного уменьшен размер */
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem; /* Уменьшен margin */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.35);
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.45);
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: var(--gray-100);
    padding: 1.25rem; /* Уменьшен padding */
    border-radius: 15px;
}

.info-box h3 {
    margin-bottom: 0.5rem; /* Уменьшен margin */
    font-size: 1.1rem; /* Немного меньше размер */
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.call-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #7c3aed;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.call-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: visible; /* Changed from hidden to visible */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #2196F3; /* Blue gradient color */
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.15);
    background: #F0F7FF; /* Very light blue background */
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question span:first-child {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex: 1;
    padding-right: 1rem;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: var(--gray-200);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::after {
    opacity: 1;
}

.faq-question:hover {
    background: rgba(33, 150, 243, 0.03); /* Very subtle blue hover effect */
    padding-left: 2.25rem;
}

.faq-item.active .faq-question {
    background: rgba(33, 150, 243, 0.05); /* Very light blue background */
}

.faq-item.active .faq-question span:first-child {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-icon {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    font-weight: 300;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    color: #555; /* Darker gray for better readability */
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Increased from 500px to ensure all text is visible */
    padding: 1rem 2rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}
.step-card {
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray-700);
    line-height: 1.8;
}

.process-note {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}
/* Footer */
.main-footer {
    background: var(--primary-blue);
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #1565C0 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.footer-column h5 {
    color: var(--primary-yellow);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}
.footer-column a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-yellow);
}

.contact-info h3 {
    color: var(--primary-yellow);
    font-size: 0.875rem;
    margin: 1rem 0 0.5rem;
}

.phone-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-links img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.social-links img:hover {
    opacity: 1;
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0;
}

.payment-methods img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer-cta {
    margin-top: 1.5rem;
}

.cta-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.amex-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--orange);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.amex-link:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.service-area {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-brands {
    margin-bottom: 2rem;
}

.footer-brands h4 {
    color: var(--primary-yellow);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-brands p {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    line-height: 1.8;
}

.copyright {
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

/* ============================================
   SEO-OPTIMIZED FOOTER LAYOUT
   ============================================ */
.footer-content-seo {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

/* Footer Columns Grid */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col h4 {
    color: white !important;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
    padding-left: 3px;
}

/* Footer Contact Info */
.footer-contact-info p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-info strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: white !important;
}

/* Footer CTA Box */
.footer-content-seo .footer-cta-box {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Footer Bottom */
.footer-bottom-seo {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom-seo .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    border: none;
    padding: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-content-seo .footer-cta-box {
        padding: 2rem 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        max-width: 600px; /* Увеличен размер для планшетов */
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.25rem; }
    
    .main-nav {
        display: none;
    }
    
    /* Header CTA removed */
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        flex-direction: column;
    }
    
    .timer-box {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 400px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease;
}

/* Hover Effects - Simple movement only, no circle effect */

/* Additional Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Removed prefer-larger-text classes - now using larger text by default */

/* Extra large phone numbers */
.phone-large {
    font-size: 1.5rem !important; /* 27px */
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Better contrast for aging eyes */
.high-contrast p,
.high-contrast li {
    color: #1a1a1a !important;
    font-weight: 400;
}

.high-contrast h1,
.high-contrast h2,
.high-contrast h3,
.high-contrast h4 {
    color: #000 !important;
    font-weight: 700;
}

/* Button Pulse Animation for CTAs */
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 8px 20px rgba(39, 174, 96, 0.35);
    }
    50% {
        box-shadow: 0 8px 30px rgba(39, 174, 96, 0.6);
    }
    100% {
        box-shadow: 0 8px 20px rgba(39, 174, 96, 0.35);
    }
}

@keyframes pulse-shadow-purple {
    0% {
        box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
    }
    50% {
        box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
    }
    100% {
        box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
    }
}

.countdown-cta {
    animation: pulse-shadow 2s infinite;
}

.call-btn-large {
    animation: pulse-shadow-purple 2s infinite;
}

/* Enhanced Button Icons */
.cta-primary svg, .cta-secondary svg, .countdown-cta svg, .call-btn-large svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
/* Social Links Text Style */
.social-links a {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Payment Badges */
.payment-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

/* Update hero image styling */
.hero-image img {
    width: 100%;
    height: auto;
    max-width: 650px; /* Увеличен максимальный размер изображения */
    display: block;
    position: relative;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, 
        black 0%, 
        black 85%, 
        transparent 100%);
    mask-image: linear-gradient(to bottom, 
        black 0%, 
        black 85%, 
        transparent 100%);
}

/* Video thumbnail aspect ratio fix */
.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
    background: #f5f5f5;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* YouTube Video Embeds */
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

.video-wrapper {
    aspect-ratio: 16/9;
    background: #000;
}

/* Hide play button for video embeds */
.video-wrapper:has(iframe) .play-button {
    display: none;
}

/* Testimonial video iframe styling */
.video-thumbnail iframe {
    border: none;
}

/* Responsive video grid adjustment */
@media (min-width: 769px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* About section video styling */
.about-video .video-wrapper {
    max-width: 100%;
    margin: 0 auto;
}/* Property Managers Section Styles - Modern Design */
.property-managers-section {
    padding: 5rem 0;
    background: #f8fafb;
    position: relative;
    overflow: hidden;
}

.property-managers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pm-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Badge Styling */
.pm-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(33, 150, 243, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #2196F3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pm-title {
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pm-subtitle {
    font-size: 1.75rem;
    color: #2196F3;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.pm-description {
    font-size: 1.25rem;
    color: #616161;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Benefits Grid - Clean Card Design */
.pm-benefits-modern {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pm-benefits-modern li {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.pm-benefits-modern li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: #2196F3;
}

.benefit-check {
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-content strong {
    display: block;
    font-size: 1.375rem;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content span {
    font-size: 1.125rem;
    color: #616161;
    line-height: 1.5;
}

/* Stats Cards - Clean Design */
.pm-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pm-stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pm-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(33,150,243,0.15);
}

.stat-number-large {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-modern {
    font-size: 1.25rem;
    color: #616161;
    font-weight: 500;
}

/* CTA Section */
.pm-cta-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-business {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: #27AE60;
    color: white;
    border-radius: 60px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-business:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
    background: #2ECC71;
}

.pm-floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #FFC107;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #F57C00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pm-benefits-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pm-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .pm-benefits-modern,
    .pm-stats-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pm-title {
        font-size: 2.5rem;
    }
    
    .pm-subtitle {
        font-size: 1.5rem;
    }
    
    .pm-description {
        font-size: 1.125rem;
    }
    
    .benefit-content strong {
        font-size: 1.25rem;
    }
    
    .benefit-content span {
        font-size: 1rem;
    }
    
    .stat-number-large {
        font-size: 3rem;
    }
    
    .stat-label-modern {
        font-size: 1.125rem;
    }
    
    .pm-cta-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-business {
        width: 100%;
        justify-content: center;
    }
}
/* Removed Font Size Toggle Button - using larger text by default */
/* Landlords Page Specific Styles */

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    display: block;
    font-family: var(--font-heading);
}

.hero-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Trust Bar for Landlords */
.trust-bar {
    background: var(--gray-100);
    padding: 1.5rem 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.trust-icon {
    font-size: 1.5rem;
}

/* Volume Section */
.volume-section {
    padding: 4rem 0;
    background: white;
}

.volume-note {
    text-align: center;
    color: var(--gray-700);
    font-style: italic;
    margin-top: 2rem;
}

/* Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
    color: var(--orange);
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.business-form {
    background: var(--gray-100);
    padding: 2.5rem;
    border-radius: 20px;
}

.business-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.business-form input,
.business-form select,
.business-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.business-form input:focus,
.business-form select:focus,
.business-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-info-box {
    background: var(--primary-blue);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info-box .phone-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 1rem;
}

.contact-info-box ul {
    list-style: none;
    margin-top: 1.5rem;
}

.contact-info-box li {
    padding: 0.5rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-stats {
        justify-content: center;
        text-align: center;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .volume-table {
        overflow-x: auto;
    }
    
    .partner-benefits {
        grid-template-columns: 1fr;
    }
    
    .business-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Removed prefer-larger-text support - using larger text by default */

/* ============================================
   BOOKING SECTION - BMAD OPTIMIZED
   ============================================ */

.booking-section-bmad {
    position: relative;
    background: var(--bg-white);
    padding: 6rem 0;
    overflow: hidden;
}

/* Header */
.booking-header-bmad {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.booking-header-bmad .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.booking-phone-inline {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-phone-inline:hover {
    color: #8b5cf6;
}

/* Content Grid */
.booking-content-bmad {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Section */
.booking-form-bmad {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form-bmad form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form-bmad input,
.booking-form-bmad select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.booking-form-bmad input:focus,
.booking-form-bmad select:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.booking-form-bmad select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23495057' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.booking-form-bmad .submit-btn {
    margin-top: 0.5rem;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form-bmad .submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive button text */
.btn-text-mobile {
    display: none;
}

.btn-text-desktop {
    display: inline;
}

@media (max-width: 480px) {
    .btn-text-desktop {
        display: none;
    }

    .btn-text-mobile {
        display: inline;
    }
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Sidebar */
.booking-sidebar-bmad {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Quick Call Box */
.quick-call-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quick-call-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2196F3 !important;
}

.quick-call-box p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.quick-call-box .cta-secondary {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
    color: white !important;
}

/* Trust Badges */
.booking-trust-badges {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

.trust-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.trust-badge-item:last-child {
    margin-bottom: 0;
}

.badge-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    font-family: var(--font-heading);
}

.badge-text span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Hours Box */
.hours-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.hours-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.hours-box p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .booking-content-bmad {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-section-bmad {
        padding: 4rem 0;
    }

    .booking-header-bmad {
        margin-bottom: 2rem;
    }

    .booking-form-bmad {
        padding: 2rem 1.5rem;
    }

    .booking-form-bmad .submit-btn {
        width: 100%;
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .quick-call-box {
        padding: 1.5rem;
    }

    .quick-call-box .cta-secondary {
        width: 100%;
        font-size: 1rem;
    }

    .trust-badge-item {
        gap: 0.75rem;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .badge-text strong {
        font-size: 0.95rem;
    }

    .badge-text span {
        font-size: 0.825rem;
    }
}
