/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores corporativos RELESA - Rojo corporativo */
    --primary-color: #fc3441;
    --secondary-color: #d32f39;
    --accent-color: #ff5a68;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #fef7f7;
    --white: #ffffff;
    --border-color: #e8d4d6;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(252, 52, 65, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Page sections padding */
.products-page,
.categories-page,
.product-detail,
.cities-page {
    padding: 30px 0 80px;
}

/* Breadcrumb styles */
.breadcrumb {
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-color);
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(252, 52, 65, 0.1);
}

/* Header interno para páginas que no son home */
.header-internal {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%), url('/assets/images/section-head-about-us.jpg') center center/cover no-repeat;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-internal .logo-img {
    filter: brightness(0) invert(1);
}

.header-internal .nav-menu a {
    color: var(--white);
}

.header-internal .nav-menu a:hover {
    color: var(--white);
    opacity: 0.9;
}

.header-internal .nav-menu a::after {
    background: var(--white);
}

.header-internal .lang-btn {
    border-color: var(--white);
    color: var(--white);
}

.header-internal .lang-btn.active {
    background: var(--white);
    color: var(--primary-color);
}

.header-internal .lang-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.header-internal .mobile-menu-toggle span {
    background: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.9;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    max-width: 100%;
}

.logo-img text {
    font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif !important;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.6rem 1.2rem;
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(252, 52, 65, 0.85) 0%, rgba(211, 47, 57, 0.85) 100%), url('../images/home-banner.jpg') center center/cover no-repeat;
    color: var(--white);
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(252, 52, 65, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(252, 52, 65, 0.4);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.product-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(252, 52, 65, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(252, 52, 65, 0.15);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(252, 52, 65, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(252, 52, 65, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 2.5rem;
}

.product-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.75rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.advantage-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(252, 52, 65, 0.05);
}

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

.advantage-item h4 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

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

.info-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(252, 52, 65, 0.1);
}


.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 4rem 0 0;
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(252, 52, 65, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-contact .contact-item:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-content p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

/* RTL Support for Arabic */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .header-content,
html[dir="rtl"] .nav-menu,
html[dir="rtl"] .contact-content,
html[dir="rtl"] .footer-content {
    direction: rtl;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .product-content {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }
    
    .header-content {
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem !important;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 1rem 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        gap: 1rem;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .product-detail-grid .product-image-wrapper {
        order: 1;
    }
    
    .product-detail-grid .product-info {
        order: 2;
        position: relative !important;
        top: 0 !important;
    }

    .header-internal .nav-menu {
        background: rgba(0, 0, 0, 0.95);
    }

    .header-internal .nav-menu a {
        color: var(--white);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .language-switcher {
        margin-left: auto;
    }

    .hero {
        padding: 80px 0;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .hero .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .products-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid .product-card,
    .categories-grid .category-card {
        max-width: 100%;
    }

    .advantages {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantage-item {
        padding: 2rem;
    }

    .products,
    .about,
    .contact,
    .cities-page {
        padding: 60px 0;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-content h3 {
        font-size: 1.35rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .product-detail-grid .product-info {
        position: relative !important;
        top: 0 !important;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1.5rem !important;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        font-size: 0.85rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: left !important;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .footer-legal a {
        margin-left: 0 !important;
        margin-right: 1.5rem;
    }
    
    /* Products page mobile */
    .products-page {
        padding: 20px 0 60px !important;
    }
    
    /* Categories page mobile */
    .categories-page {
        padding: 20px 0 60px !important;
    }
    
    /* Home page mobile improvements */
    .hero {
        padding: 60px 0 !important;
        min-height: 350px !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 2rem !important;
    }
}

/* Cities Page Specific Styles */
.city-card {
    position: relative;
    overflow: hidden;
}

.city-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(252, 52, 65, 0.25) !important;
}

.city-card:hover .city-content > div > span:last-child {
    transform: translateX(8px);
}

.city-card:hover > div:last-child {
    opacity: 1 !important;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(252, 52, 65, 0.2) !important;
}

/* City Hero with Background */
.city-hero {
    position: relative;
}

.city-hero .container {
    text-align: left !important;
}

.city-hero .breadcrumb {
    text-align: left !important;
}

.city-hero h1 {
    text-align: left !important;
}

.city-hero p {
    text-align: left !important;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

@media (max-width: 992px) {
    .city-hero {
        padding: 60px 0 80px !important;
        min-height: 400px !important;
        background-attachment: scroll !important;
        align-items: flex-end !important;
    }
    
    .city-hero > .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .city-hero h1 {
        font-size: 3rem !important;
        margin-bottom: 0.5rem !important;
        padding-left: 1.5rem !important;
        border-left-width: 4px !important;
    }
    
    .city-hero p {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
    }
    
    .city-hero .btn {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .city-hero > .container > div > div:last-child {
        justify-content: flex-start !important;
    }
    
    .city-description {
        padding: 2.5rem !important;
        margin-bottom: 3rem !important;
    }
    
    .city-description h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .city-description-text {
        columns: 1 !important;
        font-size: 1.05rem !important;
    }
    
    .map-section {
        padding: 2rem !important;
        margin-bottom: 3rem !important;
    }
    
    .map-section h2 {
        font-size: 1.75rem !important;
    }
    
    .map-section iframe {
        height: 400px !important;
    }
    
    .categories-section {
        margin-bottom: 3rem !important;
    }
    
    .categories-section h2 {
        font-size: 2rem !important;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 2rem !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 2rem !important;
    }
    
    .service-card {
        padding: 2rem !important;
    }
    
    .benefits-section {
        padding: 3rem 2rem !important;
    }
    
    .benefits-section > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .city-hero {
        padding: 50px 0 60px !important;
        min-height: 350px !important;
        background-attachment: scroll !important;
        align-items: flex-end !important;
    }
    
    .city-hero > .container > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .city-hero h1 {
        font-size: 2.25rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        padding-left: 1.25rem !important;
        border-left-width: 3px !important;
        letter-spacing: -1px !important;
    }
    
    .city-hero p {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
    }
    
    .city-hero .btn {
        padding: 0.85rem 1.25rem !important;
        font-size: 0.85rem !important;
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .city-hero > .container > div > div:last-child {
        justify-content: flex-start !important;
    }
    
    .city-description {
        padding: 2rem 1.5rem !important;
        margin-bottom: 2.5rem !important;
        margin-top: -30px !important;
    }
    
    .city-description h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .city-description-text {
        columns: 1 !important;
        font-size: 1rem !important;
        line-height: 1.8 !important;
    }
    
    .map-section {
        padding: 1.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .map-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .map-section p {
        font-size: 0.95rem !important;
    }
    
    .map-section svg {
        max-height: 300px !important;
    }
    
    .services-section {
        margin-bottom: 3rem !important;
    }
    
    .services-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 2rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-card {
        padding: 1.75rem !important;
    }
    
    .service-card h3 {
        font-size: 1.25rem !important;
    }
    
    .service-card p {
        font-size: 0.95rem !important;
    }
    
    .benefits-section {
        padding: 2.5rem 1.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .benefits-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 2rem !important;
    }
    
    .benefits-section > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .benefits-section > div:last-child > div {
        padding: 1.5rem !important;
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .benefits-section h4 {
        font-size: 1.15rem !important;
    }
    
    .benefits-section p {
        font-size: 0.95rem !important;
    }
    
    /* CTA Section Mobile */
    .city-landing > .container > div:last-child {
        padding: 2.5rem 1.5rem !important;
    }
    
    .city-landing > .container > div:last-child h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .city-landing > .container > div:last-child p {
        font-size: 1.05rem !important;
        margin-bottom: 2rem !important;
    }
    
    .city-landing > .container > div:last-child .btn {
        width: 100% !important;
        margin-bottom: 0.75rem !important;
        padding: 1.1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .city-card {
        margin-bottom: 0;
    }
    
    .city-card .city-content {
        padding: 1.5rem !important;
    }
    
    .cities-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0.75rem 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo-img {
        height: 30px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .nav-menu {
        gap: 0.75rem;
        padding: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }

    .hero {
        padding: 60px 0;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-content {
        padding: 1.25rem;
    }
    
    .product-content h3 {
        font-size: 1.25rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .city-hero {
        padding: 50px 0 30px !important;
        min-height: 280px !important;
    }
    
    .city-hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    .city-hero p {
        font-size: 1rem !important;
    }
    
    .city-description {
        padding: 1.5rem !important;
        margin-top: -20px !important;
    }
    
    .city-description h2 {
        font-size: 1.5rem !important;
    }
    
    .city-description-text {
        columns: 1 !important;
        font-size: 0.95rem !important;
    }
    
    .map-section {
        padding: 1.25rem !important;
    }
    
    .map-section h2 {
        font-size: 1.35rem !important;
    }
    
    .map-section iframe {
        height: 300px !important;
    }
    
    .categories-section {
        margin-bottom: 2.5rem !important;
    }
    
    .categories-section h2 {
        font-size: 1.5rem !important;
    }
    
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .services-section h2 {
        font-size: 1.5rem !important;
    }
    
    .service-card {
        padding: 1.5rem !important;
    }
    
    .service-card h3 {
        font-size: 1.15rem !important;
    }
    
    .benefits-section {
        padding: 2rem 1.25rem !important;
    }
    
    .benefits-section h2 {
        font-size: 1.5rem !important;
    }
    
    .benefits-section > div:last-child > div {
        flex-direction: column;
        gap: 1rem !important;
        text-align: center;
        padding: 1.25rem !important;
    }
    
    .benefits-section > div:last-child > div > div:first-child {
        margin: 0 auto;
    }
    
    .city-card .city-content {
        padding: 1.25rem !important;
    }
    
    /* CTA Section Extra Small */
    .city-landing > .container > div:last-child {
        padding: 2rem 1.25rem !important;
    }
    
    .city-landing > .container > div:last-child h2 {
        font-size: 1.5rem !important;
    }
    
    .city-landing > .container > div:last-child p {
        font-size: 1rem !important;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
}

