/* ========================================= */
/*      Combined Hero (Text Left + Image Right) */
/* ========================================= */

.city-hero-combined {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9f6f2 0%, #ffffff 100%);
    overflow: hidden;
}

.city-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 4rem;
}

/* Left Side - Text Content */
.city-hero-text-content {
    flex: 1;
    padding-right: 2rem;
}

.city-hero-title-combined {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #3e2618 !important;
    position: relative;
    padding-bottom: 1rem;
}

.city-hero-title-combined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #7a4a2e, #5a3825);
    border-radius: 2px;
}

.city-hero-subtitle-combined {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555 !important;
    font-weight: 400;
}

/* ========================================= */
/*      Hero CTA Buttons - Single Line      */
/* ========================================= */

/* Default (Desktop) */
.hero-cta-buttons {
    display: flex;
    flex-direction: row; /* Change from column to row */
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: nowrap; /* Prevent wrapping */
    justify-content: flex-start; /* Align to left */
}

.hero-call-btn, .hero-whatsapp-btn {
    flex: 1; /* Make both buttons equal width */
    min-width: 200px; /* Minimum width for buttons */
    white-space: nowrap; /* Prevent text wrapping */
}

/* Mobile के लिए adjustment */
@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: row; /* Keep them in one line on mobile too */
        gap: 0.8rem;
        flex-wrap: wrap; /* Allow wrapping if needed */
        justify-content: center; /* Center align on mobile */
    }
    
    .hero-call-btn, .hero-whatsapp-btn {
        flex: 1 1 calc(50% - 0.8rem); /* 50% width with gap */
        min-width: 160px; /* Smaller min-width for mobile */
        font-size: 1rem;
        padding: 14px 15px;
    }
}

/* Extra small screens पर stack करने के लिए */
@media (max-width: 576px) {
    .hero-cta-buttons {
        flex-direction: row; /* Still keep in one line */
        gap: 0.6rem;
    }
    
    .hero-call-btn, .hero-whatsapp-btn {
        flex: 1 1 calc(50% - 0.6rem);
        min-width: 140px;
        font-size: 0.95rem;
        padding: 12px 10px;
    }
    
    .btn-icon {
        font-size: 1em; /* Slightly smaller icons */
    }
}

/* Very small screens (below 400px) */
@media (max-width: 400px) {
    .hero-cta-buttons {
        flex-direction: row; /* Still horizontal */
    }
    
    .hero-call-btn, .hero-whatsapp-btn {
        font-size: 0.9rem;
        padding: 10px 8px;
    }
    
    .btn-icon {
        font-size: 0.9em;
        margin-right: 5px;
    }
}

/* Tablets और medium screens के लिए optimization */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-cta-buttons {
        max-width: 600px; /* Limit width on medium screens */
    }
    
    .hero-call-btn, .hero-whatsapp-btn {
        min-width: 180px;
    }
}

/* ========================================= */
/*          Mobile Fix for Hero Heading      */
/* ========================================= */

/* For tablets and small devices */
@media (max-width: 992px) {
    .city-hero-combined {
        padding-top: 6rem; /* Increase top padding */
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .city-hero-combined {
        padding-top: 7rem; /* More padding for smaller screens */
        min-height: auto;
    }
    
    .city-hero-wrapper {
        margin-top: 0;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .city-hero-combined {
        padding-top: 5rem; /* Adjust as needed */
    }
    
    .city-hero-title-combined {
        margin-top: 1rem; /* Extra margin for heading */
        font-size: 2rem;
    }
}

/* If you have a fixed navbar, add this */
@media (max-width: 768px) {
    body.has-fixed-navbar .city-hero-combined {
        padding-top: 8rem; /* More padding if navbar is fixed */
    }
}

/* Alternative: Add margin directly to the title */
@media (max-width: 768px) {
    .city-hero-text-content {
        margin-top: 2rem;
    }
    
    .city-hero-title-combined {
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }
}

/* Benefits List */
.hero-benefits-list {
    background: rgba(122, 74, 46, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #7a4a2e;
    margin: 2rem 0;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(122, 74, 46, 0.2);
    color: #3e2618;
    font-weight: 500;
}

.hero-benefit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #7a4a2e;
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-weight: bold;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-badge {
    text-align: center;
    flex: 1;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7a4a2e;
    margin-bottom: 0.3rem;
}

.badge-text {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Side - Image Content */
.city-hero-image-content {
    flex: 1;
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(122, 74, 46, 0.15);
    transition: transform 0.5s ease;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.image-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #7a4a2e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.2em;
}

/* Image Caption */
.image-caption {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #25D366;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ========================================= */
/*          Features Showcase                */
/* ========================================= */

.features-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-showcase-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: #7a4a2e;
    margin-bottom: 1.5rem;
}

.feature-showcase-item h3 {
    color: #3e2618;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-showcase-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================= */
/*          Enhanced Gallery Section         */
/* ========================================= */

.featured-gallery-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    margin-bottom: 3rem;
}

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

.featured-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2rem;
}

.featured-caption h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.featured-caption p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.city-gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Additional Images Grid */
.additional-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.additional-images-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.additional-images-grid img:hover {
    transform: scale(1.05);
}

/* ========================================= */
/*          Image Showcase Section           */
/* ========================================= */

.image-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.image-showcase-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.showcase-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-main-image:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.showcase-caption h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.showcase-caption p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.showcase-side-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.side-image-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: calc(50% - 1rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.side-image-item:hover .side-img {
    transform: scale(1.1);
}

.side-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1.5rem;
}

.side-caption p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.side-caption strong {
    color: #ffd700;
}

/* Responsive Design for Image Showcase */
@media (max-width: 992px) {
    .image-showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-main-image {
        height: 350px;
    }
    
    .showcase-side-images {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .side-image-item {
        flex: 1;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .image-showcase-section {
        padding: 2rem;
    }
    
    .showcase-main-image {
        height: 300px;
    }
    
    .showcase-caption {
        padding: 1.5rem;
    }
    
    .showcase-caption h4 {
        font-size: 1.3rem;
    }
    
    .showcase-caption p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .image-showcase-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .showcase-main-image {
        height: 250px;
    }
    
    .showcase-caption {
        padding: 1rem;
    }
    
    .showcase-caption h4 {
        font-size: 1.2rem;
    }
    
    .showcase-side-images {
        flex-direction: column;
    }
    
    .side-image-item {
        height: 180px;
    }
    
    .side-caption {
        padding: 1rem;
    }
    
    .side-caption p {
        font-size: 0.9rem;
    }
}

/* Animation for image showcase */
.image-showcase-section {
    animation: fadeInUp 0.8s ease forwards;
}

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

/* ========================================= */
/*          Photo Showcase Section           */
/* ========================================= */

.photo-showcase-section {
    padding: 4rem 0;
}

.photo-showcase-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.photo-showcase-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
}

.photo-showcase-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2rem;
}

.photo-caption h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.photo-caption p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.photo-showcase-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.side-photo {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: calc(50% - 1rem);
}

.side-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

.side-caption h5 {
    color: white;
    margin: 0;
}

/* ========================================= */
/*          Container for All Sections      */
/* ========================================= */

.city-page .container {
    max-width: 1200px !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 auto !important;
}

.city-page .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

/* ========================================= */
/*          Typography for City Pages       */
/* ========================================= */

.city-page h1,
.city-page h2,
.city-page h3,
.city-page h4,
.city-page h5,
.city-page h6 {
    color: #3e2618;
    line-height: 1.3;
}

.city-page h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.city-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: #7a4a2e;
    border-radius: 2px;
}

.city-page h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f1f1;
}

.city-page h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #5a3825;
}

.city-page h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #7a4a2e;
}

.city-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 1.5rem;
}

/* ========================================= */
/*          Content Sections in Container   */
/* ========================================= */

.city-content-section {
    padding: 4rem 0;
    background: #fff;
}

.city-content-section:nth-child(even) {
    background: #fbfbfb;
}

.city-benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #5a3825 0%, #7a4a2e 100%);
    color: #fff;
    text-align: center;
}

.city-benefits-section h2,
.city-benefits-section h3,
.city-benefits-section h4 {
    color: #fff;
}

.city-benefits-section h2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

/* ========================================= */
/*          Gallery Grid                    */
/* ========================================= */

.city-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.city-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.city-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-gallery-item:hover .city-gallery-img {
    transform: scale(1.1);
}

/* ========================================= */
/*          Benefits Cards                  */
/* ========================================= */

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

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

.city-benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.city-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* ========================================= */
/*      Enhanced CTA Section - Minimal Beautiful      */
/* ========================================= */

.city-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f6f2 0%, #ffffff 100%);
    position: relative;
    text-align: center;
    margin: 4rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(122, 74, 46, 0.1);
    border-bottom: 1px solid rgba(122, 74, 46, 0.1);
}

/* Remove the dark overlay */
.city-cta-overlay {
    display: none;
}

.city-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Styling - White text removed, dark text added */
.city-cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #3e2618; /* Changed from white to dark brown */
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.city-cta-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #7a4a2e, #5a3825);
    border-radius: 2px;
}

/* Subtitle - Dark text */
.city-cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 2rem auto 3rem;
    max-width: 800px;
    color: #555; /* Changed from white to dark gray */
    font-weight: 400;
}

/* Benefit Cards - Minimal design */
.cta-benefit-card {
    background: white;
    border: 1px solid rgba(122, 74, 46, 0.15);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(122, 74, 46, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(122, 74, 46, 0.12);
    border-color: rgba(122, 74, 46, 0.3);
}

.cta-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7a4a2e, #5a3825);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
}

.cta-benefit-card h4 {
    color: #3e2618;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Buttons */
.city-cta-content .nir-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 10px 15px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-decoration: none;
    border: 2px solid transparent;
}

/* First button (Call Now) */
.city-cta-content .nir-btn:first-child {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
}

.city-cta-content .nir-btn:first-child:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Second button (WhatsApp) */
.city-cta-content .nir-btn.bg-theme2 {
    background: white;
    color: #25D366;
    border: 2px solid #25D366;
}

.city-cta-content .nir-btn.bg-theme2:hover {
    background: #25D366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Contact info */
.city-cta-content small {
    font-size: 0.95rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(122, 74, 46, 0.05);
    border-radius: 50px;
}

/* Animations */
.city-animate-fade {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.city-animate-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.city-animate-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

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

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

/* ========================================= */
/*          Responsive Design               */
/* ========================================= */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .city-cta-section {
        padding: 4rem 0;
    }
    
    .city-cta-title {
        font-size: 2.4rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .city-cta-section {
        padding: 3.5rem 0;
    }
    
    .city-cta-title {
        font-size: 2rem;
    }
    
    .city-cta-subtitle {
        font-size: 1.1rem;
        margin: 1.5rem auto 2.5rem;
    }
    
    .cta-benefit-card {
        padding: 2rem 1.25rem;
    }
    
    .cta-benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .city-cta-content .nir-btn {
        min-width: 180px;
        padding: 14px 25px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .city-cta-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .city-cta-title {
        font-size: 1.8rem;
        padding-bottom: 0.8rem;
    }
    
    .city-cta-title::after {
        width: 80px;
    }
    
    .city-cta-subtitle {
        font-size: 1rem;
        margin: 1.2rem auto 2rem;
    }
    
    .row.mt-5 {
        margin-top: 2rem !important;
    }
    
    .cta-benefit-card {
        padding: 1.75rem 1rem;
        border-radius: 10px;
    }
    
    .cta-benefit-card:hover {
        transform: translateY(-5px);
    }
    
    .cta-benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-benefit-card h4 {
        font-size: 1.2rem;
    }
    
    .cta-benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Stack buttons on mobile */
    .city-cta-content .nir-btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 10px !important;
        padding: 14px 20px;
    }
    
    .mt-5.pt-2 {
        margin-top: 2rem !important;
        padding-top: 0.5rem !important;
    }
    
    .city-cta-content small {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .city-cta-section {
        padding: 2.5rem 0;
    }
    
    .city-cta-title {
        font-size: 1.6rem;
    }
    
    .city-cta-subtitle {
        font-size: 0.95rem;
    }
    
    .cta-benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .city-cta-content .nir-btn {
        font-size: 1rem;
        max-width: 250px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .city-cta-title {
        font-size: 1.4rem;
    }
    
    .city-cta-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .cta-benefit-card h4 {
        font-size: 1.1rem;
    }
}

/* Print styles */
@media print {
    .city-cta-section {
        background: white !important;
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    .cta-benefit-card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
    
    .cta-benefit-icon {
        background: #6c757d !important;
    }
}

/* ========================================= */
/*          Responsive Design               */
/* ========================================= */

/* Large Devices (992px - 1200px) */
@media (max-width: 1200px) {
    .city-hero-wrapper {
        max-width: 960px;
        gap: 3rem;
    }
    
    .photo-showcase-container {
        grid-template-columns: 1fr;
    }
    
    .photo-showcase-large {
        height: 400px;
    }
}

/* Medium Devices (768px - 992px) */
@media (max-width: 992px) {
    .city-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .city-hero-text-content {
        padding-right: 0;
    }
    
    .city-hero-title-combined::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-call-btn,
    .hero-whatsapp-btn {
        width: 100%;
        max-width: 350px;
    }
    
    .city-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .additional-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .city-page h1 {
        font-size: 2.4rem;
    }
    
    .city-page h2 {
        font-size: 2rem;
    }
}

/* Small Devices (576px - 768px) */
@media (max-width: 768px) {
    .city-hero-combined {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .city-hero-title-combined {
        font-size: 2.5rem;
    }
    
    .city-hero-subtitle-combined {
        font-size: 1.1rem;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .city-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .city-gallery-item {
        height: 300px;
    }
    
    .featured-gallery-image {
        height: 350px;
    }
    
    .additional-images-grid {
        grid-template-columns: 1fr;
    }
    
    .features-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-showcase-large {
        height: 300px;
    }
    
    .city-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .city-cta-section {
        padding: 3rem 0;
    }
    
    .city-cta-title {
        font-size: 2rem;
    }
    
    .city-page h1 {
        font-size: 2rem;
    }
    
    .city-page h2 {
        font-size: 1.8rem;
    }
}

/* Extra Small Devices (Below 576px) */
@media (max-width: 576px) {
    .city-hero-title-combined {
        font-size: 2rem;
    }
    
    .city-hero-subtitle-combined {
        font-size: 1rem;
    }
    
    .hero-main-image {
        height: 250px;
    }
    
    .hero-call-btn,
    .hero-whatsapp-btn {
        font-size: 1rem;
        padding: 14px 20px;
    }
    
    .hero-benefit-item {
        font-size: 0.95rem;
    }
    
    .trust-badge {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .city-page h1 {
        font-size: 1.8rem;
    }
    
    .city-page h2 {
        font-size: 1.6rem;
    }
    
    .city-cta-title {
        font-size: 1.8rem;
    }
    
    .city-cta-content .nir-btn {
        display: block;
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
    
    .city-gallery-item {
        height: 250px;
    }
    
    .featured-gallery-image {
        height: 250px;
    }
    
    .photo-showcase-large {
        height: 250px;
    }
}

/* Mobile Landscape */
@media (max-width: 992px) and (orientation: landscape) {
    .city-hero-combined {
        min-height: 500px;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .city-gallery-item {
        height: 200px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
    .city-hero-wrapper {
        padding: 0 30px;
    }
    
    .hero-main-image {
        height: 350px;
    }
    
    .city-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High Resolution Screens */
@media (min-width: 1400px) {
    .city-page .container {
        max-width: 1320px !important;
    }
}

/* Print Styles */
@media print {
    .city-hero-combined,
    .city-cta-section {
        background: white !important;
        color: black !important;
    }
    
    .city-gallery-item,
    .photo-showcase-large {
        break-inside: avoid;
    }
}