/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: 0.2rem;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #bdc3c7;
    font-weight: 400;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.short-phone {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-top: 0.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-location {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Animated Background Cars */
.animated-cars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.car {
    position: absolute;
    opacity: 0.1;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.car img {
    width: 80px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(0.8);
}

.car-1 {
    top: 20%;
    left: -100px;
    animation-name: moveCar1;
    animation-delay: 0s;
}

.car-2 {
    top: 40%;
    right: -100px;
    animation-name: moveCar2;
    animation-delay: 5s;
    transform: scaleX(-1);
}

.car-3 {
    top: 60%;
    left: -100px;
    animation-name: moveCar3;
    animation-delay: 10s;
}

.car-4 {
    top: 80%;
    right: -100px;
    animation-name: moveCar4;
    animation-delay: 15s;
    transform: scaleX(-1);
}

/* Car Animations */
@keyframes moveCar1 {
    0% {
        left: -100px;
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        left: calc(100% + 100px);
        opacity: 0;
    }
}

@keyframes moveCar2 {
    0% {
        right: -100px;
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        right: calc(100% + 100px);
        opacity: 0;
    }
}

@keyframes moveCar3 {
    0% {
        left: -100px;
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        left: calc(100% + 100px);
        opacity: 0;
    }
}

@keyframes moveCar4 {
    0% {
        right: -100px;
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        right: calc(100% + 100px);
        opacity: 0;
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20c55a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-call {
    background: #e74c3c;
    color: white;
}

.btn-call:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-submit {
    background: #27ae60;
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Quick Evaluation Form */
.quick-evaluation {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.2);
}

.quick-evaluation h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.evaluation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.form-group input::placeholder {
    color: #666;
}

/* Detailed Services Section */
.detailed-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
}

.vehicle-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vehicle-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.vehicle-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vehicle-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.vehicle-category p {
    color: #666;
    line-height: 1.5;
}

.problems-section {
    text-align: center;
    margin-bottom: 3rem;
}

.problems-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 2rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.problem-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.problem-item i {
    color: #e74c3c;
    font-size: 1.5rem;
}

.problem-item span {
    font-weight: 600;
    color: #2c3e50;
}

.free-service {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.free-service h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.free-service p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    line-height: 1.5;
}

/* Coverage Section */
.coverage {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.coverage-content {
    text-align: center;
}

.coverage-text {
    margin-bottom: 3rem;
}

.coverage-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.coverage-text p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.city-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.city-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.city-item i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.city-item span {
    font-weight: 600;
    color: #2c3e50;
}

.coverage-note {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.coverage-note p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #666;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 15px;
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.gallery-item {
    background: white;
    border: 1px solid #ecf0f1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
}

.gallery-caption h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.gallery-note {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
    margin-top: 2rem;
}

.gallery-note p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-method:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 2rem;
}

.contact-method span {
    font-weight: 600;
}

.main-phone {
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-location {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .phone {
        font-size: 1rem;
    }
    
    .short-phone {
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .coverage-text h3 {
        font-size: 1.5rem;
    }
    
    .coverage-text p {
        font-size: 1rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .services-intro h2 {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .vehicle-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vehicle-category {
        padding: 1.5rem;
    }
    
    .vehicle-category h3 {
        font-size: 1.2rem;
    }
    
    .problems-section h3 {
        font-size: 1.5rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .problem-item {
        padding: 1rem;
    }
    
    .free-service {
        padding: 2rem;
    }
    
    .free-service h3 {
        font-size: 1.5rem;
    }
    
    .free-service p {
        font-size: 1rem;
    }
    
    .city-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gallery-caption {
        padding: 1rem;
    }
    
    .gallery-caption h4 {
        font-size: 1.1rem;
    }
    
    .gallery-caption p {
        font-size: 0.8rem;
    }
    
    .gallery-placeholder {
        font-size: 1.2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-method {
        width: 100%;
        max-width: 250px;
        padding: 1.2rem;
    }
    
    .contact-method i {
        font-size: 1.5rem;
    }
    
    .main-phone {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-info h3 {
        font-size: 1.3rem;
    }
    
    .quick-evaluation {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .quick-evaluation h2 {
        font-size: 1.3rem;
    }
    
    .form-group input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-location {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .car img {
        width: 60px;
        height: 30px;
    }
    
    .car-1 {
        top: 15%;
    }
    
    .car-2 {
        top: 35%;
    }
    
    .car-3 {
        top: 55%;
    }
    
    .car-4 {
        top: 75%;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .quick-evaluation {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .quick-evaluation h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-group input {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .coverage-text h3 {
        font-size: 1.3rem;
    }
    
    .coverage-text p {
        font-size: 0.9rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .city-item {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-caption {
        padding: 0.8rem;
    }
    
    .gallery-caption h4 {
        font-size: 1rem;
    }
    
    .gallery-caption p {
        font-size: 0.75rem;
    }
    
    .gallery-placeholder {
        font-size: 1rem;
    }
    
    .gallery-note {
        padding: 1.5rem;
    }
    
    .gallery-note p {
        font-size: 1rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-method {
        padding: 1rem;
        max-width: 200px;
    }
    
    .contact-method i {
        font-size: 1.3rem;
    }
    
    .contact-method span {
        font-size: 0.9rem;
    }
    
    .main-phone {
        font-size: 1rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .phone {
        font-size: 0.9rem;
    }
    
    .short-phone {
        font-size: 0.75rem;
    }
    
    .footer-info h3 {
        font-size: 1.2rem;
    }
    
    .footer-info p {
        font-size: 0.85rem;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Улучшенные тач-цели для мобильных */
    .btn {
        min-height: 44px; /* Минимальный размер для удобного нажатия */
        touch-action: manipulation;
    }
    
    .contact-method {
        min-height: 60px;
        touch-action: manipulation;
    }
    
    /* Улучшенная прокрутка */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Предотвращение зума при фокусе на input */
    input[type="text"],
    input[type="tel"] {
        font-size: 16px;
    }
    
    /* Улучшенные отступы для мобильных */
    .section-title {
        margin-bottom: 2rem;
    }
    
    .services,
    .coverage,
    .gallery,
    .contact {
        padding: 3rem 0;
    }
    
    /* Оптимизация для мобильных сеток */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Улучшенная читаемость на мобильных */
    .hero-location {
        line-height: 1.4;
    }
    
    .coverage-note,
    .gallery-note {
        margin: 1.5rem 0;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-location {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .service-card {
        padding: 0.8rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .city-item {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .contact-method {
        padding: 0.8rem;
        max-width: 180px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
}
