* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    color: #333;
    min-height: 100vh;
    padding: 15px;
    justify-content: center;
    align-items: center;
}

.nav-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px hsla(0, 0%, 77.6%, .25);
    position: relative;
}

.nav-bar_left {
    display: flex;
    align-items: center;
}

.nav-bar_logo {
    font-size: 23pt;
    font-weight: bold;
    color: #333;
    margin-left: 150px;
}

.nav-bar_right {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 150px;
}
.nav-login-btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-bar_menu{
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-bar_menu a {
    font-size: 15pt;
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-bar_menu a:hover {
    color: #ff0000;
}

.form_button {
    display: flex;
}


@media (max-width: 992px) {
    .nav-bar_logo {
        margin-left: 20px;
    }

    .nav-bar_right {
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        padding: 10px 15px;
    }

    .nav-bar_logo {
        font-size: 18pt;
        margin-left: 0;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-bar_right {
        margin-right: 0;
    }

    .nav-bar_menu {
        position: absolute;
        top: 60px;
        right: 0;
        flex-direction: column;
        background: white;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        min-width: 200px;
        display: none;
        gap: 10px;
        z-index: 1000;
    }

    .nav-bar_menu.show {
        display: flex;
    }

    .nav-bar_menu a {
        font-size: 13pt;
        padding: 8px 0;
    }

    .nav-bar_menu .form_button {
        width: 100%;
    }

    .nav-bar_menu .btn-action {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .nav-bar {
        margin-bottom: 15px;
    }

    .nav-bar_logo {
        font-size: 16pt;
    }

    .nav-bar_menu {
        top: 55px;
    }
}

.slider {
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.slider img {
  position: absolute;
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fade 9s infinite;
}

.slider img:nth-child(1) {
  animation-delay: 0s;
}

.slider img:nth-child(2) {
  animation-delay: 3s;
}

.slider img:nth-child(3) {
  animation-delay: 6s;
}
.search-bar {
            display: flex;
            align-items: center;
            background: white;
            border: 1px solid #ddd;
            border-radius: 25px;
            padding: 8px 15px;
            margin: 0 30px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .search-bar input {
            border: none;
            outline: none;
            background: none;
            font-size: 14px;
            width: 200px;
            color: #333;
        }

        .search-bar input::placeholder {
            color: #999;
        }

        .search-bar button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            color: #667eea;
            margin-left: 10px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }

        .search-bar button:hover {
            color: #764ba2;
        }
          @media (max-width: 768px) {
            .search-bar {
                width: 100%;
                margin: 10px 0;
            }

            .search-bar input {
                width: 100%;
            }
        }
@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
    .slider {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 200px;
    }

    .slider img {
        width: 95%;
        border-radius: 10px;
    }
}

.home_form{
    font-family: "Segoe UI", sans-serif;
    background: #0e0e0f;
    max-width: 766px;
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    margin: 30px auto;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.content-center h2{
    color: white;
    text-align: center;
    font-size: 24px;
}

.slogan{
    color: #cfcfcf;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.form_input input{
    width: 72%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #1c1c1e;
    color: white;
    margin-left: 20px;
    font-size: 14px;
}

.form_input input::placeholder{
    color: #bfbfbf;
}

.form_input{
    display: flex;
    margin-top: 20px;
    text-align: center;
    justify-content: space-between;
    margin-right: 20px;
    gap: 10px;
}


@media (max-width: 768px) {
    .home_form {
        padding: 15px;
        margin: 20px auto;
    }

    .content-center h2 {
        font-size: 20px;
    }

    .form_input {
        flex-direction: column;
        margin-right: 0;
    }

    .form_input input {
        width: 100%;
        margin-left: 0;
    }

    .form_input .form_button {
        width: 100%;
    }

    .form_input .btn-action {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .home_form {
        padding: 12px;
        margin: 15px auto;
    }

    .content-center h2 {
        font-size: 18px;
    }

    .slogan {
        font-size: 12px;
    }

    .form_input input {
        padding: 10px;
        font-size: 12px;
    }
}



.btn-action{
    background: #00bcd4;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-action:hover{
    background: #0097a7;
}

.services-section {
    margin: 40px auto;
    max-width: 1200px;
    padding: 30px 20px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #0e3a80;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #0e3a80;
}

.services-grid {
    display: grid;
    gap: 25px;
}

.services-3col {
    grid-template-columns: repeat(3, 1fr);
}

.services-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
}

.service-card {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    color: #0e3a80;
    font-size: 16px;
    padding: 15px 15px 10px;
    margin: 0;
}

.service-card .price {
    color: #666;
    font-size: 13px;
    padding: 0 15px;
    margin: 5px 0;
}


@media (max-width: 992px) {
    .services-section {
        padding: 20px 15px;
        margin: 30px auto;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .services-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-2col {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card img {
        height: 180px;
    }

    .service-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 15px 10px;
        margin: 20px auto;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .services-3col,
    .services-2col {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 15px;
    }

    .service-card img {
        height: 150px;
    }

    .service-card h3 {
        font-size: 14px;
        padding: 12px 12px 8px;
    }

    .service-card .price {
        font-size: 12px;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 10px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 10px;
        padding-left: 10px;
    }

    .service-card img {
        height: 120px;
    }

    .service-card h3 {
        font-size: 13px;
        padding: 10px;
    }

    .service-card .price,
    .service-card .learn-more {
        padding: 0 10px;
    }
}


.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top:hover {
    background: #062955;
    bottom: 105px;
}

.back-to-top.show {
    display: flex;
}


.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 98;
}

.call-button:hover {
    background: #0097a7;
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.6);
    transform: scale(1.1);
}


@media (max-width: 480px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 85px;
        right: 10px;
    }

    .back-to-top:hover {
        bottom: 90px;
    }

    .call-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 15px;
        right: 10px;
    }
}



.carousel-section {
    margin: 50px auto;
    max-width: 1200px;
    padding: 30px 20px;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 15px;
}

.carousel-title {
    font-size: 24px;
    font-weight: bold;
    color: #0e3a80;
    margin: 0;
    border-left: 4px solid #0e3a80;
    padding-left: 15px;
}

.view-more {
    color: #00bcd4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-more:hover {
    color: #0097a7;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    background: #0e3a80;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #00bcd4;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
    margin: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.carousel-item {
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
}

.carousel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.carousel-card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.carousel-card h4 {
    font-size: 15px;
    color: #0e3a80;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.carousel-price {
    font-size: 14px;
    color: #00bcd4;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.carousel-card-btn {
    align-self: center;
    background: #131414;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.carousel-card-btn:hover {
    background: #00bcd4;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(33.33% - 15px);
    }

    .carousel-wrapper {
        margin: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 20px 15px;
        margin: 35px auto;
    }

    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .carousel-title {
        font-size: 20px;
        padding-left: 15px;
        border-left: 4px solid #0e3a80;
    }

    .view-more {
        font-size: 12px;
    }

    .carousel-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 150px;
    }

    .carousel-wrapper {
        margin: 0 45px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .carousel-card img {
        height: 150px;
    }

    .carousel-card-content {
        padding: 12px;
    }

    .carousel-card h4 {
        font-size: 13px;
    }

    .carousel-price {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        padding: 15px 10px;
        margin: 25px auto;
    }

    .carousel-title {
        font-size: 18px;
        padding-left: 12px;
    }

    .carousel-item {
        flex: 0 0 calc(100% - 10px);
        min-width: 100%;
    }

    .carousel-wrapper {
        margin: 0 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .carousel-card img {
        height: 140px;
    }

    .carousel-track {
        gap: 15px;
    }
}


.footer {
    background: #0a0e27;
    color: white;
    padding: 60px 20px 40px;
    margin-top: 80px;
    border-top: 3px solid #00bcd4;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 12px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list li {
    font-size: 14px;
    line-height: 1.6;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.footer-list a:hover {
    color: #00bcd4;
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info .label {
    font-weight: 600;
    color: #00bcd4;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 14px;
}

.contact-info span {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.payment-section {
    background: rgba(0, 188, 212, 0.08);
    padding: 20px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.payment-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: white;
    padding: 4px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.payment-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 188, 212, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.8;
}


.about-section {
    max-width: 1000px;
    width: 9000px;
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-header h2 {
    font-size: 32px;
    color: #333;
    margin: 0 0 12px 0;
    font-weight: bold;
}

.about-slogan {
    font-size: 16px;
    color: #0e3a80;
    margin: 0;
    font-weight: 500;
}

.about-content {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 25px;
    text-align: justify;
    color: #555;
}

.about-content strong {
    color: #333;
    font-weight: 600;
}

.about-content h3 {
    color: #0e3a80;
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0 30px 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 10px;
    border-left: 4px solid #0e3a80;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.15);
    background: #f0f8fb;
}

.feature-item h4 {
    color: #0e3a80;
    font-size: 16px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.values-section {
    background: #f0f8fb;
    padding: 25px 20px;
    border-radius: 10px;
    border-left: 4px solid #0e3a80;
    margin: 25px 0;
}

.values-section p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}




@media (max-width: 1024px) {
    .about-section {
        width: 85%;
        padding: 35px 25px;
    }

    .about-header h2 {
        font-size: 28px;
    }

    .about-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        width: 90%;
        padding: 30px 20px;
        margin: 20px auto;
        border-radius: 12px;
    }

    .about-header h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .about-slogan {
        font-size: 14px;
    }

    .about-content {
        font-size: 14px;
    }

    .about-content p {
        margin-bottom: 20px;
        text-align: justify;
    }

    .about-content h3 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 15px 0 25px 0;
    }

    .feature-item {
        padding: 20px;
        border-left-width: 4px;
    }

    .feature-item h4 {
        font-size: 15px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .values-section {
        padding: 20px;
    }

    .values-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-section {
        width: 95%;
        padding: 20px 15px;
        margin: 15px auto;
    }

    .about-header {
        margin-bottom: 20px;
    }

    .about-header h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .about-slogan {
        font-size: 13px;
    }

    .about-content {
        font-size: 13px;
    }

    .about-content p {
        margin-bottom: 15px;
        text-align: left;
    }

    .about-content h3 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .features-list {
        gap: 12px;
        margin: 12px 0 20px 0;
    }

    .feature-item {
        padding: 15px;
        border-left-width: 3px;
    }

    .feature-item h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .values-section {
        padding: 15px;
    }

    .values-section p {
        font-size: 13px;
    }
}


@media (max-width: 1200px) {
    .footer-container {
        gap: 50px;
    }

    .footer-title {
        font-size: 14px;
    }

    .footer-list a {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

    .footer {
        padding: 50px 20px 35px;
    }

    .payment-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer {
        padding: 40px 15px 30px;
        margin-top: 60px;
    }

    .footer-title {
        font-size: 13px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .footer-list {
        gap: 12px;
    }

    .footer-list a {
        font-size: 13px;
    }

    .payment-section {
        max-width: 100%;
    }

    .payment-icons {
        gap: 8px;
    }

    .payment-icon {
        width: 38px;
        height: 38px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer {
        padding: 30px 12px 20px;
        margin-top: 40px;
    }

    .footer-title {
        font-size: 12px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .footer-list {
        gap: 10px;
    }

    .footer-list a {
        font-size: 12px;
    }

    .footer-list li {
        font-size: 12px;
    }

    .contact-info .label {
        font-size: 11px;
    }

    .contact-info span {
        font-size: 13px;
    }

    .payment-title {
        font-size: 12px;
    }

    .payment-icons {
        gap: 6px;
    }

    .payment-icon {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        font-size: 11px;
        padding-top: 15px;
    }
}
.search-bar {
    position: relative;
}


.search-dropdown {
    display: none;              
    position: absolute;        
    top: calc(100% + 6px);     
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 9999;              
    max-height: 320px;
    overflow-y: auto;
    padding: 6px 0;
}


.search-dropdown.show {
    display: block;
}


.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    gap: 10px;
}

.search-result-item:hover {
    background: #f0f8ff;
}


.search-result-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    flex: 1;
}


.search-result-price {
    font-size: 13px;
    color: #00bcd4;
    font-weight: 600;
    white-space: nowrap;
}


.search-loading {
    padding: 14px 16px;
    font-size: 14px;
    color: #999;
    text-align: center;
}


.search-no-result {
    padding: 14px 16px;
    font-size: 14px;
    color: #aaa;
    text-align: center;
}

.user-menu-wrapper {
    position: relative;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.user-avatar-btn:hover {
    background: #cc0000;
}

.user-avatar-btn .avatar-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}

.user-avatar-btn .chevron {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.user-avatar-btn.open .chevron {
    transform: rotate(180deg);
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 210px;
    z-index: 1000;
    overflow: hidden;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.user-dropdown.show {
    display: block;
}

.user-dropdown-header {
    padding: 14px 16px;
    background: #fff5f5;
    border-bottom: 1px solid #ffe0e0;
}

.user-dropdown-header .user-fullname {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.user-dropdown-header .user-phone {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.user-dropdown-item:hover {
    background: #fff5f5;
    color: #ff0000;
}

.user-dropdown-item .item-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.user-dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

.user-dropdown-item.logout-item {
    color: #cc0000;
}

.user-dropdown-item.logout-item:hover {
    background: #fff0f0;
}


.booking-message {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: #00bcd4;
    font-weight: 600;
}

.booking-message.error {
    color: #ff4d4f;
}

.booking-message.success {
    color: #00c853;
}