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

.form-control:focus {
  box-shadow: none !important;
  border-color: #ced4da !important; /* màu default */
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: #f8f9fa;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.form-select {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
}
/* Hero Section */
.hero-section {
    background:
        linear-gradient(135deg, rgba(43, 43, 43, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%),
        url('https://images.unsplash.com/photo-1619767886558-efdc259cde1a?w=1600&q=80') center/cover no-repeat;
    padding: 60px 0;
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-container {
    text-align: center;
}

.hero-logo {
    width: 150px;
    height: 150px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-24h {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
}

.location-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    border: 2px solid #ffc107;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
}

.title-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.title-main i {
    font-size: 2.5rem;
}

.text-highlight {
    color: #ffc107;
    display: inline-block;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 2;
    color: #e0e0e0;
}

.hero-subtitle i {
    color: #ffc107;
    margin-right: 10px;
}

.subtitle-item {
    display: inline-block;
    margin-right: 15px;
    white-space: nowrap;
}

/* Phone Button */
.btn-phone {
    background: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-phone:hover {
    background: #ffb300;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

.btn-phone-large {
    background: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-phone-large:hover {
    background: #ffb300;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Price Box */
.price-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.price-title {
    color: #2b2b2b;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ffc107;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: #fff9e6;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.2);
}

.price-icon {
    width: 50px;
    height: 50px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-icon i {
    font-size: 1.5rem;
    color: #000;
}

.price-info {
    flex: 1;
}

.price-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #2b2b2b;
}

.price-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.price-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffc107;
    white-space: nowrap;
}

/* Hero Form Container */
.hero-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #ffc107;
}

.hero-form-title {
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffc107;
}

.hero-form-title i {
    color: #ffc107;
    margin-right: 8px;
}

.hero-form-container .form-control {
    padding: 10px 12px;
    font-size: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
}

.hero-form-container .form-control:focus {
    border-color: #ffc107;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
    outline: none;
}

.hero-form-container .btn-submit {
    padding: 12px 20px;
    font-size: 1.1rem;
}

.hero-form-container .btn-swap-hero {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
}

/* Price Section */
.price-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.price-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.price-card:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.price-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.price-card-icon i {
    font-size: 1.5rem;
    color: #000;
}

.price-card h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.price-card-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.price-card-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffc107;
}

/* Booking Form Section (legacy) */
.booking-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.booking-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffc107;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.booking-form label i {
    color: #ffc107;
    margin-right: 8px;
}

.booking-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.booking-form .form-control:focus {
    outline: none;
    border-color: #ffc107;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

/* Bootstrap Validation Styles - Only show on submit */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545 !important;
    background-image: none;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #e0e0e0;
    background-image: none;
}

.was-validated .form-control:focus:valid,
.was-validated .form-select:focus:valid {
    border-color: #ffc107;
}

.invalid-feedback {
    font-size: 0.8rem;
    margin-top: 4px;
}

.hero-form-container .invalid-feedback {
    font-size: 0.75rem;
    margin-top: 2px;
}

.booking-form select.form-control,
.booking-form .form-select {
    cursor: pointer;
}

.booking-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffc107 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    margin-right: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Location Swap Button */
.location-swap-container {
    position: relative;
}

.btn-swap-location {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 193, 7, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-swap-location:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffc107 100%);
    transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.btn-swap-location:active {
    transform: translate(-50%, -50%) rotate(180deg) scale(0.95);
}

.btn-swap-location i {
    transition: transform 0.3s ease;
}

/* Services Section */
.services-section {
    background: #fff;
    padding: 60px 0;
}

.section-title {
    color: #2b2b2b;
    font-weight: bold;
    font-size: 2rem;
}

.section-title i {
    color: #ffc107;
}

/* Service Card Small */
.service-card-small {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-small:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 1.5rem;
    color: #000;
}

.service-card-small h4 {
    color: #2b2b2b;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-tag {
    color: #ffc107;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-desc {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    padding: 50px 0;
    color: #fff;
}

.footer-title {
    color: #ffc107;
    font-weight: bold;
    font-size: 1.8rem;
}

.footer-note {
    color: #e0e0e0;
    font-size: 1rem;
}

.footer-note i {
    color: #ffc107;
    margin-right: 8px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-phone {
    background: #ffc107;
    color: #000;
    animation: ring 2s ease-in-out infinite;
}

.floating-phone:hover {
    background: #ffb300;
    color: #000;
}

.floating-zalo {
    background: #0068FF;
    color: #fff;
    padding: 10px;
}

.floating-zalo:hover {
    background: #0052CC;
    color: #fff;
}

.floating-zalo svg {
    display: block;
}

/* Ring Animation for Phone Button */
@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .text-highlight {
        font-size: 2.3rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-section {
        padding: 50px 0;
    }

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

    .text-highlight {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .price-box {
        margin-top: 30px;
    }

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

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .badge-24h {
        font-size: 0.9rem;
        padding: 8px 18px;
        margin-bottom: 15px;
    }

    .location-badge {
        font-size: 0.9rem;
        padding: 8px 18px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .title-main {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-right: 0;
    }

    .title-main i {
        font-size: 2rem;
    }

    .text-highlight {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 2;
        margin-bottom: 25px;
    }

    .btn-phone {
        font-size: 1.3rem;
        padding: 14px 35px;
        display: inline-block;
        width: auto;
    }

    .btn-phone-large {
        font-size: 1.5rem;
        padding: 16px 40px;
        display: inline-block;
        width: auto;
    }

    /* Hero Form - 768px */
    .hero-form-container {
        padding: 20px;
        margin-top: 30px;
    }

    .hero-form-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .hero-form-container .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .hero-form-container .btn-submit {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .hero-form-container .btn-swap-hero {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    /* Price Section - 768px */
    .price-section {
        padding: 40px 0;
    }

    .price-card {
        padding: 20px 12px;
        margin-bottom: 15px;
    }

    .price-card-icon {
        width: 50px;
        height: 50px;
    }

    .price-card-icon i {
        font-size: 1.2rem;
    }

    .price-card h4 {
        font-size: 0.9rem;
    }

    .price-card-desc {
        font-size: 0.75rem;
    }

    .price-card-value {
        font-size: 1.1rem;
    }

    .booking-section {
        padding: 50px 0;
    }

    .booking-form-container {
        padding: 30px 25px;
    }

    .btn-submit {
        font-size: 1.2rem;
        padding: 14px 35px;
    }

    .services-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }

    .service-card-small {
        padding: 30px 20px;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

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

    .service-card-small h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .price-tag {
        font-size: 1.3rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }

    .footer-section {
        padding: 50px 0;
    }

    .footer-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .footer-note {
        font-size: 0.95rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }

    .floating-zalo svg {
        width: 30px;
        height: 30px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .badge-24h {
        font-size: 0.85rem;
        padding: 7px 16px;
        margin-bottom: 12px;
    }

    .location-badge {
        font-size: 0.85rem;
        padding: 7px 16px;
        margin-bottom: 15px;
        display: inline-block;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.4;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .title-main {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 1.8rem;
    }

    .title-main i {
        font-size: 1.6rem;
    }

    .text-highlight {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 25px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .hero-subtitle i {
        font-size: 0.9rem;
    }

    .subtitle-item {
        display: inline-flex;
        align-items: center;
        margin-right: 0;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .subtitle-item i {
        margin-right: 5px;
    }

    .btn-phone {
        font-size: 1.2rem;
        padding: 13px 32px;
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }

    .btn-phone i {
        font-size: 1.1rem;
    }

    .btn-phone-large {
        font-size: 1.3rem;
        padding: 14px 35px;
        width: 90%;
        max-width: 340px;
        margin: 0 auto;
        display: block;
    }

    /* Hero Form - 576px */
    .hero-form-container {
        padding: 15px;
        margin-top: 25px;
    }

    .hero-form-title {
        font-size: 1rem;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .hero-form-container .form-control {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .hero-form-container textarea.form-control {
        min-height: 40px;
    }

    .hero-form-container .btn-submit {
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    .hero-form-container .btn-swap-hero {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
        top: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .hero-form-container .btn-swap-hero:hover {
        transform: translate(-50%, -50%) rotate(270deg) scale(1.1);
    }

    /* Price Section - 576px */
    .price-section {
        padding: 30px 0;
    }

    .price-card {
        padding: 15px 8px;
    }

    .price-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .price-card-icon i {
        font-size: 1rem;
    }

    .price-card h4 {
        font-size: 0.8rem;
    }

    .price-card-desc {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    .price-card-value {
        font-size: 1rem;
    }

    .booking-section {
        padding: 40px 0;
    }

    .booking-form-container {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .booking-form label {
        font-size: 0.9rem;
    }

    .booking-form .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .btn-submit {
        font-size: 1.1rem;
        padding: 12px 30px;
    }

    .services-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .service-card-small {
        padding: 25px 18px;
        margin-bottom: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

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

    .service-card-small h4 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .price-tag {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .service-desc {
        font-size: 0.88rem;
    }

    .footer-section {
        padding: 40px 0;
    }

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

    .footer-note {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .floating-buttons {
        bottom: 18px;
        right: 18px;
        gap: 12px;
    }

    .floating-btn {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .floating-zalo svg {
        width: 29px;
        height: 29px;
    }

    /* Better spacing for mobile */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Very Small Mobile */
@media (max-width: 375px) {
    .hero-section {
        padding: 35px 0;
    }

    .badge-24h {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .location-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: 1.6rem;
        gap: 6px;
    }

    .title-main {
        font-size: 1.6rem;
        gap: 5px;
    }

    .title-main i {
        font-size: 1.4rem;
    }

    .text-highlight {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
        gap: 6px;
    }

    .subtitle-item {
        font-size: 0.85rem;
    }

    .subtitle-item i {
        margin-right: 4px;
        font-size: 0.8rem;
    }

    .btn-phone {
        font-size: 1.1rem;
        padding: 12px 28px;
        width: 95%;
    }

    .btn-phone-large {
        font-size: 1.2rem;
        padding: 13px 30px;
        width: 95%;
    }

    /* Hero Form - 375px */
    .hero-form-container {
        padding: 12px;
        margin-top: 20px;
    }

    .hero-form-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    .hero-form-container .form-control {
        padding: 7px 8px;
        font-size: 0.8rem;
    }

    .hero-form-container textarea.form-control {
        min-height: 35px;
    }

    .hero-form-container .btn-submit {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .hero-form-container .btn-swap-hero {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        top: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .hero-form-container .btn-swap-hero:hover {
        transform: translate(-50%, -50%) rotate(270deg) scale(1.1);
    }

    /* Price Section - 375px */
    .price-section {
        padding: 25px 0;
    }

    .price-card {
        padding: 12px 6px;
    }

    .price-card-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    .price-card-icon i {
        font-size: 0.9rem;
    }

    .price-card h4 {
        font-size: 0.75rem;
    }

    .price-card-desc {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .price-card-value {
        font-size: 0.9rem;
    }

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

    .service-card-small {
        padding: 22px 15px;
    }

    .service-card-small h4 {
        font-size: 1rem;
    }

    .price-tag {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-note {
        font-size: 0.85rem;
    }

    .booking-form-container {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .booking-form label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .booking-form .form-control {
        padding: 10px;
        font-size: 0.9rem;
    }

    .btn-submit {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .form-message {
        font-size: 0.9rem;
        padding: 12px;
    }

    .btn-swap-location {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .btn-swap-location:hover {
        transform: translate(-50%, -50%) rotate(270deg) scale(1.1);
    }

    .btn-swap-location:active {
        transform: translate(-50%, -50%) rotate(270deg) scale(0.95);
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-zalo svg {
        width: 27px;
        height: 27px;
    }
}

