* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #222;
    padding-top: 80px;
}

/* FORCE FIX NAVBAR */
#mainNav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #fff !important;
}

/* ===== NAVBAR WRAPPER ===== */
.navbar {
    background: #f5f5f5;
    padding: 18px 0;
    border-bottom: 1px solid #eaeaea;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: #fff;
    transition: all 0.3s ease;

}

/* ===== CONTAINER ALIGNMENT ===== */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px !important;
    margin: auto;
}

/* ===== LOGO ===== */
.navbar-brand {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

/* ===== MENU ===== */
.navbar-nav {
    align-items: center;
    gap: 25px;
    /* spacing between items */
}

/* ===== NAV LINKS ===== */
.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* space between text & arrow */
}

/* Hover underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #FA5921;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #FA5921;
}



/* ===== DROPDOWN FIX ===== */
.dropdown-toggle::after {

    display: none !important;
}

/* Icon styling */
.nav-link i {
    font-size: 12px;
    margin-left: 4px;
    transition: 0.3s;
    display: inline-block;
    transition: transform 0.3s ease;

}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    border: none;
    border-radius: 14px;
    padding: 10px;
    min-width: 220px;

    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

/* Show animation */
.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect */
.dropdown-item:hover {
    background: rgba(250, 89, 33, 0.08) !important;
    color: #FA5921 !important;

}

/* Active item */
.dropdown-item:active {
    background: #FA5921;
    color: #fff;
}

/* ===== CTA BUTTON ===== */
.btn-featured {
    background: #FA5921;
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}


/* ===== ALIGN RIGHT BUTTON ===== */
.navbar-end {
    display: flex;
    align-items: center;
}


/* ===== MOBILE ===== */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        margin-top: 10px;
        padding: 15px;
        border-radius: 12px;
    }

    .nav-link {
        justify-content: space-between;
        width: 100%;
        padding: 12px;
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        background: #f9fafb;
    }

    .dropdown-menu.show {
        display: block;
    }

    .btn-featured {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}

/* OVERLAY */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

/* SIDEBAR */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 20px;
    transition: 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* ACTIVE STATE */
.mobile-sidebar.active {
    left: 0;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* HEADER */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-header h5 {
    margin: 0 !important;
}

.close-btn {
    font-size: 24px;
    background: none;
    border: none;
}

/* NAV */
.mobile-nav {
    list-style: none;
    padding: 0;
    flex: 1;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-radius: 8px;
    color: #333;
    text-decoration: none !important;
}

.mobile-nav a:hover {
    background: rgba(250, 89, 33, 0.08);
}

/* SUBMENU */
.mobile-submenu {
    display: none;
    padding-left: 10px;
    list-style: none;
}

.mobile-submenu.show {
    display: block;

}

/* ICON ROTATE */
.rotate {
    transform: rotate(180deg);
}

/* CTA */
.mobile-sidebar .btn-featured {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(180deg, #fff 0%, #fdf7f3 100%);
    padding: 110px 10px !important;
}

/* ===== TITLE ===== */
.hero-title {
    font-size: 120px !important;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

/* Highlight words */
.hero-title span.highlight {
    color: #FA5921;
}

/* ===== IMAGE INSIDE TEXT ===== */
.hero-image {
    display: inline-block;
    width: 350px;
    height: 160px;
    border-radius: 80px !important;
    overflow: hidden;
    vertical-align: text-top;
    margin: 0 10px;
}

.hero-image img {
    width: 350px !important;
    height: 180px !important;
    object-fit: cover;

}

/* ===== SUBTITLE ===== */
.hero-subtitle {
    max-width: 600px;
    margin: 20px auto !important;
    color: #666;
    font-size: 16px;
    align-items: center;
}

/* ===== BUTTONS ===== */
.hero-actions {
    margin-top: 25px;
}

.btn-primary {
    background: #FA5921;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
}

.btn-outline {
    border: 1px solid #ddd;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    color: #111;
}

@media (max-width: 992px) {

    .hero {
        padding: 80px 20px !important;
        text-align: center;
    }

    .hero-title {
        font-size: 70px !important;
        line-height: 1.2;
    }

    .hero-image {
        width: 250px;
        height: 120px;
    }

    .hero-image img {
        width: 100% !important;
        height: 100% !important;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 500px;
    }
}

@media (max-width: 768px) {

    .hero {
        padding: 50px 15px !important;
        text-align: center;
    }

    .hero-title {
        font-size: 42px !important;
        line-height: 1.3;
    }

    /* Image inside text becomes block */
    .hero-image {
        display: block;
        margin: 15px auto;
        width: 220px;
        height: 110px;
    }

    .hero-subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 32px !important;
    }

    .hero-image {
        width: 180px;
        height: 90px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 12px;
    }
}

/* SECTION */
.highlight-section {
    background: #fff;
}

/* BADGE */
.section-badge {
    background: #eaf7ef;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* LINK */
.learn-more {
    display: inline-block;
    margin-top: 10px;
    color: #333;
    text-decoration: none;
}

/* CARD */
.highlight-card {
    background: linear-gradient(180deg, #fff 0%, #fdf7f3 100%);
    border-radius: 30px;
    padding: 25px;
    text-align: left;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 300px;
}



/* HOVER */
.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */
.icon {
    font-size: 24px;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    background-color: #FA5921;
    border-radius: 40px;
    color: #fff;
    text-align: center !important;
    align-content: center !important;
}



/* TEXT */
.highlight-card h5 {
    font-weight: 600;
    margin-top: 20px;
}

.highlight-card p {
    font-size: 14px;
    color: #666;
}

/* FOOTER */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
}

/* BUTTON */
.arrow-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: #f1f1f1;
    cursor: pointer;
}

/* ACTIVE BUTTON */
.active-card .arrow-btn {
    background: #FA5921;
    color: #fff;
}

@media (max-width: 992px) {

    .section-title {
        font-size: 28px;
    }

    .highlight-card {
        height: 260px;
        padding: 20px;
    }

    .card-footer {
        margin-top: 40px;
    }

    .icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .highlight-section {
        text-align: center;
    }

    .section-title {
        font-size: 24px;
    }

    .highlight-card {
        height: auto;
        /* IMPORTANT */
        padding: 20px;
        text-align: center;
    }

    .highlight-card h5 {
        margin-top: 15px;
    }

    .highlight-card p {
        font-size: 13px;
    }

    .card-footer {
        margin-top: 20px;
        justify-content: center;
    }

    .icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 20px;
    }

    .section-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .highlight-card {
        padding: 18px;
    }

    .arrow-btn {
        width: 32px;
        height: 32px;
    }
}

.trending-section {
    background: linear-gradient(180deg, #fff 0%, #fdf7f3 100%);
}

/* REMOVE container padding */
.trending-section .container {
    max-width: 100%;

    width: 100%;

    padding-left: 0 !important;
    padding-right: 0 !important;
    align-items: center !important;

}


/* WRAPPER */
.trending-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    padding-left: 120px;
    padding-right: 120px;

    scroll-padding-left: 120px;
    scroll-padding-right: 120px;
}

/* hide scrollbar */
.trending-wrapper::-webkit-scrollbar {
    display: none;
}

/* CARD BASE */
.trend-card {
    flex: 0 0 280px;
    /* fixed width */
    height: 350px;
    /* fixed height */
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;

}

/* IMAGE */
.trend-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.trend-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;

    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;

    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    text-align: start !important;
}

/* ===== HOVER EFFECT ===== */



/* Focus card */
.trend-card:hover {
    transform: scale(1.09);
    /* ONLY transform → no jump */
    opacity: 1;
    z-index: 2;
}

/* Show content */
.trend-card:hover .trend-info {
    opacity: 1;
    transform: translateY(0);
}

/* PROGRESS */
.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: #FA5921;
    border-radius: 10px;
}

/* TEXT */
.progress-text {
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

.btn-main {
    background: #FA5921;
    color: #fff;
    border-radius: 30px;
    padding: 12px 24px;
}

@media (max-width: 992px) {

    .trending-wrapper {
        padding-left: 60px;
        padding-right: 60px;
        gap: 16px;
    }

    .trend-card {
        flex: 0 0 240px;
        height: 300px;
    }

    .trend-info {
        padding: 15px;
    }
}

@media (max-width: 768px) {

    .trending-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        gap: 14px;

        -webkit-overflow-scrolling: touch;
    }

    .trend-card {
        flex: 0 0 200px;
        height: 260px;
    }

    /* Disable hover zoom on mobile */
    .trend-card:hover {
        transform: none;
    }

    /* Always show info (no hover in mobile) */
    .trend-info {
        opacity: 1;
        transform: translateY(0);
        padding: 12px;
    }

    .progress-bar {
        height: 5px;
    }

    .progress-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {

    .trend-card {
        flex: 0 0 170px;
        height: 220px;
    }

    .trend-info h5 {
        font-size: 14px;
    }

    .trend-info p {
        font-size: 12px;
    }

    .progress-text {
        font-size: 10px;
    }
}


.footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 30px;
}

/* BRAND */
.footer-brand h3 {
    font-size: 22px;
}

.footer-brand p {
    font-size: 14px;
    color: #bbb;
}

/* HEADINGS */
.footer h4 {
    font-size: 15px;
    margin-bottom: 12px;
}

/* LINKS */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #FA5921;
}

/* BUTTON */
.footer .btn-featured {
    background: #FA5921;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    display: inline-block;
    text-decoration: none;
}

/* Footer Bottom Layout */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 15px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* LEFT */
.footer-left {
    text-align: left;


}

.footer-left p {
    margin-bottom: 0;
}

.footer-links {
    text-align: right;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #bbb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.footer-social a:hover {
    background: #FA5921;
    color: #fff;
    transform: translateY(-3px);
}

/* LINKS */
.footer-links a {
    color: #bbb;
    margin-left: 15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #FA5921;
}

.footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 30px;
}

/* BRAND */
.footer-brand h3 {
    font-size: 22px;
}

.footer-brand p {
    font-size: 14px;
    color: #bbb;
}

/* HEADINGS */
.footer h4 {
    font-size: 15px;
    margin-bottom: 12px;
}

/* LINKS */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #FA5921;
}

/* BUTTON */
.footer .btn-featured {
    background: #FA5921;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    display: inline-block;
    text-decoration: none;
}

/* Footer Bottom Layout */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 15px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* LEFT */
.footer-left {
    text-align: left;


}

.footer-left p {
    margin-bottom: 0;
}

.footer-links {
    text-align: right;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #bbb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.footer-social a:hover {
    background: #FA5921;
    color: #fff;
    transform: translateY(-3px);
}

/* LINKS */
.footer-links a {
    color: #bbb;
    margin-left: 15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #FA5921;
}

/* DESKTOP - no icon */
.footer-toggle::after {
    content: "";
    display: none;
}

/* MOBILE DESIGN */
@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-col {
        border-bottom: 1px solid #222;
        padding: 12px 0;
    }

    .footer-toggle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    /* ✅ ICON (ONLY THIS METHOD) */
    .footer-toggle::after {
        content: "+";
        width: 28px;
        height: 28px;
        background: #FA5921;
        color: #fff;
        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 16px;
        font-weight: 600;

        transition: 0.3s ease;
    }

    /* ROTATE ICON */
    .footer-col.active .footer-toggle::after {
        transform: rotate(45deg);
    }

    /* HIDE LINKS */
    .footer-links-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* SHOW LINKS */
    .footer-col.active .footer-links-list {
        max-height: 300px;
        margin-top: 10px;
    }

    /* LINKS */
    .footer-links-list li {
        margin-bottom: 6px;
    }

    .footer-links-list a {
        font-size: 13px;
        color: #bbb;
    }

    /* BOTTOM */
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .footer-left p {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}




/* ===== SECTION ===== */
.updates-section {
    background: #ffffff;
    padding: 80px 0;
}

.updates-section .container {
    max-width: 1300px;
}

/* ===== HEADER ===== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

/* ===== CAROUSEL ===== */
.updates-carousel {
    position: relative;
    margin-top: 40px;
}

.updates-viewport {
    position: relative;
    height: 420px;
    /* FIXED HEIGHT prevents jump */
    overflow: hidden;
}

/* ===== ROW ===== */
.updates-row {
    position: absolute;
    width: 100%;
    display: flex;
    gap: 25px;
    align-items: flex-start;

    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    padding: 12px 0;
    text-align: left !important;
}

/* ACTIVE */
.updates-row.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* Slide Left (Next) */
.updates-row.exit-left {
    transform: translateX(-100%);
    opacity: 0;
}

/* Slide Right (Prev) */
.updates-row.exit-right {
    transform: translateX(100%);
    opacity: 0;
}

/* ===== CARD ===== */
.update-card {
    width: 300px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* IMAGE */
.update-card img {
    width: 100%;
    border-radius: 50px;
    object-fit: cover;
}

/* STAGGER HEIGHT */
.card-1 img {
    height: 320px;
}

.card-2 img {
    height: 280px;
}

.card-3 img {
    height: 240px;
}

.card-4 img {
    height: 200px;
}

/* TEXT */
.update-card span {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    display: block;
}

.update-card h6 {
    font-size: 15px;
    font-weight: 600;
}

/* ===== STAGGER FADE ===== */
.update-card.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

/* ===== HOVER ===== */
.update-card:hover {
    transform: translateY(-8px);
}

/* ===== ARROWS ===== */
.updates-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #FA5921;
    color: #fff;
    border-color: #FA5921;
}

@media (max-width: 992px) {

    .updates-viewport {
        height: 360px;
    }

    .updates-row {
        gap: 18px;
    }

    .update-card {
        width: 240px;
    }

    .card-1 img {
        height: 260px;
    }

    .card-2 img {
        height: 230px;
    }

    .card-3 img {
        height: 200px;
    }

    .card-4 img {
        height: 170px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .updates-viewport {
        height: auto;
        /* remove fixed height */
        overflow-x: auto;
    }

    .updates-row {
        position: relative;
        transform: none !important;
        opacity: 1 !important;

        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 20px;
        gap: 15px;
    }

    .updates-row::-webkit-scrollbar {
        display: none;
    }

    .update-card {
        flex: 0 0 200px;
        width: auto;
    }

    /* reduce stagger */
    .card-1 img {
        height: 240px;
    }

    .card-2 img {
        height: 210px;
    }

    .card-3 img {
        height: 180px;
    }

    .card-4 img {
        height: 150px;
    }

    .update-card h6 {
        font-size: 14px;
    }

    /* disable hover jump on mobile */
    .update-card:hover {
        transform: none;
    }

    /* hide arrows */
    .updates-nav {
        display: none;
    }
}

@media (max-width: 480px) {

    .update-card {
        flex: 0 0 170px;
    }

    .card-1 img {
        height: 200px;
    }

    .card-2 img {
        height: 180px;
    }

    .card-3 img {
        height: 160px;
    }

    .card-4 img {
        height: 140px;
    }

    .update-card span {
        font-size: 11px;
    }

    .update-card h6 {
        font-size: 13px;
    }
}

/* SECTION */
.cta-section {
    position: relative;
    background: #f5e9dc;

    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 800px;
}

/* CONTENT */
.cta-content {
    position: relative;
    z-index: 2;
}

/* TAG */
.tag {
    background: #dce7d3;
    color: #333;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
}

/* TITLE */
.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

/* BUTTONS */
.cta-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #FA5921;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* OUTLINE BUTTON */
.btn-outline {
    border: 1px solid #ccc;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
}

/* FLOATING IMAGES */
.floating-img {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* POSITIONS (match layout) */
/* LEFT SIDE */
.img1 {
    top: 130px;
    left: 270px;
    width: 120px;
    height: 120px;
}

.img2 {
    top: 280px;
    left: 150px;
    width: 200px;
    height: 200px;
}

.img3 {
    bottom: 40px;
    left: 250px;
    width: 260px;
    height: 260px;
}

/* RIGHT SIDE */
.img4 {
    top: 40px;
    right: 250px;
    width: 260px;
    height: 260px;
}

.img5 {
    bottom: 280px;
    right: 150px;
    width: 200px;
    height: 200px;
}

.img6 {
    bottom: 130px;
    right: 270px;
    width: 120px;
    height: 120px;
}



.cta-content {
    max-width: 700px;
    margin: auto;
}

@media (max-width: 992px) {

    .cta-section {
        min-height: 600px;
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    /* Reduce image sizes */
    .img1 {
        width: 90px;
        height: 90px;
        left: 120px;
    }

    .img2 {
        width: 150px;
        height: 150px;
        left: 60px;
    }

    .img3 {
        width: 180px;
        height: 180px;
        left: 140px;
    }

    .img4 {
        width: 180px;
        height: 180px;
        right: 120px;
    }

    .img5 {
        width: 150px;
        height: 150px;
        right: 60px;
    }

    .img6 {
        width: 90px;
        height: 90px;
        right: 140px;
    }
}

@media (max-width: 768px) {

    .cta-section {
        min-height: auto;
        padding: 80px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 80%;
        text-align: center;
    }

    /* Hide heavy images */
    .img2,
    .img4,
    .img5,
    .img1,
    .img3,
    .img6 {
        display: none;
    }

    /* Keep only small accents */
    .img1 {
        top: 40px;
        left: 20px;
        width: 70px;
        height: 70px;
    }

    .img2 {
        width: 150px;
        height: 150px;
        left: 60px;
    }

    .img6 {
        bottom: 40px;
        right: 20px;
        width: 70px;
        height: 70px;
    }

    .img3 {
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 140px;
        opacity: 0.6;
    }

    .img4 {
        width: 180px;
        height: 180px;
        right: 120px;
    }

}

@media (max-width: 480px) {

    .cta-content h2 {
        font-size: 22px;
    }

    .tag {
        font-size: 11px;
        padding: 5px 10px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 12px;
    }

    .img1,
    .img6 {
        width: 50px;
        height: 50px;
    }

    .img3 {
        width: 100px;
        height: 100px;
    }
}

/* MODAL */
.custom-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

/* SHOW */
.custom-modal.active {
    display: block;
}

/* OVERLAY */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* BOX */
.modal-box {
    position: relative;
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    z-index: 2;

    animation: popup 0.3s ease;
}

@keyframes popup {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* CLOSE */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

/* INPUTS */
.modal-box input,
.modal-box textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}