/* ===== Responsive Design ===== */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 35px;
    }

    .form-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.2fr;
        gap: 15px;
    }

    .nav-desktop {
        gap: 25px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 968px) {
    /* ===== MOBILE HEADER ===== */
    .header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        background: var(--bg-white);
    }

    .nav {
        height: 75px;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .container {
        padding: 0 20px;
    }

    .nav-logo {
        flex: 1;
    }

    .logo-img {
        height: 50px;
        width: auto;
    }

    /* Hide desktop navigation */
    .nav-desktop,
    .nav-desktop-actions {
        display: none !important;
    }

    /* Mobile Toggle Button - Simple Lines */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border-radius: 0;
        gap: 5px;
        padding: 0;
        border: none;
        cursor: pointer;
        transition: none;
        box-shadow: none !important;
        flex-shrink: 0;
        outline: none;
    }

    .nav-toggle:hover,
    .nav-toggle:focus,
    .nav-toggle:active {
        background: transparent !important;
        transform: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .nav-toggle-icon {
        width: 26px;
        height: 3px;
        background: #1976D2;
        border-radius: 2px;
        transition: none;
        display: block;
        pointer-events: none;
    }

    .nav-toggle-icon:nth-child(2) {
        width: 26px;
    }

    .nav-toggle-icon:nth-child(3) {
        width: 26px;
    }

    .nav-toggle:hover .nav-toggle-icon,
    .nav-toggle:focus .nav-toggle-icon,
    .nav-toggle:active .nav-toggle-icon {
        background: #1976D2 !important;
    }

    /* ===== MOBILE MENU ===== */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: none;
        padding: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow: hidden;
        flex-direction: column;
    }

    .nav-menu.show-menu {
        right: 0;
    }

    /* Mobile Menu Header - Exactly same as mobile header but blue background */
    .nav-menu-header {
        position: relative;
        width: 100%;
        height: 90px;
        min-height: 90px;
        max-height: 90px;
        background: linear-gradient(135deg, #1976D2, #1565C0);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        flex-shrink: 0;
        z-index: 10;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin-top: -15px;
    }

    .nav-menu-header .nav-menu-logo {
        flex: 1;
        display: flex;
        align-items: center;
        height: 50px;
        margin-left: -5px;
    }

    .nav-menu-header .nav-menu-logo img {
        height: 50px !important;
        width: auto !important;
        max-width: none !important;
        min-height: 50px !important;
        filter: brightness(0) invert(1) !important;
        -webkit-filter: brightness(0) invert(1) !important;
        display: block !important;
        object-fit: contain !important;
    }

    /* Close Button - Same as hamburger icon position */
    .nav-menu-header .nav-close {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin: 0;
        margin-top: 5px;
        flex-shrink: 0;
        box-shadow: none !important;
        outline: none !important;
        gap: 5px;
    }

    .nav-menu-header .nav-close:hover,
    .nav-menu-header .nav-close:focus,
    .nav-menu-header .nav-close:active {
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
        transform: none !important;
    }

    .nav-menu-header .nav-close-icon {
        position: relative;
        width: 26px;
        height: 26px;
        display: block;
    }

    .nav-menu-header .nav-close-icon::before,
    .nav-menu-header .nav-close-icon::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 26px;
        height: 3px;
        background: #FFFFFF;
        border-radius: 2px;
    }

    .nav-menu-header .nav-close-icon::before {
        transform: translateY(-50%) rotate(45deg);
    }

    .nav-menu-header .nav-close-icon::after {
        transform: translateY(-50%) rotate(-45deg);
    }

    /* Mobile Menu Content */
    .nav-menu-content {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 90px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile Menu List */
    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0;
        margin: 0;
        list-style: none;
        background: var(--bg-white);
        flex-shrink: 0;
    }

    .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 22px 25px;
        font-size: 17px;
        font-weight: 600;
        color: var(--text-dark);
        transition: var(--transition);
        position: relative;
        background: var(--bg-white);
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(135deg, #1976D2, #1565C0);
        transition: width 0.3s ease;
    }

    .nav-link:active {
        background: rgba(25, 118, 210, 0.04);
        color: #1976D2;
    }

    .nav-link:active::before {
        width: 5px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link-cta {
        display: none;
    }

    /* Mobile Menu Actions */
    .nav-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 24px 20px 28px;
        background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
        margin-top: auto;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        flex-shrink: 0;
    }

    .nav-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 24px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 16px;
        transition: var(--transition);
        text-align: center;
        border: none;
        cursor: pointer;
        text-decoration: none;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        min-height: 54px;
    }

    .nav-menu-btn i {
        font-size: 1.3rem;
    }

    .nav-menu-btn-login {
        background: var(--bg-white);
        color: var(--text-dark);
        border: 2px solid #E0E0E0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .nav-menu-btn-login:active {
        background: rgba(25, 118, 210, 0.05);
        border-color: #1976D2;
        color: #1976D2;
        transform: scale(0.98);
    }

    .nav-menu-btn-primary {
        background: linear-gradient(135deg, #1976D2, #1565C0);
        color: var(--bg-white);
        box-shadow: 0 4px 16px rgba(25, 118, 210, 0.35);
    }

    .nav-menu-btn-primary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(25, 118, 210, 0.4);
    }

    .nav-menu-btn-secondary {
        background: linear-gradient(135deg, #FF6B00, #E55A00);
        color: var(--bg-white);
        box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
    }

    .nav-menu-btn-secondary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(255, 107, 0, 0.4);
    }

    /* Mobile Language Selector - 3 Languages */
    .nav-menu-languages {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding-top: 18px;
        border-top: 2px solid rgba(0, 0, 0, 0.05);
    }

    .language-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 10px;
        background: var(--bg-white);
        border: 2px solid #E0E0E0;
        border-radius: 12px;
        font-weight: 700;
        font-size: 13px;
        color: var(--text-dark);
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        min-height: 70px;
    }

    .language-btn .flag-icon {
        font-size: 1.8rem;
        line-height: 1;
    }

    .language-btn span:last-child {
        line-height: 1;
        font-size: 12px;
    }

    .language-btn.active {
        background: linear-gradient(135deg, #1976D2, #1565C0);
        color: var(--bg-white);
        border-color: transparent;
        box-shadow: 0 4px 16px rgba(25, 118, 210, 0.35);
    }

    .language-btn:not(.active):active {
        background: rgba(25, 118, 210, 0.05);
        border-color: #1976D2;
        transform: scale(0.98);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100vh;
    }

    /* ===== MOBILE FOOTER ===== */
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-top {
        display: block;
    }

    .footer-brand {
        text-align: center;
        padding: 0;
        margin-bottom: 40px;
    }

    .footer-logo {
        padding: 15px 25px;
        border-radius: 12px;
        margin: 0 auto 25px;
        display: inline-block;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-description {
        font-size: 14px;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.8;
        padding: 0 10px;
    }

    .footer-trust-badges {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-badge {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    .trust-badge i {
        font-size: 15px;
    }

    /* Footer kolonları düzeni */
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

    .footer-brand {
        width: 100%;
        margin-bottom: 40px;
    }

    /* Kurumsal ve Hizmetler yan yana col-md-6 gibi */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        width: 50% !important;
        padding: 0 10px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4 {
        font-size: 1.15rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
        text-align: left;
    }

    .footer-col h4::after {
        left: 0;
        transform: none;
        width: 50px;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        font-size: 15px;
        padding: 8px 0;
        text-align: left;
    }

    /* İletişim kolonu tam genişlik */
    .footer-col:nth-child(4) {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-col:nth-child(4) h4 {
        text-align: center;
    }

    .footer-col:nth-child(4) h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-info {
        align-items: center;
        gap: 16px;
    }

    .footer-contact-item {
        padding: 16px 20px;
        border-radius: 12px;
        gap: 14px;
        max-width: 100%;
        width: 100%;
    }

    .footer-contact-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    .footer-contact-icon i {
        font-size: 1.15rem;
    }

    .footer-contact-label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .footer-contact-value {
        font-size: 14px;
    }

    .footer-social {
        margin-top: 20px;
        gap: 12px;
        justify-content: center;
    }

    .footer-social a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-company-info {
        text-align: center;
    }

    .footer-company-info p {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 5px;
    }

    .footer-copyright {
        font-size: 13px;
        margin-top: 10px;
    }

    .footer-payment-methods {
        justify-content: center;
        gap: 14px;
    }

    .payment-method {
        width: 48px;
        height: 32px;
        border-radius: 8px;
    }

    .payment-method i {
        font-size: 1.3rem;
    }

    /* ===== FLOATING BUTTONS ===== */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 14px;
        z-index: 997;
    }

    .floating-btn {
        width: 58px;
        height: 58px;
        font-size: 1.7rem;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    }

    .floating-btn:active {
        transform: scale(0.92);
    }

    /* Rest of responsive styles... */
    .hero {
        min-height: 650px;
        padding: 130px 0 70px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-text {
        margin-bottom: 45px;
    }

    .search-card {
        padding: 32px 28px;
        border-radius: 18px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .form-grid .form-group:first-child {
        grid-column: 1 / -1;
    }

    .form-group {
        width: 100%;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .form-group select,
    .form-group input {
        padding: 14px 15px;
        font-size: 15px;
        border-radius: 10px;
        width: 100%;
        -webkit-appearance: none;
        appearance: none;
    }

    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }

    .btn-search {
        grid-column: 1 / -1;
        padding: 16px 26px;
        font-size: 16px;
        height: auto;
        min-height: 52px;
        border-radius: 12px;
        font-weight: 700;
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-card {
        padding: 35px 25px 30px;
        border-radius: 18px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        margin-bottom: 20px;
        border-radius: 18px;
    }

    .step-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .step-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section {
        padding: 80px 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 45px;
    }
}


/* Additional Step Card Improvements for Mobile */
@media screen and (max-width: 576px) {
    .step-card {
        padding: 30px 20px 28px;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .step-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .step-card p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Tablet Optimization */
@media screen and (min-width: 769px) and (max-width: 968px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .step-card {
        padding: 35px 20px 30px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 2.1rem;
    }

    .step-card h3 {
        font-size: 1.25rem;
    }

    .step-card p {
        font-size: 13px;
    }
}


/* Advantage Cards Mobile Optimization */
@media screen and (max-width: 968px) {
    .advantage-card {
        padding: 35px 25px 30px;
        border-radius: 16px;
    }

    .advantage-icon {
        width: 75px;
        height: 75px;
        font-size: 1.9rem;
        margin-bottom: 20px;
    }

    .advantage-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .advantage-card p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }
}

@media screen and (max-width: 576px) {
    .advantage-card {
        padding: 32px 22px 28px;
        border-radius: 16px;
    }

    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .advantage-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .advantage-card p {
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
    }

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

    .airport-card {
        padding: 24px;
        border-radius: 14px;
    }

    .airport-card-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
        border-radius: 12px;
    }

    .airport-card-content h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .airport-card-content > p {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .airport-features {
        padding: 12px 14px;
        border-radius: 8px;
        margin-bottom: 18px;
    }

    .airport-features li {
        font-size: 12px;
        gap: 8px;
        margin-bottom: 7px;
    }

    .airport-card .btn-outline {
        width: 100%;
        max-width: 100%;
        padding: 11px 20px;
        font-size: 13px;
    }

    .airports-cta {
        padding: 28px 24px;
        border-radius: 14px;
        margin-top: 32px;
    }

    .airports-cta p {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .airports-cta .btn {
        min-width: 100%;
        padding: 14px 28px;
        font-size: 14px;
    }
}


/* Airport Cards Professional Design - Responsive */
@media screen and (max-width: 968px) {
    .airports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .airport-card {
        padding: 28px;
        border-radius: 16px;
    }

    .airport-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        border-radius: 14px;
    }

    .airport-card-content h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .airport-card-content > p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .airport-features {
        padding: 14px 16px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .airport-features li {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 8px;
    }

    .airport-card .btn-outline {
        width: 100%;
        max-width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }

    .airports-cta {
        padding: 36px 30px;
        border-radius: 18px;
        margin-top: 40px;
    }

    .airports-cta p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .airports-cta .btn {
        min-width: 100%;
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* FAQ Responsive - 968px */
@media screen and (max-width: 968px) {
    .faq-item {
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
        gap: 18px;
    }

    .faq-question i {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }

    .faq-answer p {
        padding: 0 24px 22px;
        font-size: 14px;
        line-height: 1.7;
    }
}

/* FAQ Responsive - 576px */
@media screen and (max-width: 576px) {
    .faq-item {
        border-radius: 14px;
        margin-bottom: 16px;
    }

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

    .faq-question i {
        font-size: 1.1rem;
        width: 30px;
        height: 30px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 13px;
        line-height: 1.7;
    }
}

/* Testimonials Responsive - 968px */
@media screen and (max-width: 968px) {
    .testimonial-card {
        padding: 36px 30px;
        border-radius: 20px;
        min-height: 280px;
    }

    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.75;
    }

    .testimonial-author {
        gap: 14px;
        padding-top: 20px;
    }

    .testimonial-author::before {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }

    .testimonial-author strong {
        font-size: 1.05rem;
    }

    .testimonial-author span {
        font-size: 0.9rem;
    }
}

/* Testimonials Responsive - 576px */
@media screen and (max-width: 576px) {
    .testimonial-card {
        padding: 32px 26px;
        border-radius: 18px;
        min-height: 260px;
    }

    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 22px;
        line-height: 1.7;
    }

    .testimonial-author {
        gap: 12px;
        padding-top: 18px;
    }

    .testimonial-author::before {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 1.1rem;
    }

    .testimonial-author strong {
        font-size: 1rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }
}

/* Step Cards Responsive - 968px */
@media screen and (max-width: 968px) {
    .steps-grid::before {
        display: none;
    }

    .step-card {
        padding: 42px 28px 38px;
        border-radius: 20px;
    }

    .step-icon {
        width: 85px;
        height: 85px;
        font-size: 2.4rem;
        margin-bottom: 24px;
        border-radius: 20px;
    }

    .step-card h3 {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }

    .step-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Step Cards Responsive - 576px */
@media screen and (max-width: 576px) {
    .step-card {
        padding: 36px 24px 32px;
        border-radius: 18px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 2.1rem;
        margin-bottom: 20px;
        border-radius: 18px;
    }

    .step-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .step-card p {
        font-size: 13px;
        line-height: 1.65;
    }
}

/* ===== Contact Page Responsive Styles ===== */

/* Tablet - 992px */
@media screen and (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 2.75rem;
    }

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

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

    .contact-form-section-wide {
        padding: 80px 0;
    }

    .contact-form-header-wide h2 {
        font-size: 2rem;
    }

    .contact-form-wide {
        padding: 40px 30px;
    }

    .contact-form-wide .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-section-wide {
        padding: 80px 0;
    }

    .company-header-wide {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }

    .company-header-wide .company-header-text h2 {
        font-size: 1.75rem;
    }

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

    .company-header-text h2 {
        font-size: 1.75rem;
    }

    .company-name-section {
        padding: 32px 30px;
        flex-direction: column;
        text-align: center;
    }

    .company-name-section h3 {
        font-size: 1.25rem;
    }

    .company-details-grid {
        grid-template-columns: 1fr;
    }

    .company-detail-card {
        padding: 28px 24px;
    }

    .company-contact-section {
        grid-template-columns: 1fr;
    }

    .company-contact-card {
        padding: 28px 30px;
    }
}

/* Mobile - 768px */
@media screen and (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
    }

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

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

    .contact-hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    .quick-contact-section {
        margin-top: -40px;
    }

    .quick-contact-card {
        padding: 32px 24px;
    }

    .quick-contact-icon {
        width: 70px;
        height: 70px;
    }

    .quick-contact-icon i {
        font-size: 1.75rem;
    }

    .contact-form-section {
        padding: 80px 0;
    }

    .contact-form-content {
        padding: 40px 30px;
    }

    .contact-form-header h2 {
        font-size: 1.75rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-card {
        padding: 28px 24px;
    }

    /* Contact Form Section - Wide Layout */
    .contact-form-section-wide {
        padding: 80px 0;
    }

    .contact-form-header-wide {
        margin-bottom: 40px;
    }

    .contact-form-header-wide h2 {
        font-size: 1.75rem;
    }

    .contact-form-wide {
        padding: 40px 30px;
    }

    .contact-form-wide .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Company Section - Wide Layout */
    .company-section-wide {
        padding: 80px 0;
    }

    .company-header-wide {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }

    .company-header-wide .company-header-text h2 {
        font-size: 1.75rem;
    }

    .company-section {
        padding: 80px 0;
    }

    .company-header-text h2 {
        font-size: 1.75rem;
    }

    .company-name-section {
        padding: 32px 30px;
        flex-direction: column;
        text-align: center;
    }

    .company-name-section h3 {
        font-size: 1.25rem;
    }

    .company-detail-card {
        padding: 28px 20px;
    }

    .company-contact-card {
        padding: 28px 30px;
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile - 576px */
@media screen and (max-width: 576px) {
    .contact-hero {
        padding: 100px 0 50px;
    }

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

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

    .quick-contact-section {
        margin-top: -30px;
    }

    .quick-contact-card {
        padding: 28px 20px;
    }

    .quick-contact-icon {
        width: 60px;
        height: 60px;
    }

    .quick-contact-icon i {
        font-size: 1.5rem;
    }

    .quick-contact-card h3 {
        font-size: 1.125rem;
    }

    .quick-contact-card p {
        font-size: 0.9375rem;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-content {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .contact-form-icon {
        width: 60px;
        height: 60px;
    }

    .contact-form-icon i {
        font-size: 1.5rem;
    }

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

    .contact-form-header p {
        font-size: 0.9375rem;
    }

    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-form-info {
        flex-direction: column;
        gap: 16px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
    }

    .contact-info-icon i {
        font-size: 1.25rem;
    }

    .contact-info-card h4 {
        font-size: 1rem;
    }

    .contact-info-card p {
        font-size: 14px;
    }

    /* Contact Form Section - Wide Layout */
    .contact-form-section-wide {
        padding: 60px 0;
    }

    .contact-form-header-wide {
        margin-bottom: 35px;
    }

    .contact-form-header-wide .contact-form-icon {
        width: 60px;
        height: 60px;
    }

    .contact-form-header-wide .contact-form-icon i {
        font-size: 1.5rem;
    }

    .contact-form-header-wide h2 {
        font-size: 1.5rem;
    }

    .contact-form-header-wide p {
        font-size: 0.9375rem;
    }

    .contact-form-wide {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .contact-form-wide .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-wide .form-group input,
    .contact-form-wide .form-group select,
    .contact-form-wide .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-form-wide .form-group label {
        font-size: 13px;
    }

    .contact-form-wide .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Company Section - Wide Layout */
    .company-section-wide {
        padding: 60px 0;
    }

    .company-header-wide {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }

    .company-header-wide .company-header-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .company-header-wide .company-header-icon i {
        font-size: 1.5rem;
    }

    .company-header-wide .company-header-text h2 {
        font-size: 1.5rem;
    }

    .company-header-wide .company-header-text p {
        font-size: 0.9375rem;
    }

    .company-section {
        padding: 60px 0;
    }

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

    .company-header-icon {
        width: 60px;
        height: 60px;
    }

    .company-header-icon i {
        font-size: 1.5rem;
    }

    .company-header-text h2 {
        font-size: 1.5rem;
    }

    .company-header-text p {
        font-size: 0.9375rem;
    }

    .company-card {
        border-radius: 20px;
    }

    .company-name-section {
        padding: 28px 24px;
    }

    .company-badge {
        width: 60px;
        height: 60px;
    }

    .company-badge i {
        font-size: 1.5rem;
    }

    .company-name-section h3 {
        font-size: 1.125rem;
    }

    .company-details-grid {
        grid-template-columns: 1fr;
    }

    .company-detail-card {
        padding: 24px 20px;
    }

    .company-detail-icon {
        width: 50px;
        height: 50px;
    }

    .company-detail-icon i {
        font-size: 1.25rem;
    }

    .company-detail-label {
        font-size: 12px;
    }

    .company-detail-value {
        font-size: 1rem;
    }

    .company-contact-card {
        padding: 24px 24px;
    }

    .company-contact-icon {
        width: 50px;
        height: 50px;
    }

    .company-contact-icon i {
        font-size: 1.25rem;
    }

    .company-contact-label {
        font-size: 12px;
    }

    .company-contact-text a {
        font-size: 1rem;
    }
}

/* ===== Corporate Page Responsive Styles ===== */

/* Tablet - 992px */
@media screen and (max-width: 992px) {
    .corporate-hero {
        padding: 140px 0 100px;
    }

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

    .corporate-hero-content > p {
        font-size: 1.15rem;
    }

    .corporate-hero-stats {
        gap: 40px;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .corporate-about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-card {
        padding: 60px;
    }

    .about-image-card i {
        font-size: 10rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        padding: 80px 60px;
        min-height: 400px;
    }

    .mission-icon,
    .vision-icon {
        width: 100px;
        height: 100px;
    }

    .mission-icon i,
    .vision-icon i {
        font-size: 3rem;
    }

    .mission-content h3,
    .vision-content h3 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .corporate-cta-card {
        padding: 60px 50px;
        gap: 40px;
    }

    .cta-icon {
        width: 90px;
        height: 90px;
    }

    .cta-icon i {
        font-size: 2.25rem;
    }

    .cta-content h3 {
        font-size: 1.75rem;
    }

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

    .cta-actions .btn {
        width: 100%;
    }
}

/* Mobile - 768px */
@media screen and (max-width: 768px) {
    .corporate-hero {
        padding: 120px 0 80px;
    }

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

    .corporate-hero-content > p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .corporate-hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    .corporate-hero-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .hero-stat-number {
        font-size: 2.25rem;
    }

    .hero-stat-label {
        font-size: 0.9375rem;
    }

    .corporate-about-section {
        padding: 80px 0;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
        min-height: 350px;
    }

    .mission-icon,
    .vision-icon {
        width: 90px;
        height: 90px;
    }

    .mission-icon i,
    .vision-icon i {
        font-size: 2.5rem;
    }

    .mission-content h3,
    .vision-content h3 {
        font-size: 1.75rem;
    }

    .mission-content p,
    .vision-content p {
        font-size: 1rem;
    }

    .corporate-values-section {
        padding: 80px 0;
    }

    .section-header-center {
        margin-bottom: 50px;
    }

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

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

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-card {
        padding: 40px 30px;
    }

    .corporate-why-section {
        padding: 80px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-card {
        padding: 40px 35px;
    }

    .corporate-cta-section {
        padding: 80px 0;
    }

    .corporate-cta-card {
        padding: 50px 40px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

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

/* Small Mobile - 576px */
@media screen and (max-width: 576px) {
    .corporate-hero {
        padding: 100px 0 60px;
    }

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

    .corporate-hero-content > p {
        font-size: 0.9375rem;
    }

    .corporate-hero-stats {
        gap: 24px;
        margin-top: 30px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-stat-label {
        font-size: 0.875rem;
    }

    .corporate-about-section {
        padding: 60px 0;
    }

    .section-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

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

    .lead-text {
        font-size: 1rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature-item {
        padding: 14px 16px;
    }

    .about-feature-item span {
        font-size: 14px;
    }

    .mission-card,
    .vision-card {
        padding: 50px 30px;
        min-height: 300px;
    }

    .mission-icon,
    .vision-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .mission-icon i,
    .vision-icon i {
        font-size: 2.25rem;
    }

    .mission-content h3,
    .vision-content h3 {
        font-size: 1.5rem;
    }

    .mission-content p,
    .vision-content p {
        font-size: 0.9375rem;
    }

    .corporate-values-section {
        padding: 60px 0;
    }

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

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

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

    .value-card {
        padding: 35px 28px;
        border-radius: 20px;
    }

    .value-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .value-icon i {
        font-size: 2rem;
    }

    .value-card h4 {
        font-size: 1.25rem;
    }

    .value-card p {
        font-size: 14px;
    }

    .corporate-why-section {
        padding: 60px 0;
    }

    .why-choose-card {
        padding: 35px 30px;
        border-radius: 20px;
    }

    .why-choose-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .why-choose-icon i {
        font-size: 1.75rem;
    }

    .why-choose-card h4 {
        font-size: 1.25rem;
    }

    .why-choose-card p {
        font-size: 14px;
    }

    .corporate-cta-section {
        padding: 60px 0;
    }

    .corporate-cta-card {
        padding: 40px 30px;
        border-radius: 24px;
        gap: 24px;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .cta-icon i {
        font-size: 2rem;
    }

    .cta-content h3 {
        font-size: 1.375rem;
    }

    .cta-content p {
        font-size: 0.9375rem;
    }

    .cta-actions .btn {
        padding: 16px 32px;
        font-size: 14px;
    }
}

/* ===== Service Areas Page Responsive Styles ===== */

/* Tablet - 992px */
@media screen and (max-width: 992px) {
    .service-hero {
        padding: 140px 0 100px;
    }

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

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

    .service-stats {
        gap: 30px;
    }

    .service-stat-item {
        padding: 20px 28px;
    }

    .service-stat-icon {
        width: 55px;
        height: 55px;
    }

    .service-stat-icon i {
        font-size: 1.5rem;
    }

    .service-stat-number {
        font-size: 1.75rem;
    }

    .locations-section {
        padding: 100px 0;
    }

    .location-filters {
        gap: 12px;
        margin-bottom: 40px;
    }

    .filter-btn {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }

    .filter-btn i {
        font-size: 15px;
    }

    .filter-count {
        font-size: 12px;
        padding: 2px 8px;
        min-width: 26px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .location-card {
        padding: 28px 24px;
    }

    .location-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .location-icon i {
        font-size: 1.5rem;
    }

    .location-content {
        margin-bottom: 18px;
    }

    .location-content h3 {
        font-size: 1.0625rem;
    }

    .location-content p {
        font-size: 13px;
    }

    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-cta-card {
        padding: 60px 50px;
        gap: 40px;
    }

    .service-cta-icon {
        width: 90px;
        height: 90px;
    }

    .service-cta-icon i {
        font-size: 2.25rem;
    }

    .service-cta-content h3 {
        font-size: 1.75rem;
    }

    .service-cta-actions {
        flex-direction: column;
    }

    .service-cta-actions .btn {
        width: 100%;
    }
}

/* Mobile - 768px */
@media screen and (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }

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

    .service-hero-content p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .service-hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    .service-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .service-stat-item {
        width: 100%;
        justify-content: center;
    }

    .locations-section {
        padding: 80px 0;
    }

    .location-filters {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .location-card {
        padding: 30px 26px;
        border-radius: 16px;
    }

    .location-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .location-icon i {
        font-size: 1.75rem;
    }

    .location-content {
        margin-bottom: 20px;
    }

    .location-content h3 {
        font-size: 1.1rem;
    }

    .location-content p {
        font-size: 13px;
    }

    .location-link {
        font-size: 13px;
        padding: 12px 22px;
        max-width: 100%;
        gap: 7px;
    }

    .location-link span {
        font-size: 13px;
    }

    .location-link i {
        font-size: 12px;
    }

    .location-link i {
        font-size: 12px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 50px;
    }

    .pagination-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .pagination-number {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .service-features-section {
        padding: 80px 0;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-feature-card {
        padding: 40px 30px;
    }

    .service-cta-section {
        padding: 80px 0;
    }

    .service-cta-card {
        padding: 50px 40px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .service-cta-content h3 {
        font-size: 1.5rem;
    }

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

/* Small Mobile - 576px */
@media screen and (max-width: 576px) {
    .service-hero {
        padding: 100px 0 60px;
    }

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

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

    .service-stats {
        gap: 16px;
        margin-top: 30px;
    }

    .service-stat-item {
        padding: 18px 24px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .service-stat-icon {
        width: 50px;
        height: 50px;
    }

    .service-stat-icon i {
        font-size: 1.35rem;
    }

    .service-stat-text {
        text-align: center;
    }

    .service-stat-number {
        font-size: 1.5rem;
    }

    .service-stat-label {
        font-size: 0.875rem;
    }

    .locations-section {
        padding: 60px 0;
    }

    .location-filters {
        gap: 8px;
        margin-bottom: 24px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
        gap: 8px;
    }

    .filter-btn i {
        font-size: 14px;
    }

    .filter-btn span:first-of-type {
        display: none;
    }

    .filter-count {
        font-size: 11px;
        padding: 2px 7px;
        min-width: 24px;
    }

    .locations-grid {
        gap: 14px;
        margin-bottom: 30px;
    }

    .location-card {
        padding: 26px 22px;
        border-radius: 14px;
    }

    .location-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .location-icon i {
        font-size: 1.6rem;
    }

    .location-content {
        margin-bottom: 18px;
    }

    .location-content h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .location-content p {
        font-size: 12px;
    }

    .location-link {
        font-size: 12px;
        padding: 11px 20px;
        gap: 6px;
        max-width: 100%;
        border-radius: 10px;
    }

    .location-link span {
        font-size: 12px;
    }

    .location-link i {
        font-size: 11px;
    }

    .pagination {
        gap: 8px;
        margin-top: 40px;
    }

    .pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .pagination-btn span {
        display: none;
    }

    .pagination-btn i {
        margin: 0;
    }

    .pagination-numbers {
        gap: 6px;
    }

    .pagination-number {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .pagination-dots {
        padding: 0 4px;
        font-size: 14px;
    }

    .service-features-section {
        padding: 60px 0;
    }

    .service-feature-card {
        padding: 35px 28px;
        border-radius: 20px;
    }

    .service-feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .service-feature-icon i {
        font-size: 2rem;
    }

    .service-feature-card h4 {
        font-size: 1.25rem;
    }

    .service-feature-card p {
        font-size: 14px;
    }

    .service-cta-section {
        padding: 60px 0;
    }

    .service-cta-card {
        padding: 40px 30px;
        border-radius: 24px;
        gap: 24px;
    }

    .service-cta-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .service-cta-icon i {
        font-size: 2rem;
    }

    .service-cta-content h3 {
        font-size: 1.375rem;
    }

    .service-cta-content p {
        font-size: 0.9375rem;
    }

    .service-cta-actions .btn {
        padding: 16px 32px;
        font-size: 14px;
    }
}

/* ===== City Detail Page Responsive Styles ===== */

/* Tablet - 992px */
@media screen and (max-width: 992px) {
    .city-detail-hero {
        padding: 120px 0 70px;
    }

    .city-detail-hero-content h1 {
        font-size: 2.75rem;
    }

    .city-detail-hero-content p {
        font-size: 1.1rem;
    }

    .city-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .city-offices-section {
        padding: 100px 0;
    }

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .city-why-section {
        padding: 100px 0;
    }

    .city-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .city-cta-section {
        padding: 100px 0;
    }

    .city-cta-card {
        padding: 50px 60px;
        flex-direction: column;
        text-align: center;
    }

    .city-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .city-cta-actions .btn {
        width: 100%;
    }
}

/* Mobile - 768px */
@media screen and (max-width: 768px) {
    .city-detail-hero {
        padding: 100px 0 60px;
    }

    .breadcrumb {
        margin-bottom: 24px;
    }

    .city-detail-hero-content h1 {
        font-size: 2.25rem;
    }

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

    .city-hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    .city-features-section {
        margin-top: -30px;
    }

    .city-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .city-feature-item {
        padding: 20px 24px;
    }

    .city-feature-item i {
        font-size: 1.5rem;
    }

    .city-feature-item span {
        font-size: 14px;
    }

    .city-offices-section {
        padding: 80px 0;
    }

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .office-card {
        padding: 35px 30px;
    }

    .office-icon {
        width: 60px;
        height: 60px;
    }

    .office-icon i {
        font-size: 1.5rem;
    }

    .office-content h3 {
        font-size: 1.25rem;
    }

    .city-why-section {
        padding: 80px 0;
    }

    .city-why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .city-why-card {
        padding: 40px 30px;
    }

    .city-cta-section {
        padding: 80px 0;
    }

    .city-cta-card {
        padding: 40px 40px;
    }

    .city-cta-content h3 {
        font-size: 1.75rem;
    }

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

/* Small Mobile - 576px */
@media screen and (max-width: 576px) {
    .city-detail-hero {
        padding: 90px 0 50px;
    }

    .breadcrumb {
        font-size: 13px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .breadcrumb a,
    .breadcrumb span {
        font-size: 13px;
    }

    .city-detail-hero-content h1 {
        font-size: 1.875rem;
    }

    .city-detail-hero-content p {
        font-size: 0.9375rem;
    }

    .city-features-section {
        margin-top: -25px;
    }

    .city-feature-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .city-feature-item i {
        font-size: 1.35rem;
    }

    .city-feature-item span {
        font-size: 13px;
    }

    .city-offices-section {
        padding: 60px 0;
    }

    .offices-grid {
        gap: 20px;
    }

    .office-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .office-icon {
        width: 55px;
        height: 55px;
        border-radius: 16px;
    }

    .office-icon i {
        font-size: 1.35rem;
    }

    .office-content {
        margin-bottom: 20px;
    }

    .office-content h3 {
        font-size: 1.125rem;
        margin-bottom: 14px;
    }

    .office-detail {
        gap: 10px;
        margin-bottom: 10px;
    }

    .office-detail i {
        font-size: 14px;
    }

    .office-detail p,
    .office-detail a {
        font-size: 13px;
    }

    .office-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .city-why-section {
        padding: 60px 0;
    }

    .city-why-grid {
        gap: 20px;
    }

    .city-why-card {
        padding: 35px 28px;
        border-radius: 20px;
    }

    .city-why-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .city-why-icon i {
        font-size: 2rem;
    }

    .city-why-card h4 {
        font-size: 1.25rem;
    }

    .city-why-card p {
        font-size: 14px;
    }

    .city-cta-section {
        padding: 60px 0;
    }

    .city-cta-card {
        padding: 35px 30px;
        border-radius: 24px;
        gap: 24px;
    }

    .city-cta-content h3 {
        font-size: 1.5rem;
    }

    .city-cta-content p {
        font-size: 0.9375rem;
    }

    .city-cta-actions .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}
