@font-face {
    font-family: 'ProductSans';
    src: url('../fonts/ProductSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ProductSans';
    src: url('../fonts/ProductSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

html {
    font-family: 'ProductSans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-feature-settings: 'liga' 0;
    font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* BACKGROUND VIDEO */
.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* TRANSLUCENT ANGLED SHAPE */
.overlay-shape {
    position: absolute;
    left: 0;
    width: 80%;
    height: 100%;
    background: url('../images/hexagon-bg.svg') no-repeat center/cover;
    z-index: 2;
}

/* CONTENT */
.hero-content {
    position: absolute;
    top: 40%;
    left: 7%;
    padding-right: 20px;
    transform: translateY(-50%);
    max-width: 550px;
    z-index: 3;
}

.hero-logo {
    width: 390px;
    margin-bottom: 10px;
    margin-left: -40px;
}

h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
    margin-bottom: 25px;
}

.blue {
    color: #0884D5;
    font-weight: 700;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: #0884D5;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgb(24 49 216 / 30%);
    transition: 0.2s ease-in-out;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(24, 128, 216, 0.4);
}

.cta-wrap {
    position: relative;
    display: inline-block;
}

.cta-expand {
    position: absolute;
    top: 28px;
    left: 0;
    width: 350px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: .4s ease;
    overflow: hidden;
}

.cta-expand.show {
    transform: scaleX(1);
    opacity: 1;
}

.cta-expand input {
    border: none;
    outline: none;
    padding-left: 10px;
    flex: 1;
    margin-top: 0px;
}

.cta-submit {
    background: none;
    cursor: pointer;
    width: 15%;
    margin-top: 3px;
}

.cta-submit:hover {
    transform: translateX(2px);
    transition: 0.2s;
}

.error-text {
    font-size: 14px;
    color: red;
    display: none;
    margin-left: 14px;
}

.error-text.show {
    display: block;
    margin-top: 5px;
}

@media (max-width: 992px) {

    .overlay-shape {
        display: none;
    }

    /* Video dark overlay */
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.75);
        z-index: 2;
    }

    .hero {
        height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        text-align: center;
        padding: 0 20px;
        z-index: 3;
    }

    .hero-logo {
        /* width: 220px;
        height: 100px; */
        margin: 0 auto 16px;
        display: block;
    }

    .cta-btn {
        font-size: 14px;
    }

    .cta-wrap {
        display: flex;
        justify-content: center;
    }

    /* CTA expand centered */
    .cta-expand {
        left: 50%;
        transform-origin: center;
        transform: translateX(-50%) scaleY(0);
        width: 100%;
        max-width: 320px;
        top: 12px;
    }

    .cta-expand.show {
        transform: translateX(-50%) scaleY(1);
    }

    h1 {
        font-size: 28px;
    }

}

/* ------------------------------
   FEATURES SECTION
------------------------------ */

.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-title {
    font-size: 40px;
    font-weight: 400;
}

.features-title .brand {
    font-size: 50px;
    font-weight: 700;
    background: linear-gradient(90deg, #1AA9E5 0%, #6D47E4 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-sub {
    max-width: 680px;
    margin: 12px auto 50px;
    color: #6d6d6d;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 300;
}


.hex-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    justify-items: center;
}

.hex-item {
    width: 300px;
}

.hex-inner {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.hex-item:hover .hex-inner {
    transform: rotateY(180deg);
}

.hex-front,
.hex-back {
    position: absolute;
    width: 100%;
    height: 307px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hex-front img,
.hex-back img {
    width: 100%;
    height: 307px;
    display: block;
    backface-visibility: hidden;
}

/* Small hex + icon */
.small-hex {
    position: absolute;
    top: 80px;
    left: 115px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    backface-visibility: hidden;
}

/* Title text */
.hex-title {
    margin-top: -125px;
    margin-left: 65px;
    width: 175px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    z-index: 2;
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(2px);
}

/* Backside */
.hex-back {
    transform: rotateY(180deg);
    position: relative;
}

.hex-back-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 255px;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    pointer-events: none;
    backface-visibility: hidden;
}


@media (max-width: 1399px) {
    .hex-item {
        width: 260px;
    }

    .hex-front,
    .hex-back,
    .hex-front img,
    .hex-back img {
        height: 265px;
    }

    .small-hex {
        top: 70px;
        left: 95px;
        width: 60px;
        height: 60px;
    }

    .hex-title {
        margin-top: -110px;
        margin-left: 55px;
        width: 160px;
        font-size: 13px;
    }

    .hex-back-text {
        width: 220px;
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .hex-grid {
        gap: 20px;
        padding: 0 20px;
    }

    .hex-item {
        width: 230px;
    }

    .hex-front,
    .hex-back,
    .hex-front img,
    .hex-back img {
        height: 235px;
    }

    .small-hex {
        top: 60px;
        left: 82px;
        width: 55px;
        height: 55px;
    }

    .hex-title {
        margin-top: -95px;
        margin-left: 45px;
        width: 145px;
        font-size: 12.5px;
    }

    .hex-back-text {
        width: 200px;
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .hex-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 40px;
        justify-items: center;
    }

    .hex-item {
        width: 300px;
    }

    .small-hex {
        left: 50%;
        transform: translateX(-50%);
    }

    .hex-title {
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
}

/* ------------------------------
   CONTENT SECTION
------------------------------ */

/* ---- GLOBAL SECTION LAYOUT ---- */

.section-block>div {
    max-width: 600px;
    z-index: 2;
}

.section-block {
    display: flex;
    align-items: center;
    padding: 1px 6%;
    position: relative;
    overflow: hidden;
}


.section-title .line {
    display: inline-block;
    white-space: nowrap;
}

/* ---- SHARED TEXT STYLING ---- */
.section-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.section-highlight {
    padding: 4px 16px;
    border-radius: 18px;
    font-weight: 600;
    display: inline-block;
    margin: 0 6px;
    color: #fff;
}

.section-text {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.65;
    color: #505050;
    max-width: 580px;
}

/* ---- IMAGE STYLE UNIFIED ---- */
.section-image {
    width: 100%;
    height: auto;
    z-index: 2;
}

.analytics-section,
.dialer-section {
    padding-left: 0%;
}


/* ---- SECTION BACKGROUNDS ---- */

.section-connected {
    background-image: url('../images/wave-bg-right.webp');
    background-size: 60%;
    background-position: right -150px;
    background-repeat: no-repeat;
}

.dialer-section {
    background-image: url('../images/wave-bg-left.webp');
    background-size: 60%;
    background-position: left 295px;
    background-repeat: no-repeat;
}


.section-connected::before,
.analytics-section::before,
.calendar-section::before,
.dialer-section::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    /* background: radial-gradient(circle at top right, #f4f8ff, #ffffff); */
    opacity: 0.9;
}

/* ---- COLOR VARIANTS ---- */
.connected-highlight {
    background: #00AAFF;
}

.analytics-highlight {
    background: #6033E8;
}

.calendar-highlight {
    background: #FBBD23;
    color: #000;
}

.dialer-highlight {
    background: #FF8181;
    color: #000;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1399px) {
    .section-block {
        padding: 70px 5%;
    }

    .section-title {
        font-size: 40px;
    }

    .section-text {
        font-size: 20px;
    }

    .section-image {
        max-width: 525px;
    }
}


@media (max-width: 1199px) {
    .section-block {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 35px;
    }

    .section-text {
        font-size: 19px;
    }

    .section-image {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .section-block {
        flex-direction: column;
        text-align: center;
        padding: 10px 6%;
    }

    .section-block>div {
        max-width: 100%;
    }

    .section-title {
        font-size: 40px;
        line-height: 1.25;
    }

    .section-title .line {
        white-space: normal;
    }

    .section-text {
        max-width: 100%;
        font-size: 18px;
    }

    .section-image {
        max-width: 560px;
        margin-top: -30px;
    }

    .section-block::before {
        display: none;
    }

    .section-connected,
    .dialer-section {
        background-image: none;
    }

}

/* ------------------------------
   BRAND MESSAGE SECTION
------------------------------ */
.brand-message-section {
    position: relative;
    width: 100%;
    height: 270px;
    background: url("../images/brand-message-bg.webp") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.brand-message-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    width: 90%;
}

.brand-message-content p {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    max-width: 900px;
    margin: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .brand-message-section {
        height: 200px;
    }

    .brand-message-content p {
        font-size: 18px;
    }
}

/* ------------------------------
   FEATURE SHOWCASE SECTION
------------------------------ */

.feature-showcase-section {
    padding: 100px 0;
    background: #f6f6f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 50px;
    line-height: 1.2;
}


/* ================= CONTAINER ================= */
.feature-showcase {
    display: flex;
    gap: 32px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    height: 230px;
}

/* ================= FEATURE ITEM ================= */
.feature-item {
    display: flex;
    flex: 1;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* LEFT */
.feature-left {
    width: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    transition: padding 0.4s ease, text-align 0.4s ease;
}

.feature-left h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.feature-left .sub {
    font-size: 16px;
    color: #6b7280;
}

.feature-left .arrow {
    position: absolute;
    bottom: 22px;
    left: 28px;
    font-size: 18px;
    background: none;
}

/* RIGHT */
.feature-right {
    width: 0;
    opacity: 0;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.45s ease;
}

.feature-right p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: #374151;
    max-width: 420px;
}

/* ================= HOVER LOGIC ================= */

.feature-showcase:has(.feature-item:hover) .feature-item {
    flex: 0.65;
}

.feature-showcase:has(.feature-item:hover) .feature-item:hover {
    flex: 3;
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #2563eb, #9333ea, #f59e0b) border-box;
}

/* Collapsed cards */
.feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) .feature-left {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) .sub,
.feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) .arrow {
    display: none;
}

.feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) h3 {
    font-size: 15px;
}

/* Expanded card */
.feature-showcase:has(.feature-item:hover) .feature-item:hover .feature-left {
    width: 280px;
    justify-content: center;
}

.feature-showcase:has(.feature-item:hover) .feature-item:hover .feature-right {
    width: calc(100% - 280px);
    opacity: 1;
    padding: 0 40px;
}

.feature-showcase:has(.feature-item:hover) .feature-item:hover .arrow {
    opacity: 0;
}

@media (max-width: 992px) {
    .feature-showcase {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        height: auto;
    }

    .feature-item {
        flex: none;
        width: 100%;
        max-width: 350px;
        max-height: 250px;
        transition: all 0.4s ease;
    }

    .feature-section-title {
        max-width: 90%;
        margin: 0 auto 24px;
        text-align: center;
        font-size: 24px;
        line-height: 1.35;
        white-space: normal;
        word-break: break-word;
    }

    .feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) .feature-left {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        padding: 20px;
        gap: 6px;
    }

    .feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) .sub,
    .feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) .arrow {
        display: block;
    }

    /* Restore title size */
    .feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) h3 {
        font-size: 20px;
    }

    /* Restore icon size */
    .feature-showcase:has(.feature-item:hover) .feature-item:not(:hover) svg {
        width: auto;
        height: auto;
    }


    .feature-showcase:has(.feature-item:hover) .feature-item:hover {
        flex: none;
        width: 100%;
        border: 2px solid transparent;
        background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(90deg, #0059DE 0%, #BB0DFF 50%, #FBBD23 100%) border-box;
        height: auto;
    }

    .feature-showcase:has(.feature-item:hover) .feature-item:hover .feature-left {
        width: 100%;
        padding: 20px;
    }

    .feature-showcase:has(.feature-item:hover) .feature-item:hover .feature-right {
        width: 100%;
        opacity: 1;
        padding: 12px 20px 20px 20px;
    }

    /* Reduce font size for feature-right */
    .feature-showcase .feature-right p {
        font-size: 16px;
        line-height: 1.4;
    }

    .feature-showcase:has(.feature-item:hover) .feature-item:hover .arrow {
        display: none;
    }

    /* Make content tappable for mobile */
    .feature-item:active,
    .feature-item.touch-active {
        border: 2px solid transparent;
        background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(90deg, #0059DE 0%, #BB0DFF 50%, #FBBD23 100%) border-box;
    }

    .feature-item:active .feature-right,
    .feature-item.touch-active .feature-right {
        opacity: 1;
        width: 100%;
        padding: 12px 20px 20px 20px;
    }

    .feature-item:active .arrow,
    .feature-item.touch-active .arrow {
        display: none;
    }

}

/* ------------------------------
   TESTIMONIAL SECTION
------------------------------ */

.testimonial-section {
    padding: 90px 0;
    background: url("../images/blue-dot-bg.webp") no-repeat center center;
    background-size: cover;
    background-blend-mode: overlay;
    text-align: center;
}

.decor-line-left {
    position: relative;
    left: -585px;
    height: 55px;
    pointer-events: none;
}

.decor-line-right {
    position: relative;
    right: -585px;
    bottom: 720px;
    height: 55px;
    pointer-events: none;
}

.testimonial-section-title {
    font-size: 36px;
    font-weight: 600;
}

.testimonial-section-subtitle {
    margin-top: 10px;
    margin-bottom: 55px;
    font-size: 20px;
    color: #354052;
    font-weight: 500;
}

.testimonial-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 565px 565px;
    gap: 24px;
    justify-content: center;
}

/* VIDEO CARD */
.video-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LEFT LARGE */
.video-card.large {
    width: 565px;
    height: 675px;
}

/* RIGHT COLUMN */
.right-column {
    display: grid;
    grid-template-rows: 325.5px 325.5px;
    gap: 24px;
}

.right-column .video-card {
    width: 565px;
    height: 325.5px;
}

/* PLAY / PAUSE BUTTON */
.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.play-btn span {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
}

/* SOUND BUTTON */
.sound-toggle {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* SHOW BUTTONS ON HOVER (DESKTOP) */
@media (hover: hover) {

    .video-card:hover .play-btn,
    .video-card:hover .sound-toggle {
        opacity: 1;
        pointer-events: auto;
    }
}

.video-card.show-controls .play-btn,
.video-card.show-controls .sound-toggle {
    opacity: 1;
    pointer-events: auto;
}

/* RESPONSIVE */
@media (max-width: 1119px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        padding: 0 16px;
    }

    /* LEFT LARGE VIDEO */
    .video-card.large {
        width: 100%;
        height: 520px;
    }

    /* RIGHT COLUMN */
    .right-column {
        grid-template-rows: 1fr 1fr;
    }

    .right-column .video-card {
        width: 100%;
        height: 248px;
    }

    .decor-line-left,
    .decor-line-right {
        display: none;
    }
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .video-card,
    .video-card.large,
    .right-column .video-card {
        width: 100%;
        height: 320px;
    }

    .right-column {
        display: contents;
    }

    .decor-line-left,
    .decor-line-right {
        display: none;
    }
}

/* ------------------------------
   SECURITY SECTION
------------------------------ */

.security-section {
    padding: 80px 20px;
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
}

.security-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.security-card {
    background: #ffffff;
    border: 1px solid #e6efff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.icon-box {
    width: 77px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 77px;
    height: 56px;
    object-fit: contain;
}

.security-card p {
    font-size: 17px;
    color: #334155;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .security-section {
        padding: 60px 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .security-card {
        width: 100%;
        max-width: 520px;
        padding: 20px 22px;
    }

    .security-card p {
        white-space: normal;
        line-height: 1.4;
    }
}

/* ------------------------------
   FAQ SECTION
------------------------------ */

.faq-section {
    width: 100%;
    background: #F4F7FF;
    padding: 80px 16px;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}


.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #0f172a;
}

.faq-subtitle {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    color: #354052;
    font-weight: 500;
}

.faq-list {
    margin-top: 60px;
}

/* ===== WRAPPER (CONTAINS GLOW) ===== */
.faq-item-wrap {
    position: relative;
    margin-bottom: 16px;
    isolation: isolate;
}

/* ===== GLOW ===== */
.faq-item-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(90deg,
            #0884D5 0%,
            #FBBD23 27.88%,
            #A875A5 62.5%,
            #8773EA 93.27%);
    border-radius: 18px;
    filter: blur(32px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.faq-item-wrap.active::before {
    opacity: 0.25;
}

/* ===== CARD ===== */
.faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 22px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-top: 0;
    transition: none;
    text-align: left;
}

.faq-demo-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0782D5;
    cursor: pointer;
    margin-top: 0px;
    width: auto;
}

.faq-demo-btn:hover {
    text-decoration: underline;
}

/* ===== ICON (PLUS / MINUS using pseudo-elements) ===== */
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #0782D5;
    position: relative;
    flex-shrink: 0;
}

/* Horizontal line (always visible) */
.faq-icon::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: #0782D5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

/* Vertical line (visible only when closed) */
.faq-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background: #0782D5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

/* Hide vertical line when active (minus) */
.faq-item-wrap.active .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.35s ease;
}

.faq-item-wrap.active .faq-answer {
    max-height: 220px;
}

.faq-answer p {
    padding-bottom: 22px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.hidden {
    display: none;
}

/* VIEW MORE / LESS */
.toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.toggle-view {
    font-size: 16px;
    font-weight: 600;
    color: #667085;
    cursor: pointer;
    position: relative;
}

.toggle-view::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #667085;
    transition: width 0.3s ease, left 0.3s ease;
}

.toggle-view:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 992px) {
    .faq-item-wrap.active .faq-answer {
        max-height: 600px;
    }

    .faq-list {
        margin-top: 40px;
    }
}

/* ------------------------------
   CONTACT SECTION
------------------------------ */

.contact-section {
    max-width: 1350px;
    margin: auto;
    padding: 80px 20px;
    padding-bottom: 0px;
    text-align: center;
}

.contact-section h2 {
    font-size: 40px;
    font-weight: 700;
}

.contact-section p.contact-section-subtitle {
    margin-top: 30px;
    font-size: 20px;
    color: #4d4d4d;
    font-weight: 300;
}

/* Layout */
.content-wrapper {
    margin-top: 40px;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 80px;
}

/* LEFT IMAGE AREA */
.left-box {
    max-width: 600px;
    position: relative;
}

.left-box img.person {
    width: 100%;
    height: auto;
    display: block;
}

/* RIGHT FORM SECTION */
.right-box {
    max-width: 450px;
    text-align: left;
    padding-left: 50px;
    border-left: 1px solid #363636;
}

.right-box h3 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
}

.right-box h3 span {
    /*background: linear-gradient(145.2deg, #2163DB 67.29%, #35CACB 85.92%);*/
    background: linear-gradient(119.7deg, #5EC2CF 10.89%, #5BA3D9 51.78%, #5075BA 92.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Inputs */
input {
    width: 100%;
    padding: 16px;
    border-radius: 30px;
    border: 1px solid #d9dce3;
    font-size: 17px;
    margin-top: 20px;
    outline: none;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
}

input:not(.cta-expand input):focus {
    border: 2px solid #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

#contactEmail.input-error {
    border: 2px solid red;
    box-shadow: 0 0 6px red;
}

/* Button */
button {
    width: 170px;
    padding: 16px;
    margin-top: 32px;
    border: none;
    outline: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(90deg, #59A8EA 0%, #8773EA 100%);
    color: white;
    transition: 0.3s;
}

button:not(.faq-question):hover {
    transform: scale(1.05);
}

/* Disabled button style */
#contactForm button[type="submit"]:disabled {
    background-color: #ccc;
    pointer-events: none;
    opacity: .65;
}

.form-message {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    visibility: hidden;
}

.form-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    visibility: visible;
}

.form-message.error {
    color: white;
    background-color: #ff4d4d;
    border: 1px solid #ff4d4d;
    visibility: visible;
}

/* Responsive */

@media (max-width: 1399px) {
    .contact-section h2 {
        font-size: 36px;
    }

    .contact-section p.contact-section-subtitle {
        font-size: 18px;
    }

    .content-wrapper {
        gap: 60px;
    }

    .left-box {
        max-width: 550px;
    }

    .right-box h3 {
        font-size: 28px;
    }

    .right-box {
        margin-bottom: 25px;
    }
}

@media (max-width: 1199px) {
    .content-wrapper {
        gap: 50px;
        margin-bottom: -26px;
    }

    .left-box {
        max-width: 480px;
    }

    .right-box {
        max-width: 420px;
        padding-left: 40px;
        margin-bottom: 50px;
    }

    input {
        font-size: 16px;
        padding: 14px;
        display: block;
    }

    button {
        width: 160px;
        padding: 14px;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .right-box {
        border-left: none;
        padding-left: 0;
        max-width: 100%;
        text-align: center;
    }

    input {
        text-align: left;
    }
}


/* ------------------------------
   FOOTER SECTION
------------------------------ */

.footer-wrapper {
    width: 100%;
    background: #f4f8fb;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.footer-container {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Logo Only */
.footer-logo img {
    width: 270px;
    max-width: 100%;
}

/* Right Contact Section */
.footer-right h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-right p.description {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 12px 0;
    font-size: 20px;
    color: #202020;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.6;
}

/* Hover effect only for clickable links */
.contact-item.email:hover {
    color: #2764f5;
    cursor: pointer;
}

/* Remove underline from email link */
.contact-item a {
    text-decoration: none;
    color: inherit;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* ------------------------------
   MODAL SECTION
------------------------------ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}


.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    opacity: 1
}

.btn {
    margin-top: 10px;
    margin-left: 10px;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    border-radius: .25rem;
    width: 95%;
    max-width: 100%;
}

.btn-primary {
    color: #fff;
}

.btn-primary:hover {
    color: #fff;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: .65
}


/* ----------------------------------
   APPOINTMENT TIME PICKER SECTION
----------------------------------- */

.time-picker-container {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* Header */
.time-picker-header {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.week-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    white-space: nowrap;
}

/* Arrow Buttons */
.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
    background: #0279b3;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.arrow svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Hover */
.arrow:hover {
    background: #015b86;
}

/* Disabled / inactive */
.arrow.inactive {
    opacity: 0.5;
    background: #ccc;
    cursor: not-allowed;
}

/* Date Slots */
.date-slot {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.date-slot-item {
    flex: 1 0 18%;
    margin: 0;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.date-slot-item.active {
    border: 1px solid #0279b3;
    background: rgba(2, 121, 179, 0.1);
}

.date-slot-item.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.date-slot-day {
    font-size: 13px;
    color: #666;
}

.date-slot-date {
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

/* Time Slots */
.time-slot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
}


.time-slot-item {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0 8px;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.time-slot-item:hover,
.time-slot-item.picked {
    background: #0279b3;
    border-color: #0279b3;
    color: #fff;
}

.time-slot-item.disabled {
    background: #f0f0f0;
    color: #ccc;
    border-color: #ddd;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .time-slot {
        grid-template-columns: repeat(2, 1fr);
    }

    .week-title {
        font-size: 16px;
    }

    .arrow {
        height: 34px;
        width: 34px;
    }

    .arrow i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .time-slot {
        grid-template-columns: 1fr;
    }

    .time-picker-header {
        gap: 10px;
    }

    .week-title {
        font-size: 15px;
    }
}

/* ----------------------------------
   SCROLL TO TOP BUTTON
----------------------------------- */

#scrollTopBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    transform: translateY(-4px);
}


/* ----------------------------------
   PRELOADER
----------------------------------- */
.preloader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #F7FAFD;
}

.slice {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    border: 30px solid transparent;
    border-left-width: 17px;
    border-right-width: 17px;
    border-top-color: #4278E5;
    transform: translate(-50%, -50%);
}

.slice:nth-child(1) {
    border-top-color: #59A8EA;
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
    animation: sparkleLoad-1 2s 0.07s infinite;
}

.slice:nth-child(2) {
    border-top-color: #66A0EA;
    transform: translate(-50%, -50%) rotate(60deg) scale(0);
    animation: sparkleLoad-2 2s 0.14s infinite;
}

.slice:nth-child(3) {
    border-top-color: #7397EA;
    transform: translate(-50%, -50%) rotate(120deg) scale(0);
    animation: sparkleLoad-3 2s 0.21s infinite;
}

.slice:nth-child(4) {
    border-top-color: #7F8EEA;
    transform: translate(-50%, -50%) rotate(180deg) scale(0);
    animation: sparkleLoad-4 2s 0.28s infinite;
}

.slice:nth-child(5) {
    border-top-color: #867FEA;
    transform: translate(-50%, -50%) rotate(240deg) scale(0);
    animation: sparkleLoad-5 2s 0.35s infinite;
}

.slice:nth-child(6) {
    border-top-color: #8773EA;
    transform: translate(-50%, -50%) rotate(300deg) scale(0);
    animation: sparkleLoad-6 2s 0.42s infinite;
}

@keyframes sparkleLoad-1 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
    }

    25%,
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
    }
}

@keyframes sparkleLoad-2 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(60deg) scale(0);
    }

    25%,
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(60deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(60deg) scale(0);
    }
}

@keyframes sparkleLoad-3 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(120deg) scale(0);
    }

    25%,
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(120deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(120deg) scale(0);
    }
}

@keyframes sparkleLoad-4 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(180deg) scale(0);
    }

    25%,
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(180deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(180deg) scale(0);
    }
}

@keyframes sparkleLoad-5 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(240deg) scale(0);
    }

    25%,
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(240deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(240deg) scale(0);
    }
}

@keyframes sparkleLoad-6 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(300deg) scale(0);
    }

    25%,
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(300deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(300deg) scale(0);
    }
}