* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
}

/* HEADER */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 150, 136, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    color: #009688;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00bfa5, #009688);
    border-radius: 8px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.nav {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav a {
    text-decoration: none;
    color: #484848;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav a:hover {
    color: #00bfa5;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00bfa5;
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.call-btn {
    background: linear-gradient(135deg, #00bfa5, #009688);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #009688;
}

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav {
        flex-direction: column;
        gap: 0;
    }

    .nav li {
        border-bottom: 1px solid #eee;
    }

    .nav a {
        padding: 14px 20px;
        display: block;
        font-size: 15px;
    }

    .call-btn {
        display: none;
    }
}


/* HERO SECTION */
.hero-section {
    padding: 50px 0;
}

.hero-badge {
    display: inline-block;
    background: #e6faf4;
    color: #0aa87a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    color: #0b1320;
}

.hero-title span {
    color: #0aa87a;
}

.hero-text {
    color: #5f6c7b;
    font-size: 20px;
    margin: 20px 0 30px;
    padding: 0 50px 0px 0px;
}

.hero-stats {
    display: flex;
    gap: 90px;
    margin-bottom: 30px;
}

.hero-stats h4 {
    color: #0aa87a;
    font-size: 30px;
    font-weight: 700;
}

.hero-stats p {
    font-size: 14px;
    color: #6c757d;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .first-btn {
    font-size: 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .first-btn:hover {
    transform: translateY(-2px);
}

.hero-buttons .second-btn {
    color: #000;
    font-size: 18px;
    border: 1px solid #e2e8f0 !important;
    border-radius: 30px;
}

.hero-buttons .second-btn:hover {
    color: #00695c;
    background: #fff;
    border: 1px solid #009688 !important;
}

.hero-image img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 20px 35px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floating-card i {
    font-size: 20px;
    color: #0aa87a;
    background: #d0fae5;
    padding: 10px;
    border-radius: 8px;
}

.floating-card p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
}

.top-card {
    top: -20px;
    right: -10px;
}

.bottom-card {
    bottom: -20px;
    left: -10px;
}

@media (max-width: 992px) {

    .hero-title {
        font-size: 44px;
    }

    .hero-text {
        font-size: 18px;
        padding-right: 0;
    }

    .hero-stats {
        gap: 40px;
    }

    .hero-image img {
        height: 420px;
    }

    .top-card {
        top: 10px;
        right: 10px;
    }

    .bottom-card {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 30px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 16px;
        margin: 15px 0 25px;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 260px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-image img {
        height: auto;
        max-height: 360px;
    }

    .floating-card {
        padding: 14px 20px;
        gap: 10px;
    }

    .floating-card i {
        font-size: 16px;
        padding: 8px;
    }

    .top-card {
        top: 15px;
        right: 15px;
    }

    .bottom-card {
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 30px;
    }

    .hero-stats {
        /* flex-direction: column; */
        gap: 15px;
    }

    .floating-card {
        display: none;
    }
}


/* SERVICE SECTION */
.services-section {
    padding: 90px 0;
    font-family: 'Segoe UI', sans-serif;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #d0fae5;
    color: #0aa87a;
    font-size: 13px;
    font-weight: 500;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0b1320;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 10px auto 0;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    transition: 0.3s ease;
}

.service-card:hover {
    border-color: #0aa87a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h5 {
    font-weight: 700;
    font-size: 20px;
    margin-top: 20px;
}

.service-card .desc {
    font-size: 16px;
    color: #6b7280;
    margin: 12px 0;
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.12);
}

.blue {
    background: #2563eb;
}

.green {
    background: #0aa87a;
}

.purple {
    background: #9333ea;
}

.orange {
    background: #f59e0b;
}

.service-card ul {
    padding-left: 18px;
    margin-bottom: 25px;
}

.service-card ul li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
}

.service-card ul li::marker {
    color: #00bc7d;
}

.book-btn {
    width: 100% !important;
    background: #f5f8fb !important;
    border-radius: 10px !important;
    padding: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0b1320 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.book-btn:hover {
    background: #0aa87a !important;
    color: #ffffff !important;
}

@media (max-width: 992px) {

    .section-title {
        font-size: 38px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-card {
        padding: 25px 22px;
    }

    .service-card h5 {
        font-size: 18px;
    }

    .service-card .desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }

    /* .service-card {
        text-align: center;
    } */

    /* .icon-box {
        margin: 0 auto;
    } */

    .service-card ul {
        padding-left: 0;
        list-style: none;
    }

    .service-card ul li {
        font-size: 14px;
        position: relative;
        padding-left: 18px;
        text-align: left;
    }

    .service-card ul li::before {
        content: "✔";
        color: #0aa87a;
        position: absolute;
        left: 0;
        top: 0;
    }

    .book-btn {
        font-size: 15px !important;
        padding: 12px !important;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 22px 18px;
    }

    .icon-box {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}


/* CATEGORY */
.category-section {
    padding: 90px 0;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.category-tabs li {
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #0b1320;
    background: #f3f6fb;
    transition: all 0.3s ease;
}

.category-tabs li.active,
.category-tabs li:hover {
    background: #0aa87a;
    color: #ffffff;
}

.category-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 22px 30px;
    text-align: center;
    border: 1px solid #e5edf5;
    transition: all 0.35s ease;
    height: 100%;
}

.category-card:hover {
    border-color: #0aa87a;
}

.car-img {
    background: #f4fdf9;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}

.car-img img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 6px;
}

.car-tag {
    display: inline-block;
    background: rgba(10, 168, 122, 0.12);
    color: #0aa87a;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.book-now-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 24px;
    background: #f1f3f6;
    color: #0b1320;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: #0aa87a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 168, 122, 0.35);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.car-company {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 12px;
    display: block;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.slider {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.category-card {
    min-width: calc(33.333% - 16px);
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0aa87a;
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.slide-arrow.left {
    left: -20px;
}

.slide-arrow.right {
    right: -20px;
}

.slide-arrow:hover {
    background: #088c66;
}

/* ===== RESPONSIVE FIX ===== */
@media (min-width: 993px) {
    #sedan .slide-arrow {
        display: none;
    }
}

@media (max-width: 992px) {
    .category-card {
        min-width: calc(50% - 12px);
    }

    .car-img img {
        height: 180px;
    }

    .slide-arrow.left {
        left: -14px;
    }

    .slide-arrow.right {
        right: -14px;
    }
}

@media (max-width: 768px) {

    .category-tabs {
        gap: 10px;
    }

    .category-tabs li {
        padding: 8px 18px;
        font-size: 13px;
    }

    .slider-wrapper {
        padding: 0 10px;
    }

    .category-card {
        min-width: 100%;
    }

    .car-img {
        padding: 14px;
    }

    .car-img img {
        height: 160px;
    }

    .slide-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .slide-arrow.left {
        left: 0;
    }

    .slide-arrow.right {
        right: 0;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .category-card h5 {
        font-size: 15px;
    }

    .car-company {
        font-size: 12px;
    }

    .book-now-btn {
        padding: 9px 20px;
        font-size: 13px;
    }
}


/* FEATURE SECTION */
.features-section {
    padding: 90px 0;
    background: #f5f8fb;
    font-family: 'Segoe UI', sans-serif;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    border-color: #0aa87a;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #0aa87a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b1320;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 20px 40px 0 0;
}

/* FEATURES RESPONSIVE */
@media (max-width: 992px) {
    .feature-card {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    /* 
    .feature-card {
        text-align: center;
    } */

    /* .feature-icon {
        margin-left: auto;
        margin-right: auto;
    } */

    .feature-card p {
        margin-right: 0;
    }
}


/* BOOKING FORM */
.booking-section {
    padding: 90px 0;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.booking-text {
    font-size: 18px;
    color: #6b7280;
    margin: 20px 0 35px;
}

.booking-points {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.point-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.point-item h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.point-item p {
    font-size: 13px;
    color: #6b7280;
}

.point-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.greens {
    background: #0aa87a;
}

.teals {
    background: #41e4c2;
}

.purples {
    background: #cc9dff;
}

.booking-form-card {
    background: #edfdf7;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.booking-form-card label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #0b1320;
}

.booking-form-card .form-control {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    background: #edfdf7;
    border: 1px solid #0000001a;
}

.booking-input input {
    background: #edfdf7 !important;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #0aa87a;
    font-size: 15px;
}

.input-icon .form-control {
    padding-left: 42px;
}

.input-icon .form-control:focus {
    border-color: #0aa87a;
    box-shadow: 0 0 0 3px rgba(10, 168, 122, 0.15);
}


.booking-input input:focus {
    border: 1px solid #00bc7d !important;
    box-shadow: none !important;
}

.booking-btn {
    width: 100% !important;
    background: linear-gradient(135deg, #0bbf8a, #059669) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px !important;
    border-radius: 14px !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.booking-btn:hover {
    transform: translateY(-2px);
}

/* BOOKING RESPONSIVE */
@media (max-width: 992px) {
    .booking-section {
        padding: 70px 0;
    }

    .booking-form-card {
        padding: 28px;
    }
}

@media (max-width: 768px) {

    .booking-section .section-title {
        font-size: 30px;
    }

    .booking-text {
        font-size: 16px;
    }

    .booking-points {
        gap: 18px;
    }

    .booking-form-card {
        margin-top: 30px;
    }

    .booking-input.row {
        gap: 12px;
    }
}

@media (max-width: 480px) {

    .booking-form-card {
        padding: 22px;
    }

    .booking-btn {
        font-size: 14px !important;
        padding: 12px !important;
    }
}

.alif-booking-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}

.alif-tabs {
    display: flex;
    border: 1px solid #0aa87a;
    /* border-radius: 10px; */
    overflow: hidden;
}

.alif-tab {
    flex: 1;
    padding: 12px;
    font-weight: 700;
    background: #d0fae5;
    border: none;
    color: #0aa87a;
}

.alif-tab.active {
    background: #0aa87a;
    color: #fff;
}

.alif-title {
    text-align: center;
    margin: 18px 0;
    color: #0aa87a;
    font-weight: 700;
    border-top: 1px solid #0aa87a;
    border-bottom: 1px solid #0aa87a;
    padding: 10px 0;
}

.alif-subtabs {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.alif-subtabs .sub {
    padding: 8px 18px;
    border: 1px solid #0aa87a;
    background: #d0fae5;
    color: #0aa87a;
    font-weight: 600;
}

.alif-subtabs .sub.active {
    background: #0aa87a;
    color: #fff;
}

.alif-content,
.sub-content {
    display: none;
}

.alif-content.active,
.sub-content.active {
    display: block;
}

/* .alif-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
} */

.alif-content input,
.sub-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 2px solid #ccc;
}

.alif-btn {
    width: 100%;
    background: #0aa87a;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.alif-booking-card label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    display: block;
}

.alif-booking-card label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    display: block;
}

/* TESTIMONIAL SECTION */
.testimonials-section {
    padding: 90px 0;
    background: #f5f8fb;
    font-family: 'Segoe UI', sans-serif;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 18px;
    padding: 40px 40px;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #fbbf24;
    font-size: 28px;
    margin-bottom: 12px;
}

.review {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

.quote {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 48px;
    color: #d1fae5;
    font-weight: bold;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.user h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.user small {
    font-size: 12px;
    color: #6b7280;
}

.testimonial-stats {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    justify-items: center;
}

.testimonial-stats h3 {
    color: #0aa87a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
}

.testimonial-stats p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TESTIMONIAL RESPONSIVE */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        text-align: center;
    }

    .quote {
        display: none;
    }

    .user {
        justify-content: center;
    }

    .stars {
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .testimonial-card {
        padding: 26px;
    }

    .review {
        font-size: 13px;
    }
}


/* FOOTER */
.footer-section {
    background: #0f172b;
    padding: 70px 0 30px;
    color: #cbd5e1;
    font-family: 'Segoe UI', sans-serif;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.brand-logo i {
    background: #0aa87a;
    padding: 10px;
    border-radius: 12px;
}

.brand-text {
    font-size: 14px;
    margin: 25px 80px 25px 0;
    color: #90a1b9;
}

.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0aa87a;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: #94a3b8;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0aa87a;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-contact li a {
    text-decoration: none;
    color: #94a3b8;
}

.footer-contact i {
    color: #0aa87a;
    margin-top: 4px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #94a3b8;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-policy a {
    margin-left: 18px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
}

.footer-policy a:hover {
    color: #0aa87a;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-policy a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
    .brand-text {
        margin-right: 0;
    }
}

@media (max-width: 768px) {

    /* .footer-section {
        text-align: center;
    }

    .brand-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    } */
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp {
    background: linear-gradient(135deg, #00bfa5, #009688);
}

.float-btn:hover {
    transform: scale(1.1);
}