/* DenProk-MED Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --secondary: #00c853;
    --accent: #ff6b35;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, #1a73e8 0%, #00c853 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

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

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.wow {
    opacity: 0;
    transition: all 0.8s ease;
}

.wow.animated {
    opacity: 1;
}

.fadeInUp { animation: slideInUp 0.8s ease forwards; }
.fadeInLeft { animation: slideInLeft 0.8s ease forwards; }
.fadeInRight { animation: slideInRight 0.8s ease forwards; }
.zoomIn { animation: scaleIn 0.8s ease forwards; }

/* Site navigation — only #header, not <header> inside page sections */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo img, 
.logo img {
    max-width: 220px;
    height: auto;
    display: block;
}

.logo span {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-phone a:hover {
    color: var(--secondary);
}

.header-phone i {
    font-size: 1.5rem;
    color: var(--secondary);
    animation: pulse 2s infinite;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--light);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: var(--primary);
    color: white;
}

.mobile-menu i {
    transition: transform 0.3s ease;
}

.header-social {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.header-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social a.whatsapp {
    background: #25D366;
}

.header-social a.telegram {
    background: #0088cc;
}

.header-social a.vk {
    background: #0077FF;
}

.header-social a.max-ru {
    background: #0077FF;
}

.header-social a.max-ru svg {
    width: 16px;
    height: 16px;
}

.header-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile nav contacts */
.nav-mobile-contacts {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26,115,232,0.9) 0%, rgba(0,200,83,0.8) 100%), 
                url('img/bg.jpeg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero-form {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--shadow-hover);
}

.hero-form h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: var(--dark);
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,115,232,0.1);
}

.form-group input.error {
    border-color: #ff4444;
    animation: shake 0.5s ease;
}

.form-group input.success {
    border-color: var(--secondary);
}

.form-group .error-message {
    position: absolute;
    bottom: -18px;
    left: 10px;
    font-size: 0.75rem;
    color: #ff4444;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group .error-message.show {
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn.loading .spinner {
    display: block;
}

.btn.loading .btn-text {
    opacity: 0;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(26,115,232,0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26,115,232,0.4);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}

.btn-accent:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.4);
}

.btn-success {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: white;
}

.btn-full {
    width: 100%;
}

/* Form Status Messages */
.form-status {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    animation: slideInUp 0.3s ease;
}

.form-status.show {
    display: flex;
}

.form-status.success {
    background: rgba(0,200,83,0.1);
    border: 1px solid var(--secondary);
    color: #00a843;
}

.form-status.error {
    background: rgba(255,68,68,0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
}

.form-status i {
    font-size: 1.2rem;
}

/* Features Strip */
.features-strip {
    background: white;
    padding: 30px 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.95rem;
    color: var(--dark);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

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

/* Services Section */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

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

.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

/* Premium Services Section */
.premium-services {
    background: white;
    padding: 100px 0;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.premium-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.premium-card-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.premium-card-image.transport-bg {
    background: linear-gradient(135deg, #1565c0 0%, #1a73e8 50%, #42a5f5 100%);
}

.premium-card-image.ambulance-bg {
    background: linear-gradient(135deg, #1a73e8 0%, #4fc3f7 50%, #00c853 100%);
}

.premium-card-image.reanimation-bg {
    background: linear-gradient(135deg, #e53935 0%, #ff7043 50%, #ff8a65 100%);
}

.premium-card-image.hospital-bg {
    background: linear-gradient(135deg, #00897b 0%, #26a69a 50%, #4db6ac 100%);
}

.premium-card-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.premium-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.premium-card:hover .premium-card-icon {
    transform: scale(1.1);
    background: rgba(255,255,255,0.35);
}

.premium-card-icon i {
    font-size: 2rem;
    color: white;
}

.premium-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-card-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.premium-card-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 43px;
}

.premium-card-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.premium-card-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-card-features li i {
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: white;
    background: var(--gradient);
    box-shadow: 0 8px 25px rgba(26,115,232,0.3);
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    text-align: center;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26,115,232,0.4);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d4a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.pricing .section-header h2 {
    color: white;
}

.pricing .section-header p {
    color: rgba(255,255,255,0.7);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 25px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.price-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.price-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0,200,83,0.2);
}

.price-item:hover::before {
    transform: scaleX(1);
}

.price-item:hover .price-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--secondary);
}

.price-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.price-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.price-item:hover .price-icon i {
    color: white;
}

.price-item h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.price-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 10px 20px;
    background: rgba(0,200,83,0.15);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.price-item:hover .price {
    background: rgba(0,200,83,0.25);
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-form input {
    flex: 1;
    min-width: 200px;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
}

.cta-form input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

.cta-form input.error {
    box-shadow: 0 0 0 3px #ff4444;
}

/* Fleet Section */
.fleet {
    background: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fleet-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.fleet-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-card:hover img {
    transform: scale(1.1);
}

.fleet-card-content {
    padding: 25px;
    background: white;
    position: relative;
}

.fleet-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.fleet-card p {
    color: #666;
    font-size: 0.9rem;
}

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* FAQ Section */
.faq {
    background: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* Info Section */
.info-section {
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-content h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.info-content ul {
    list-style: none;
}

.info-content li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.info-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.1rem;
}

.info-image {
    position: relative;
}

.info-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.info-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

/* About Section */
.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-item a, .contact-item p {
    font-size: 1.2rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
}

/* Site footer only — not <footer> inside cards (e.g. review-author) */
body > footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.footer-social a.max-ru svg {
    width: 20px;
    height: 20px;
}

/* Hero mobile social icons — hidden on desktop */
.hero-social-mobile {
    display: none;
    gap: 12px;
    margin-top: 20px;
}

.hero-social-mobile a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.hero-social-mobile a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.hero-social-mobile a.max-ru svg {
    width: 20px;
    height: 20px;
}

/* Footer mobile social — hidden on desktop */
.footer-social-mobile {
    display: none;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-social-mobile a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-mobile a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.footer-social-mobile a.max-ru svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 25px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent);
    color: white;
}

.modal h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.modal p {
    color: #666;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1280px) {
    .header-container {
        padding: 15px 20px;
    }

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 0.9rem;
    }

    .header-phone a {
        font-size: 1rem;
    }

    .header-social a {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1100px) {
    nav {
        gap: 15px;
    }

    nav a {
        font-size: 0.85rem;
    }

    .header-phone {
        display: none;
    }

    .logo {
        font-size: 1.5rem;
    }
}

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        justify-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 0;
        z-index: 100;
    }

    nav.active {
        display: flex;
    }

    nav a {
        font-size: 1rem;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: center;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .nav-mobile-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0 10px;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .nav-phone {
        display: flex !important;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem !important;
        font-weight: 700;
        color: var(--primary) !important;
        padding: 10px 0 !important;
        border-bottom: none !important;
    }

    .nav-phone i {
        color: var(--secondary);
    }

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

    .nav-social a {
        width: 45px !important;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        font-size: 1.2rem;
        padding: 0 !important;
        border-bottom: none !important;
    }

    .nav-social a.whatsapp {
        background: #25D366;
    }

    .nav-social a.telegram {
        background: #0088cc;
    }

    .nav-social a.vk {
        background: #0077FF;
    }

    .nav-social a.max-ru {
        background: #0077FF;
    }

    .nav-social a.max-ru svg {
        width: 14px;
        height: 14px;
    }

    .mobile-menu {
        display: flex;
        order: 3;
    }

    .header-social {
        order: 2;
    }

    .logo {
        order: 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .header-social {
        display: none;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .hero-form {
        padding: 30px 20px;
    }

    .hero-form h3 {
        font-size: 1.1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-item h4 {
        font-size: 0.9rem;
    }

    section {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .premium-services {
        padding: 60px 0;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-card-image {
        height: 160px;
    }

    .premium-card-body {
        padding: 25px 20px;
    }

    .premium-card-body h3 {
        font-size: 1.15rem;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .price-item {
        padding: 25px 15px;
    }

    .price-icon {
        width: 50px;
        height: 50px;
    }

    .price-icon i {
        font-size: 1.2rem;
    }

    .price-item h4 {
        font-size: 0.85rem;
        min-height: auto;
    }

    .price-item .price {
        font-size: 1.1rem;
        padding: 8px 15px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input, .cta-form .btn {
        width: 100%;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fleet-card img {
        height: 180px;
    }

    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .info-content h2 {
        font-size: 1.5rem;
    }

    .info-content li {
        font-size: 0.95rem;
        padding-left: 30px;
    }

    .about-photo {
        max-width: 250px;
    }

    .about-badge {
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content h3 {
        font-size: 1rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .contact-item a, .contact-item p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social-mobile {
        display: flex;
    }

    .footer-social {
        display: none;
    }

    .hero-social-mobile {
        display: flex;
        justify-content: center;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }

    .modal-content {
        padding: 35px 25px;
        margin: 10px;
    }

    .modal h3 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-item {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item h4 {
        margin-top: 10px;
    }
}
