.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

/* SCROLLED */
.custom-navbar.scrolled {
    top: 20px;
    width: 1100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 10px 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.custom-navbar {
    will-change: transform;
}

img.logo {
    width: 200px;
}

/* Background */
.hero-section {
    background: #FCF9F6;
    padding: 100px 0;
}

/* Navbar */
.custom-navbar {
    background: #FCF9F6;
}

.logo-box {
    width: 36px;
    height: 36px;
    background: #c49a6c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
}

.brand-text {
    font-weight: 600;
}

.lang-text {
    font-size: 14px;
}

/* Hero */
.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #222;
}

.hero-desc {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
    max-width: 500px;
}

/* Button */
.custom-btn {
    background: #c49a6c;
    border: none;
    padding: 12px 26px;
    border-radius: 12px;
    color: white;
}

.custom-btn:hover {
    background: #b5895f;
}

/* Image */
.hero-img {
    max-width: 520px;
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
        margin: 20px auto;
    }

    .hero-section {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
}



.how-section {
    background: #FCF9F6;
    padding: 50px 0;
}

/* Badge */
.how-badge {
    background: #e9dfd4;
    color: #a67c52;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
}

/* Title */
.how-title {
    margin-top: 20px;
    font-size: 48px;
    font-weight: 700;
    color: #222;
}

.how-title span {
    color: #c49a6c;
}

/* Card */
.how-card {
    background: linear-gradient(180deg, #f8f5f1, #ffffff);
    border-radius: 30px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
    border: 10px solid #ffffff;
}

/* Active card (right one) */
/* .how-card.active {
  border: 2px solid #2f80ed;
} */

/* Image wrapper */
.img-wrapper {
    position: relative;
    /* background: #efeae4; */
    border-radius: 20px;
    /* padding: 20px; */
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 120px;
}

.img-wrapper img {
    max-width: 320px;
    width: 100%;
}

.img-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;

    background: linear-gradient(to bottom,
            rgba(244, 239, 233, 0) 0%,
            #FCF9F6 100%);
}

.img-wrapper img {
    transform: translateY(-10px);
}

/* Content */
.card-content {
    margin-top: 20px;
}

.card-content h5 {
    font-size: 20px;
    font-weight: 600;
}

.card-content p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Step badge */
.step-badge {
    background: #c49a6c;
    color: white;
    border-radius: 50%;
    padding: 6px 10px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .how-title {
        font-size: 36px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .how-title {
        font-size: 28px;
    }
}



.feature-section {
    background: #FCF9F6;
    padding: 50px 0;
}

/* Badge */
.feature-badge {
    background: #e9dfd4;
    color: #a67c52;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
}

/* Title */
.feature-title {
    margin-top: 20px;
    font-size: 48px;
    font-weight: 700;
}

.feature-title span {
    color: #c49a6c;
}

/* Desktop Card */
.feature-card {
    background: #f8f5f1;
    border-radius: 28px;
    padding: 20px;
}

.feature-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.feature-card h5 {
    font-size: 20px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* Tablet Layout */
.feature-row {
    background: linear-gradient(180deg, #f8f5f1, #efe7df);
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 25px;
}

.feature-img-large {
    width: 100%;
    border-radius: 20px;
}

.feature-text h5 {
    font-size: 22px;
    font-weight: 600;
}

.feature-text p {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

/* Mobile */
.feature-card.mobile {
    margin-bottom: 20px;
}

/* Responsive Typography */
@media (max-width: 992px) {
    .feature-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .feature-title {
        font-size: 28px;
    }
}



.final-section {
    background: #FCF9F6;
    padding: 120px 0 80px;
    text-align: center;
}

/* Title */
.final-title {
    font-size: 64px;
    font-weight: 700;
    color: #222;
    line-height: 1.1;
}

.final-title span {
    color: #c49a6c;
}

/* Subtitle */
.final-sub {
    margin-top: 15px;
    font-size: 18px;
    color: #777;
}

/* Button */
.final-btn {
    margin-top: 25px;
    background: #c49a6c;
    border: none;
    padding: 12px 28px;
    border-radius: 14px;
    color: white;
}

.final-btn:hover {
    background: #b5895f;
}

/* Phones */
.phone-group {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
}

.phone-group img {
    width: 220px;
    transition: 0.3s;
}

/* Slight angle feel */
.phone-group img:nth-child(1) {
    transform: rotate(-6deg);
}

.phone-group img:nth-child(3) {
    transform: rotate(6deg);
}

/* Footer */
.footer-mini {
    margin-top: 80px;
}

.logo-box {
    width: 44px;
    height: 44px;
    background: #c49a6c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 10px;
}

.footer-mini h5 {
    margin-bottom: 10px;
}

.footer-links {
    color: #666;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

/* ========================= */
/* 📱 Responsive */
/* ========================= */

@media (max-width: 992px) {
    .final-title {
        font-size: 44px;
    }

    .phone-group img {
        width: 170px;
    }
}

@media (max-width: 576px) {
    .final-title {
        font-size: 32px;
    }

    .final-sub {
        font-size: 16px;
    }

    .phone-group {
        gap: 15px;
    }

    .phone-group img {
        width: 80px;
        transform: none;
        /* remove tilt for clean mobile */
    }

    .footer-mini {
        margin-top: 60px;
    }

    .hero-section {
        background: #FCF9F6;
        padding: 20px 0;
    }
}

/* Tablet row container */
.how-row {
    background: linear-gradient(180deg, #f8f5f1, #efe7df);
    border-radius: 28px;
    padding: 20px;
    margin-bottom: 25px;
}

/* Tablet text */
.how-text h5 {
    font-size: 22px;
    font-weight: 600;
}

.how-text p {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

/* Tablet image */
.img-wrapper.tablet {
    height: 260px;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.img-wrapper.tablet img {
    width: 100%;
    object-fit: cover;
}

/* Mobile */
.how-card.mobile {
    margin-bottom: 20px;
}

.how-card.mobile .card-content {
    margin-top: 15px;
}