body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* TOPBAR */

.topbar {
    background: #e5e5e5;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    background: #eb0000;
    color: white;
    padding: 10px 40px;
    position: relative;
    font-weight: 500;
    white-space: nowrap;
}

.topbar-left:after {
    content: "";
    position: absolute;
    right: -35px;
    top: 0;
    border-top: 40px solid #eb0000;
    border-right: 35px solid transparent;
}

.topbar-right {
    display: flex;
}

.topbar-box {
    padding: 10px 25px;
    border-left: 1px solid #d5d5d5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-box i {
    color: #eb0000;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .navbar-nav {
        font-size: 14px;
    }

}

@media(max-width:991px) {

    /* HIDE TOPBAR ON MOBILE */

    .topbar {
        display: none;
    }

    /* HIDE HEADER RIGHT */

    .header-right {
        display: none;
    }

    /* NAV MENU SPACING */

    .navbar-nav {
        margin-top: 20px;
    }

}

/* STICKY NAVBAR */

.main-navbar {
    background: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link.active {
    color: #eb0000 !important;
}

/* NAVBAR */

.main-navbar {
    background: #fff;
    padding: 18px 0;
}

.logo {
    font-size: 32px;
    font-weight: 700;
}

.logo img {
    width: 80px;
}

.logo span {
    color: #eb0000;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333 !important;
    white-space: nowrap;
}


/* HEADER RIGHT */

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* CALL AREA */

.call-area {
    background: #2f6ee4;
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    min-width: 210px;
}

.call-icon {
    background: #eb0000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.call-text {
    font-weight: 600;
    white-space: nowrap;
}



/* QUOTE BUTTON */

.quote-btn {
    border: 2px solid #333;
    padding: 10px 25px;
    border-radius: 30px;
    background: white;
    font-weight: 600;
    white-space: nowrap;
}


/* RESPONSIVE */

@media(max-width:1200px) {

    .navbar-nav {
        font-size: 14px;
    }

}

@media(max-width:991px) {

    .topbar-right {
        display: none;
    }

    .header-right {
        display: none;
    }

    .navbar-nav {
        margin-top: 20px;
    }

}

/* HERO SECTION */

.hero-section {
    background: #f4f6fb;
    padding: 100px 0;
    overflow: hidden;
}

/* LEFT */

.hero-left {
    padding-right: 40px;
}

.rating-badge {
    display: inline-block;
    background: #e8eefc;
    color: #2f6ee4;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-title .blue {
    color: #2f6ee4;
}

.hero-title .orange {
    color: #eb0000;
}

.hero-desc {
    margin: 20px 0 25px;
    color: #666;
    font-size: 16px;
    max-width: 520px;
}


/* FEATURES */

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    max-width: 520px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
}

.feature i {
    color: #2f6ee4;
    font-size: 16px;
}


/* BUTTONS */

.hero-buttons {

    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-buttons a {
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-call {
    background: #eb0000;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
}

.btn-call:hover {
    background: #ffe8e8;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.btn-book {
    background: #2f6ee4;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
}

.btn-book:hover {
    background: #2558b8;
}


/* CUSTOMER */

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    margin-right: -12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.avatars img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info strong {
    font-size: 15px;
}

.customer-info small {
    color: #666;
}


/* FORM CARD */

.booking-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    margin-left: auto;
}

.status {
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
}

.booking-card h4 {
    margin-top: 8px;
    font-weight: 700;
}

.form-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: .2s;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
    border-color: #2f6ee4;
}

textarea {
    height: 90px;
    resize: none;
}

.book-btn {
    width: 100%;
    background: #eb0000;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.book-btn:hover {
    background: #ffe8e8;
}


/* DIRECT CONTACT */

.contact-direct {
    margin-top: 22px;
    text-align: center;
}

.contact-direct p {
    margin-bottom: 10px;
    color: #777;
}

.direct-buttons {
    display: flex;
    gap: 10px;
}

.direct-call,
.direct-whatsapp {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.direct-call {
    background: #6c7fb0;
}

.direct-whatsapp {
    background: #25D366;
}


/* RESPONSIVE */

@media(max-width:992px) {

    .hero-section {
        padding: 70px 0;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-title {
        font-size: 34px;
    }

    /* FEATURES */
    .hero-features {
        grid-template-columns: 1fr;
    }

    /* ✅ BUTTON FIX */
    .hero-buttons {

        display: flex;
        flex-direction: column;
        /* stack vertically */
        gap: 12px;
        margin-right: 10px !important;
    }

    .hero-buttons a {

        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* Optional: make primary button bigger */
    .btn-call {
        font-size: 16px;
        padding: 15px;
    }

    /* FORM */
    .booking-card {
        margin-top: 40px;
        max-width: 100%;
    }

}

/* about-section */
.about-section {
    padding: 100px 0;
    background: #f7f9fc;
}

/* IMAGE COLLAGE */

.about-collage {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 220px 180px 220px;
    gap: 20px;
    height: 620px;
}

/* COMMON IMAGE STYLE */

.about-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.about-collage img:hover {
    transform: scale(1.05);
}

/* IMAGE POSITIONS */

.img-big {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.img-small-top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.project-count {
    grid-column: 2 / 3;
    grid-row: 2 / 3;

    background: linear-gradient(135deg, #f39191, #eb0000);
    color: white;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.project-count h3 {
    font-size: 42px;
    margin: 0;
    font-weight: 800;
}

.project-count span {
    font-size: 18px;
}

.img-bottom-left {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.img-bottom-right {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}


/* CONTENT */

.about-tag {
    background: #ffe8e8;
    color: #eb0000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #eb0000;
}

.about-content p {
    color: #666;
    line-height: 1.8;
}


/* FEATURES */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: #eb0000;
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-box h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 14px;
    margin: 0;
}


/* RESPONSIVE */

@media(max-width:991px) {

    .about-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .img-big {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 300px;
    }

    .img-small-top,
    .project-count,
    .img-bottom-left,
    .img-bottom-right {
        grid-column: auto;
        grid-row: auto;
        height: 200px;
    }

    .project-count {
        height: 160px;
    }



    .about-content {
        margin-top: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

}

/* stats-section */

.stats-section {
    padding: 80px 0;
    background: #f9f6f4;
}

/* STAT ITEM */

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* ICON */

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #eb0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #2f6ee4;
    position: relative;
}


/* NUMBER */

.stat-content h2 {
    font-size: 60px;
    font-weight: 800;
    color: #1b1f3b;
    margin: 0;
}

/* TEXT */

.stat-content p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.stat-content span {
    display: block;
    font-weight: 700;
    color: #1b1f3b;
}

/* MOBILE FIX */

@media (max-width:576px) {

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .stat-content h2 {
        font-size: 40px;
    }

}

/* MOBILE FIX - 2 STATS PER ROW */

@media (max-width:576px) {

    .stats-section .row {
        display: flex;
        flex-wrap: wrap;
    }

    .stats-section .col-md-6 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .stat-content h2 {
        font-size: 42px;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

}

/* services-section */
.services-section {
    padding: 100px 0;
    background: #f7f9fc;
}

/* HEADER */

.section-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.section-tag {
    background: #ffe8e8;
    color: #eb0000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
}

/* SERVICE CARD */

.service-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* IMAGE */

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* TITLE */

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* LIST */

.service-card ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.service-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 18px;
}

.service-card ul li:before {
    content: "›";
    position: absolute;
    left: 0;
    color: #eb0000;
    font-weight: bold;
}

/* BUTTONS */

/* BUTTON WRAPPER */

.service-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

/* BUTTON STYLE */

.service-buttons a {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* CALL */

.btn-call {
    background: #eb0000;
    color: white;
}

.btn-call:hover {
    background: #c40505;
}

/* BOOK */

.btn-book {
    background: #ffe8e8;
    color: #eb0000;
}

.btn-book:hover {
    background: #eb0000;
    color: white;
}

/* WHATSAPP */

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    opacity: 0.9;
}

/* MOBILE FIX */

@media(max-width:576px) {

    .service-buttons a {
        flex: 48%;
    }

    .service-buttons a:last-child {
        flex: 100%;
    }

}

/* RESPONSIVE */

@media(max-width:991px) {

    .section-header h2 {
        font-size: 32px;
    }

    .service-img img {
        height: 180px;
    }

}

/* why-section */
/* SECTION */

.why-section {
    padding: 100px 0;
    background: #f5f7fb;
}


/* IMAGE */

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* CONTENT */

.why-content {
    padding: 70px;
    background: #fff;
    height: 100%;
}


/* TAG */

.why-tag {
    font-size: 14px;
    font-weight: 600;
    color: #eb0000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}


/* TITLE */

.why-content h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}


/* DESCRIPTION */

.why-desc {
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 500px;
}


/* POINT LIST */

.why-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* ITEM */

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}


/* ICON */

.why-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.why-icon.blue {
    background: #2f6ee4;
}

.why-icon.orange {
    background: #eb0000;
}


/* TEXT */

.why-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}


/* RESPONSIVE */

@media(max-width:991px) {

    .why-content {
        padding: 40px 25px;
    }

    .why-content h2 {
        font-size: 32px;
    }

}

/* gallery-section */
.gallery-section {
    padding: 90px 0;
    background: #f5f7fb;
}


/* TITLE */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
}

.section-title span {
    color: #eb0000;
}


/* CARD */

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}


.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s;
}


/* HOVER ZOOM */

.gallery-card:hover img {
    transform: scale(1.1);
}


/* OVERLAY */

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}


.gallery-overlay h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #ddd;
    font-size: 14px;
    margin: 0;
}


/* SWIPER */

.gallerySwiper {
    padding-bottom: 50px;
}


/* PAGINATION */

.swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #eb0000;
    ;
}

.section-desc {
    max-width: 650px;
    margin: 10px auto 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* PROCESS SECTION */

.process-section {
    padding: 100px 0;
    background: #f5f7fb;
}


/* HEADER */

.process-header {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 70px;
}

.process-tag {
    background: #ffe8e8;
    color: #eb0000;
    ;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.process-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.process-header p {
    color: #6b7280;
    font-size: 16px;
}


/* WRAPPER */

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}


/* CONNECT LINE */

.process-wrapper::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 8%;
    width: 84%;
    height: 2px;
    border-top: 2px dashed #d1d5db;
    z-index: 0;
}


/* STEP */

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}


/* ICON */

.process-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    font-size: 28px;
    color: #2f6ee4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* NUMBER */

.step-number {
    position: absolute;
    top: -10px;
    right: 40px;
    background: #eb0000;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 700;
}


/* TEXT */

.process-step h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.process-step p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}


/* RESPONSIVE */

@media(max-width:991px) {

    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-wrapper::before {
        display: none;
    }

    .step-number {
        right: 20px;
    }

}


@media(max-width:576px) {

    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .process-header h2 {
        font-size: 30px;
    }

}

/* BRAND SECTION */

.brand-section {
    padding: 90px 0;
    background: #fff;
}


/* HEADER */

.brand-header {
    text-align: center;
    max-width: 650px;
    margin: auto;
    margin-bottom: 50px;
}

.brand-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
}

.brand-header span {
    color: #eb0000;
}

.brand-header p {
    color: #6b7280;
    margin-top: 10px;
}


/* LOGO SLIDER */

.brandSwiper {
    padding: 20px 0;
}


.brandSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}


.brandSwiper img {
    max-width: 140px;
    opacity: 0.7;
    transition: 0.3s;
    filter: grayscale(100%);
}


.brandSwiper img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}


/* feedback-section */
.feedback-section {
    padding: 100px 0;
    background: #f5f7fb;
}

.feedback-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.feedback-title span {
    color: #eb0000;
}

.feedback-desc {
    color: #6b7280;
    margin-bottom: 30px;
}

/* REVIEW BOX */

.review-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #ffb400;
    margin-bottom: 12px;
}

.review-box p {
    color: #6b7280;
    margin-bottom: 15px;
}

.review-box h5 {
    font-weight: 700;
    margin-bottom: 3px;
}

.review-box span {
    font-size: 14px;
    color: #888;
}

/* FEEDBACK STATS */

.feedback-stats {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* STAT CARD */

.stat-box {
    background: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ICON */

.stat-icon {
    width: 48px;
    height: 48px;
    background: #fff3e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 20px;
    color: #eb0000;
}

/* TEXT */

.stat-info h3 {
    color: #eb0000;
    font-size: 26px;
    margin: 0;
    font-weight: 800;
}

.stat-info p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* MOBILE */

@media(max-width:576px) {

    .feedback-stats {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }

}

/* IMAGE */

.feedback-img img {
    width: 100%;
    border-radius: 12px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .feedback-img {
        margin-top: 40px;
    }

    .feedback-stats {
        flex-direction: column;
        gap: 20px;
    }

    .feedback-title {
        font-size: 32px;
    }

}

/* faq-section */
.faq-section {
    padding: 100px 0;
    background: #f6f8fb;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */

.faq-image img {
    width: 100%;
    border-radius: 10px;
}

/* TITLE */

.faq-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.faq-title span {
    color: #eb0000;
}

/* ACCORDION */

.faq-item {
    border: 1px solid #e4e7ec;
    margin-bottom: 15px;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    font-size: 20px;
    color: #333;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: #eb0000;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 32px;
    }

}

/* CONTACT SECTION */

.contact-section {
    padding: 100px 0;
    background: #f7f9fc;
}

/* WRAPPER */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */

.contact-tag {
    background: #ffe8e8;
    color: #eb0000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.contact-info h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* CONTACT ITEMS */

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #fff;
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.contact-item:hover {
    transform: translateY(-4px);
}

/* ICON */

.contact-icon {
    width: 50px;
    height: 50px;
    background: #eb0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.contact-item h5 {
    margin: 0;
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}


/* CONTACT FORM */

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
    font-weight: 800;
    margin-bottom: 20px;
}

/* FORM */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #2f6ee4;
}

/* BUTTON */

.contact-btn {
    width: 100%;
    background: #eb0000;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #e65f00;
}


/* RESPONSIVE */

@media(max-width:991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form-box {
        margin-top: 30px;
    }

}

/* CTA SECTION */

.cta-section {
    padding: 100px 0;
    background: #f5f7fb;
}

/* CTA BOX */

.cta-box {
    background: linear-gradient(135deg, #2f6ee4, #0f3fb8);
    padding: 60px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

/* ORANGE SHAPE */

.cta-box::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #eb0000;
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: .2;
}

/* CONTENT */

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
    opacity: .9;
}

/* BUTTONS */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

/* CALL BUTTON */

.cta-btn.primary {
    background: #eb0000;
    color: #fff;
}

.cta-btn.primary:hover {
    background: #ff7f26;
}

/* WHATSAPP */

.cta-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.cta-btn.whatsapp:hover {
    background: #1ebe5d;
}

/* BOOK NOW BUTTON */

.cta-btn.book {
    background: #ffffff;
    color: #2f6ee4;
}

.cta-btn.book:hover {
    background: #e8eefc;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 25px;
    }

}

/* footer */
.footer {
    background: #0f172a;
    color: #fff;
    padding: 70px 0 0;
}

/* GRID */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* LOGO */

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo img{
    width: 100px;
}
/* ABOUT */

.footer-about p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* SOCIAL */

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1e293b;
    border-radius: 6px;
    margin-right: 10px;
    color: #fff;
    transition: .3s;
}

.footer-social a:hover {
    background: #eb0000;
}

/* LINKS */

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #eb0000;
}

/* CONTACT */

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    color: #94a3b8;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

/* FLOATING BUTTONS */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* COMMON BUTTON */

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

/* CALL */

.call-btn {
    background: #eb0000;
}

.call-btn:hover {
    transform: scale(1.1);
    background: #e65f00;
}

/* WHATSAPP */

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* SCROLL TOP */

.scroll-top {
    background: #2f6ee4;
    display: none;
}

.scroll-top:hover {
    transform: scale(1.1);
    background: #2558b8;
}

/* MOBILE POSITION */

@media(max-width:768px) {

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

}

/* BOOKING MODAL */

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* OVERLAY */

.booking-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

/* CONTENT */

.booking-modal-content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalFade .35s ease;
}

/* CLOSE BUTTON */

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

/* TITLE */

.booking-modal-content h3 {
    font-weight: 800;
    margin-bottom: 5px;
}

.modal-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

/* FORM */

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: #2f6ee4;
}

/* BUTTON */

.modal-form .book-btn {
    width: 100%;
    background: #eb0000;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.modal-form .book-btn:hover {
    background:#cf0b0b;
}

/* ANIMATION */

@keyframes modalFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* SHOW MODAL */

.booking-modal.show {
    display: flex;
}