/* style.css - Современный стиль для сайта "Грузоперевозки 46" */

:root {
    color-scheme: light;
    /* Логистическая палитра: Оранжевый и Темно-синий */
    --primary: #f97316;       /* Сигнальный оранжевый */
    --primary-dark: #ea580c;  /* Темно-оранжевый при наведении */
    --primary-light: #fdba74; /* Светло-оранжевый для фонов */
    
    --secondary: #1e293b;     /* Сланцевый / Темно-синий */
    --secondary-dark: #0f172a;/* Глубокий темный */
    
    --accent: #eab308;        /* Желтый для выделения цен */
    --accent-dark: #ca8a04;
    
    --dark: #111827;          /* Текст */
    --darker: #030712;        /* Фон футера */
    --light: #f8fafc;
    --lighter: #f1f5f9;       /* Основной фон сайта */
    
    --gray: #64748b;          /* Второстепенный текст */
    --gray-light: #94a3b8;
    
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius: 8px;           /* Чуть более строгие углы для логистики */
    --radius-lg: 12px;
    --radius-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--lighter);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lighter);
    z-index: -1;
}

/* Decorative elements */
.decor-circle {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 40%;
    left: 20%;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--primary); /* Оранжевая полоса сверху */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--secondary);
    text-transform: uppercase;
}

.logo-sub {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

nav a:hover, nav a.active {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--secondary-dark);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background-color: white;
    color: var(--secondary);
    box-shadow: var(--shadow);
    border: 2px solid var(--lighter);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid var(--primary);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    color: var(--secondary);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 100%;
    max-width: 550px;
    height: 450px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
}

.hero-photo, .about-photo, .service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.image-frame:hover .hero-photo, 
.image-frame:hover .about-photo, 
.image-frame:hover .service-photo {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--secondary-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-features {
    margin: 32px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-details h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--secondary-dark);
}

.feature-details p {
    color: var(--gray);
    font-size: 14px;
}

.about-image {
    flex: 1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-dark);
}

.contact-details a, .contact-details p {
    color: var(--gray);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-map {
    background-color: var(--secondary-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
}

.map-placeholder p {
    color: var(--gray-light);
    margin-bottom: 24px;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.contact-main-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
    transition: var(--transition);
    border: none;
    position: relative;
    z-index: 1000;
    padding: 12px;
}

.contact-main-btn:hover {
    transform: scale(1.1);
    background: var(--secondary);
    box-shadow: 0 15px 30px rgba(30, 41, 59, 0.4);
}

.contact-options {
    position: absolute;
    bottom: 90px;
    right: 0;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 300px;
    transform-origin: bottom right;
    animation: slideUp 0.3s ease-out;
    z-index: 1001;
    border: 1px solid var(--lighter);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-options.active {
    display: flex;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--lighter);
}

.close-contact {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 18px;
    cursor: pointer;
}

.close-contact:hover { color: var(--primary); }

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    background: var(--lighter);
}

.contact-option:hover {
    transform: translateX(-5px);
    background: white;
    box-shadow: var(--shadow-sm);
}

.contact-option .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.telegram-icon { background: #0088cc; }
.whatsapp-icon { background: #25D366; }

.contact-text h5 {
    font-size: 16px;
    color: var(--secondary-dark);
}

.contact-text p {
    font-size: 13px;
    color: var(--gray);
}

/* Footer */
footer {
    background-color: var(--secondary-dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    border-top: 4px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-main {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
}

.footer-description {
    color: var(--gray-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }

.footer-column a, .footer-column li {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pages - Inner Structure */

/* Breadcrumb */
.breadcrumb {
    background-color: white;
    padding: 15px 0;
    margin: 20px 0 40px;
    border-radius: var(--radius);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--secondary-dark); font-weight: 600; }

/* Page Hero */
.page-hero {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 100px 0 40px;
    margin-top: 60px;
    text-align: center;
}

.page-hero h1 {
    color: var(--secondary-dark);
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Dropdown */
nav ul li.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: white;
    min-width: 260px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 10px 0;
    border-top: 3px solid var(--primary);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.dropdown-menu a:hover {
    background-color: var(--lighter);
    color: var(--primary);
    padding-left: 35px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Service Detail */
.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.service-detail-image { flex: 1; min-width: 300px; }

.service-detail-image .image-frame {
    height: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-detail-content h2 {
    color: var(--secondary-dark);
    font-size: 28px;
    margin-bottom: 20px;
}

/* Белая логистическая плашка цены */
.price-badge {
    background: var(--secondary-dark);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0;
    border-left: 6px solid var(--primary);
    box-shadow: var(--shadow);
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
}

.price-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
}

/* SEO Content */
.content-block { margin-bottom: 50px; }

.content-block h3 {
    color: var(--secondary-dark);
    font-size: 26px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid var(--lighter);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.advantage-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 3px solid transparent;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--primary);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Price Table */
.price-table {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 25px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid var(--lighter);
}

.price-row:nth-child(odd) { background-color: rgba(249, 115, 22, 0.03); }

.price-service { font-weight: 600; color: var(--secondary-dark); }
.price-value { font-weight: 800; color: var(--primary); font-size: 18px; }

/* Call to Action Banner */
.page-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-bottom: 5px solid var(--primary);
}

.cta-content h2 { color: white; font-size: 32px; margin-bottom: 15px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px;}

.city-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    list-style: none;
    margin: 20px 0 10px;
    text-align: left;
}

.city-list li {
    position: relative;
    padding-left: 20px;
    color: var(--gray-light);
    font-size: 15px;
}

.city-list li::before {
    content: "\f0d1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

/* FAQ */
.faq-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary);
}

.faq-item h4 {
    color: var(--secondary-dark);
    font-size: 18px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-item h4::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary);
}

.faq-item.active h4::after { content: '−'; }

.faq-item p {
    color: var(--gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin: 0;
}

.faq-item.active p {
    max-height: 300px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--lighter);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container { flex-direction: column; text-align: center; }
    .hero-features { grid-template-columns: repeat(2, 1fr); }
    .about-content { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto;}
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .footer-logo { justify-content: center; }
}

@media (max-width: 768px) {
    header { border-bottom: none; }
    .header-container { padding: 20px 0; flex-wrap: wrap; }
    .nav-phone { margin-left: auto; margin-right: 10px; padding: 8px 12px; font-size: 14px;}
    .mobile-menu-btn { display: flex; }
    nav { display: none; width: 100%; margin-top: 15px; }
    nav.active { display: block; }
    nav ul { flex-direction: column; background: white; padding: 15px; border-radius: var(--radius); box-shadow: var(--shadow); }
    
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; padding: 0 15px;}
    
    .hero { padding: 120px 0 50px; }
    .hero-title { font-size: 32px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    
    .service-detail { flex-direction: column; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; text-align: left; gap: 30px;}
    
    .city-list { grid-template-columns: 1fr; }
}