/* Global Styles */
:root {
    --primary-color: #198754;
    --secondary-color: #343a40;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --danger-color: #dc3545;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-warning {
    color: var(--dark-color);
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: var(--dark-color);
}

.divider {
    width: 80px;
    height: 4px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 120px;
}

.main-nav .nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Banner Styles */
.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-banner h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services Styles */
.service-card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
}

/* Booking Form Styles */
.booking-form {
    position: relative;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--light-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.booking-form .card {
    border-radius: 10px;
    overflow: hidden;
}

.booking-form .form-control,
.booking-form .form-select {
    padding: 12px 15px;
    border-radius: 5px;
}

/* Why Choose Us Styles */
.feature-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Price List Styles */
.table th {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

/* Testimonials Styles */
.testimonials .carousel-item {
    padding: 20px;
}

.testimonial-item {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.testimonial-img img {
    border: 3px solid var(--primary-color);
}

.rating {
    font-size: 1.2rem;
}

/* FAQ Styles */
.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--dark-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Call to Action Styles */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--light-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* Footer Styles */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.footer-logo img {
    border-radius: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color) !important;
    transform: translateY(-3px);
}

/* Fixed Call Button */
.fixed-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-banner .lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .header .logo {
        text-align: center;
       /* margin-bottom: 15px;*/
    }

    .header .btn {
        display: block;
        margin: 0 auto;
    }

    .hero-banner {
        min-height: 400px;
    }

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

    .testimonial-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 350px;
    }

    .hero-banner h1 {
        font-size: 1.75rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .btn-circle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
/* Thêm vào file style.css */
.small {
    font-size: 0.8rem;
    display: block;
    line-height: 1.2;
    margin-top: 5px;
}

/* Điều chỉnh cho nút trong header */
.header .nav-link {
    padding: 0.5rem 0.8rem;
    line-height: 1.2;
}

/* Điều chỉnh cho nút GỌI NGAY */
.btn-warning .small {
    color: var(--dark-color);
    font-weight: normal;
}
.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #4CAF50;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #4CAF50;
    --bs-btn-hover-border-color: #146c43;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}



