/* =========================
   CREATIONS SECTION
========================= */

.creations-section {
    padding: 60px 0 40px;
}

/* Intro */
.creations-intro {
    margin-bottom: 20px;
}

.intro-text {
    font-family: "f2";
    font-size: 22px;
    color: #555;
    max-width: 620px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

.creations-title {
    font-family: "f4";
    font-size: 90px;
    line-height: 1;
    margin: 40px 0 60px;
    letter-spacing: -2px;
}

/* Rows */
.creation-row {
    margin-bottom: 50px;
    gap: 0;
}

/* Robot text */
.robot-title {
    font-family: "f4";
    font-size: 34px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.robot-desc {
    font-family: "f2";
    color: #777;
    line-height: 1.75;
    margin: 0 0 24px;
    font-size: 17px;
    max-width: 440px;
}

/* Explore link */
.explore-link {
    font-family: "f3";
    color: #ff5a3c;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    font-size: 17px;
}

/* Underline animation */
.explore-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #ff5a3c;
    transition: width 0.3s ease;
}

.explore-link:hover {
    gap: 12px;
}

.explore-link:hover::after {
    width: 100%;
}

/* Image */
.robot-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* =========================
   PREMIUM VIEW BUTTON
========================= */

.view-btn {
    font-family: "f3" !;
    background: #efefef;
    border: none;
    padding: 14px 40px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    color: #444;
    font-size: 16px;
    display: inline-block;
}

/* Animated background fill */
.view-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0%;
    height: 0%;
    background: #ff5a3c;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

/* Text above animation */
.view-btn span {
    position: relative;
    z-index: 1;
}

/* Hover effect */
.view-btn:hover::before {
    width: 300%;
    height: 300%;
}

.view-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 90, 60, 0.28);
}

/* Global transition */
a,
button {
    transition: all 0.25s ease;
}


/* =========================
   CREATIONS RESPONSIVE
========================= */

@media (max-width: 992px) {
    .creations-title {
        font-size: 56px;
        letter-spacing: -1px;
        margin: 30px 0 40px;
    }

    .creation-row {
        text-align: center;
        margin-bottom: 50px;
    }

    .robot-desc {
        max-width: 100%;
        margin: 0 auto 24px;
    }

    .robot-img {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .creations-section {
        padding: 40px 0 20px;
    }

    .creations-title {
        font-size: 44px;
        margin: 20px 0 30px;
    }

    .robot-title {
        font-size: 26px;
    }

    .robot-desc {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .creations-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .intro-text {
        font-size: 15px;
    }

    .robot-title {
        font-size: 22px;
    }
}


/* =========================
   INNOVATION SECTION
========================= */

.innovation-section {
    padding: 80px 0 0;
}

/* Title */
.section-main-title {
    font-family: "f4";
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Feature card */
.innovation-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.innovation-img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
    filter: brightness(55%);
}

/* Overlay */
.innovation-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
    gap: 16px;
}

.innovation-overlay img {
    max-width: 160px;
    height: auto;
}

.brand-text {
    font-family: "f3";
}

.innovation-heading {
    font-family: "f4";
    font-size: 28px;
    margin: 0;
    text-align: center;
}

/* Experience button */
.experience-btn {
    font-family: "f3";
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 28px;
    border-radius: 999px;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.experience-btn:hover {
    background: #ff5a3c;
    border-color: #ff5a3c;
}

/* Content rows */
.section-row {
    margin-bottom: 70px;
    align-items: center;
    gap: 0;
}

.section-title {
    font-family: "f4";
    font-size: 34px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-family: "f4";
    font-size: 34px;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-family: "f1";
    color: #777;
    line-height: 1.75;
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 500px;
}

.section-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}


/* =========================
   INNOVATION RESPONSIVE
========================= */

@media (max-width: 992px) {
    .innovation-section {
        padding: 60px 0 40px;
    }

    .innovation-img {
        height: 380px;
    }

    .section-main-title {
        font-size: 34px;
    }

    .section-row {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-desc {
        max-width: 100%;
        margin: 0 auto 24px;
    }

    .section-img {
        margin-top: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .innovation-img {
        height: 280px;
    }

    .section-main-title {
        font-size: 28px;
    }

    .innovation-heading {
        font-size: 20px;
    }

    .innovation-overlay img {
        max-width: 110px;
    }
}

@media (max-width: 576px) {
    .innovation-section {
        padding: 40px 0 30px;
    }

    .section-main-title {
        font-size: 24px;
    }

    .innovation-img {
        height: 220px;
    }
}


/* =========================
   INNOVATION CAROUSEL
========================= */

/* Each carousel item is full-width — the card fills it */
.innovation-carousel-item {
    width: 100%;
}

/* Owl nav arrows for innovation carousel */
.innovation-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 12px;
    box-sizing: border-box;
}

.innovation-carousel .owl-nav button {
    pointer-events: all;
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
    font-size: 26px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.innovation-carousel .owl-nav button:hover {
    background: rgba(255, 90, 60, 0.75) !important;
    border-color: transparent !important;
}

/* Dots */
.innovation-carousel .owl-dots {
    margin-top: 16px;
    text-align: center;
}

.innovation-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s ease, transform 0.3s ease;
}

.innovation-carousel .owl-dot.active span {
    background: #ff5a3c;
    transform: scale(1.3);
}

/* Ensure the carousel wrapper is relative so arrows are positioned inside */
.innovation-carousel.owl-carousel {
    position: relative;
}


/* =========================
   MEDIA / EVENT VIDEOS SECTION
========================= */

.media-section {
    padding: 60px 0;
}

.section-heading {
    font-family: "f4";
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.media-section .section-heading {
    font-size: 36px;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.video-card {
    cursor: pointer;
    overflow: hidden;
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    background: #f4f4f4;
}

.video-img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease;
    text-decoration: none;
}

.video-card:hover .video-img {
    transform: scale(1.04);
}

.video-card:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255, 90, 60, 0.9);
}

.video-title {
    font-family: "f1";
    margin-top: 12px;
    font-size: 15px;
    color: #444;
    padding: 0 6px;
}

.video-carousel .video-card {
    padding: 6px;
}

@media (max-width: 768px) {
    .media-section {
        padding: 40px 0;
    }

    .section-heading {
        font-size: 28px;
    }

    .media-section .section-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
}


/* =========================
   PARTNERS SECTION
========================= */

.partners-section {
    padding: 80px 0 0;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 120px;
    max-width: 100%;
    padding: 0 12px;
}

.partner-logo {
    max-width: 220px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.75;
}

.partner-logo:hover {
    transform: scale(1.07);
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0 60px;
    }

    .partner-item {
        width: min(100%, 220px);
        height: auto;
        min-height: 80px;
    }
}


/* =========================
   CONTACT CTA
========================= */

.contact-cta {
    padding: 80px 0;
}

.contact-cta-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
}

/* Left column */
.contact-left h2 {
    font-family: "f3";
    font-size: 66px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-left p {
    font-family: "f2";
    color: #777;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 24px;
}

.contact-left img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.contact-left {
    width: 100%;
    max-width: 620px;
    height: auto;
}

/* Form */
.contact-form {
    width: 420px;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-family: "f4" !important;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: "f2";
    font-size: 15px;
    color: #333;
    background: #fafafa;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff5a3c;
    box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.1);
    background: #fff;
}

.contact-form textarea {
    resize: none;
    height: 90px;
}

.contact-btn {
    margin-top: 12px;
    background: #fa5c40;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-family: "f3";
    font-size: 15px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn:hover {
    background: #e04a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 60, 0.3);
}


/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 992px) {
    .contact-cta-wrap {
        gap: 40px;
    }

    .contact-form {
        width: 360px;
    }
}

@media (max-width: 768px) {


    .contact-cta-wrap {
        flex-direction: column;
        gap: 36px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-left img {
        width: 450px;
    }
}

@media (max-width: 576px) {

    .contact-left h2 {
        font-size: 34px;
    }

    .contact-left p {
        font-size: 18px;
    }


    .contact-left img {
        width: 250px;
    }
}


/* =========================
   CONTACT INFO CARDS — Redesigned
========================= */

.contact-info-section {
    /* padding: 0 0 100px; */
}

/* Outer wrapper: Head Office card + grid side by side */
.contact-info-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #efefef;
    border-radius: 24px;
    padding: 36px 34px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;

}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fa5c40, #ff9a3c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}





.contact-info-section>.contact-info-card .contact-info-title {
    color: #000000;
    ;
}

.contact-info-section>.contact-info-card .contact-info-label {
    color: #000000;
}

.contact-info-section>.contact-info-card .contact-info-value {
    color: #777;
}

.contact-info-section>.contact-info-card .contact-info-link {
    color: #fa5c40;
}

.contact-info-section>.contact-info-card .contact-info-link:hover {
    color: #ff7d66;
}

/* Grid: Sales + HR */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.contact-info-grid .contact-info-card {
    background: #ffffff;
    border: 1px solid #efefef;
    border-radius: 20px;
    padding: 30px 28px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-grid .contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fa5c40, #ff9a3c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-grid .contact-info-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.contact-info-grid .contact-info-card:hover::after {
    opacity: 1;
}

/* Shared card parts */
.contact-info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
}

.contact-info-icon {
    font-size: 24px;
    line-height: 1;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    background: #fff5f3;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info-section>.contact-info-card .contact-info-icon {
    background: rgba(250, 92, 64, 0.12);
}

.contact-info-title {
    font-family: "f4";
    font-size: 20px;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.2px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    gap: 16px;
}

.contact-info-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-family: "f3";
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-info-value {
    font-family: "f2";
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.contact-info-link {
    color: #fa5c40;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: "f2";
    font-size: 16px;
}

.contact-info-link:hover {
    color: #c93d24;
}

.contact-info-map {
    margin-top: 24px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

/* =========================
   CONTACT INFO RESPONSIVE
========================= */

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        padding: 0 0 60px;
    }

    .contact-info-section>.contact-info-card {
        padding: 28px 22px;
    }

    .contact-info-grid .contact-info-card {
        padding: 24px 20px;
    }
}


/* ===========================
   FLOATING ICONS (Right Side)
=========================== */
.floating-icons {
    position: fixed;
    right: 22px;
    bottom: 450px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.fi-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

.fi-label {
    font-family: "f3";
    font-size: 12px;
    background: #111;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.fi-item:hover .fi-label {
    opacity: 1;
    transform: translateX(0);
}

.fi-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.fi-phone {
    background: linear-gradient(135deg, #007bff, #0056d6);
}

.fi-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C4E);
}

.fi-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

@media (max-width: 575px) {
    .floating-icons {
        right: 14px;
        bottom: 90px;
        gap: 10px;
    }
    .fi-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .fi-label { display: none; }
}

/* ===========================
   CHAT WIDGET
=========================== */
.chat-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Toggle Button */
.chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5a3c, #ff9a3c);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,90,60,0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    flex-shrink: 0;
}

.chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(255,90,60,0.45);
}

.chat-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge */
.chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 1.8s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Chat Box */
.chat-box {
    width: 340px;
    max-height: 500px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.16);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.chat-box.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Header */
.chat-header {
    background: linear-gradient(135deg, #ff5a3c, #ff9a3c);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.chat-header-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-header-name {
    font-family: "f4";
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.2px;
}

.chat-header-status {
    font-family: "f2";
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a8ffb0;
    animation: blink 2s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chat-header-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.chat-header-close:hover {
    background: rgba(255,255,255,0.35);
}

/* Messages Area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    scrollbar-width: thin;
    scrollbar-color: #eee transparent;
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }

/* Message Wrap */
.chat-msg-wrap {
    display: flex;
    flex-direction: column;
    max-width: 82%;
    gap: 2px;
}

.chat-msg-wrap.bot { align-self: flex-start; align-items: flex-start; }
.chat-msg-wrap.user { align-self: flex-end; align-items: flex-end; }

/* Bubbles */
.chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-family: "f2";
    font-size: 13.5px;
    line-height: 1.55;
    word-break: break-word;
}

.chat-bubble.bot {
    background: #f4f4f4;
    color: #111;
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background: linear-gradient(135deg, #ff5a3c, #ff9a3c);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* Timestamp */
.chat-time {
    font-size: 10px;
    color: #bbb;
    padding: 0 4px;
}

/* Typing Indicator */
.typing-bubble {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
}

.typing-bubble span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #bbb;
    animation: typingDot 1.2s ease infinite;
}

.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Quick Replies */
.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 14px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.chat-qr-btn {
    font-family: "f3";
    font-size: 12px;
    padding: 6px 12px;
    border: 1.5px solid #e8e8e8;
    border-radius: 999px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.chat-qr-btn:hover {
    background: #ff5a3c;
    border-color: #ff5a3c;
    color: #fff;
}

/* Input Row */
.chat-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px 12px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    font-family: "f2";
    font-size: 13px;
    color: #111;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-input:focus {
    border-color: #ff5a3c;
    box-shadow: 0 0 0 3px rgba(255,90,60,0.1);
    background: #fff;
}

.chat-send {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff5a3c, #ff9a3c);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-send:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(255,90,60,0.35);
}

/* Mobile */
@media (max-width: 575px) {
    .chat-widget {
        right: 14px;
        bottom: 14px;
    }

    .chat-box {
        width: calc(100vw - 28px);
        max-height: 420px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
    }
}

/* ===== Enquire Tab (Left Side) ===== */
.enquire-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6600;
  color: white;
  padding: 10px 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 2px;
  z-index: 999;
}

/* ===== Popup Overlay ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 16px;
  box-sizing: border-box;
}

/* ===== Popup Card ===== */
.popup-form {
  background: #fff;
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  animation: popupIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Top accent bar */
.popup-form::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #ff5a3c, #ff9a3c);
}

/* ===== Popup Inner Padding ===== */
.popup-inner {
  padding: 32px 32px 28px;
}

/* ===== Header ===== */
.popup-header {
  margin-bottom: 24px;
}

.popup-header h2 {
  font-family: "f4";
  font-size: 24px;
  color: #111;
  letter-spacing: -0.4px;
  margin: 0 0 4px;
}

.popup-header p {
  font-family: "f2";
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* ===== Form Fields ===== */
.popup-field {
  position: relative;
  margin-bottom: 14px;
}

.popup-field input,
.popup-field textarea,
.popup-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  font-family: "f2";
  font-size: 14px;
  color: #111;
  background: #fafafa;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.popup-field textarea {
  resize: none;
  height: 88px;
}

.popup-field input::placeholder,
.popup-field textarea::placeholder {
  color: #aaa;
}

.popup-field input:focus,
.popup-field textarea:focus,
.popup-field select:focus {
  border-color: #ff5a3c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 90, 60, 0.08);
}

/* Two-column row */
.popup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ===== Submit Button ===== */
.popup-submit {
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "f3";
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.popup-submit::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  background: #ff5a3c;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: width 0.45s ease, height 0.45s ease;
  z-index: 0;
}

.popup-submit span {
  position: relative;
  z-index: 1;
}

.popup-submit:hover::before {
  width: 400%;
  height: 400%;
}

.popup-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 90, 60, 0.28);
}

/* ===== Close Button ===== */
.close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.close-btn:hover {
  background: #ff5a3c;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .popup-form {
    border-radius: 18px;
  }

  .popup-inner {
    padding: 24px 20px 20px;
  }

  .popup-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .popup-header h2 {
    font-size: 20px;
  }
}

/* =========================
   FOOTER SECTION
========================= */

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

.footer-brand {
    margin-bottom: 8px;
}

.footer-logo {
    max-height: 60px;
    width: auto;
}

.footer-links .col-6 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff5a3c;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.footer-address .contact-info-label {
    font-size: 15px;
    font-weight: 600;
}

.footer-address .contact-info-value {
    font-size: 14px;
    color: #777;
    line-height: 1.65;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
    background: #ff5a3c;
    color: #fff;
    transform: translateY(-2px);
}

.footer-line {
    margin: 32px 0 20px;
    border-color: #e8e8e8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 16px 0 24px;
    font-size: 13px;
    color: #888;
}

/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 991px) {
    .footer-section {
        padding: 50px 0 0;
    }

    .footer-top .col-12.col-sm-6 {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-top .col-12 {
        text-align: center;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }

    .footer-address {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links .col-6 {
        align-items: center;
    }
}

@media (max-width: 575px) {
    .floating-icons {
        right: 12px;
        bottom: 30px;
        gap: 10px;
    }

    .floating-icons a {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .footer-logo {
        max-height: 50px;
    }
}