:root {
    --onekm-gold: #f8b803;
    --onekm-dark: #1b1b18;
    --onekm-gray: #706f6c;
    --bg-light: #fdfdfc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--onekm-dark);
}

.navbar {
    padding: 1.25rem 0;
    background-color: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    background-color: #ffffffa0 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--onekm-gold) !important;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    text-transform: none;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 0.75rem;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled .navbar-nav .nav-link {
    color: var(--onekm-dark) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar.navbar-scrolled .navbar-nav .nav-link:hover,
.navbar.navbar-scrolled .navbar-nav .nav-link.active {
    color: var(--onekm-gold) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--onekm-gold);
    border-radius: 2px;
}

/* Enquire Now Button */
.btn-enquire {
    background-color: var(--onekm-gold);
    color: #fff !important;
    border-radius: 100px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(248, 184, 3, 0.2);
    margin-left: 1.5rem;
}

.btn-enquire:hover {
    background-color: #e5a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 184, 3, 0.3);
    color: #fff !important;
}

.btn-enquire:active {
    transform: translateY(0);
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('../images/sec_1_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 100px;
}

.hero-badge {
    background-color: var(--onekm-gold);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(248, 184, 3, 0.3);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: var(--onekm-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--onekm-dark);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card .icon-box {
    background-color: #f8f9fa;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--onekm-dark);
}

.pricing-card .info {
    display: flex;
    flex-direction: column;
}

.pricing-card .label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--onekm-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-btn {
    font-size: 1rem;
    padding: 1rem 3rem;
}

/* Hamburger Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
    background-image: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled .navbar-toggler-icon::before,
.navbar.navbar-scrolled .navbar-toggler-icon::after,
.navbar.navbar-scrolled .navbar-toggler-icon span {
    background-color: var(--onekm-dark);
}

.navbar-toggler-icon::before {
    transform: translateY(-8px);
}

.navbar-toggler-icon::after {
    transform: translateY(8px);
}

.navbar-toggler[aria-expanded="true"] span {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .navbar-nav .nav-link.active::after {
        width: 30px;
        bottom: 5px;
        left: 0;
    }

    .btn-enquire {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    /* Responsive Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .pricing-cards {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-card {
        min-width: 100%;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-badge {
        margin-inline: auto;
    }
}

/* Comparison Section Styling */
.comparison-section {
    background-color: #fff;
    padding: 80px 0;
}

.comparison-box {
    background-color: #f8f9fa;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
}

.pain-point-side,
.solution-side {
    padding: 80px 60px;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.label-text {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comparison-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--onekm-dark);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a4a4a;
    font-weight: 500;
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-danger-light {
    background-color: rgba(220, 53, 69, 0.1);
}

.bg-navy-light {
    background-color: rgba(44, 62, 80, 0.1);
}

.comparison-bg-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    /* opacity: 0.15; */
    z-index: 1;
    pointer-events: none;
}

.rent-bg {
    bottom: 20px;
    right: 40px;
    width: 200px;
}

.own-bg {
    bottom: 10px;
    right: 10px;
    width: 220px;
}

.spiral-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.spiral-divider img {
    height: 100%;
    width: auto;
    opacity: 0.8;
}

@media (max-width: 991.98px) {

    .pain-point-side,
    .solution-side {
        padding: 60px 40px;
        min-height: auto;
    }

    .comparison-title {
        font-size: 2rem;
    }

    .comparison-bg-img {
        width: 120px;
        height: 120px;
        /* opacity: 0.1; */
    }

    .spiral-divider {
        display: none;
    }

    .comparison-box {
        border-radius: 25px;
    }
}

/* Amenities Section Styling */
.bg-light-gray {
    background-color: #f7f8fa;
}

.amenities-section .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
}

.amenities-section .text-gold {
    color: var(--onekm-gold);
}

.amenities-section .section-subtitle {
    color: var(--onekm-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0;
}

.amenity-card {
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.amenity-card:hover,
.amenity-card.active {
    border-color: var(--onekm-gold);
    /* Light blue accent from image */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
}

.amenity-card .icon {
    color: var(--onekm-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.amenity-card:hover .icon {
    transform: scale(1.1);
}

.amenity-card .icon svg {
    stroke-width: 1.8;
}

.amenity-card .text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--onekm-dark);
}

@media (max-width: 991.98px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .amenity-card {
        padding: 20px 10px;
    }

    .amenities-section .section-title {
        font-size: 1.75rem;
    }
}

/* USP Section Styling */
.usp-section {
    background-color: #fff;
    padding: 80px 0;
}

.usp-image-wrapper {
    position: relative;
    padding: 15px;
    z-index: 1;
}

.usp-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    background: #e0f2fe;
    /* Light blue glow matching the design */
    filter: blur(50px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.9;
}

.usp-image-wrapper img {
    border-radius: 12px;
}

#uspCarousel .carousel-indicators {
    bottom: 20px;
}

#uspCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--onekm-gold);
}

#uspCarousel .carousel-control-prev,
#uspCarousel .carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#uspCarousel:hover .carousel-control-prev,
#uspCarousel:hover .carousel-control-next {
    opacity: 1;
}

#uspCarousel .carousel-control-prev-icon,
#uspCarousel .carousel-control-next-icon {
    background-color: var(--onekm-gold);
    border-radius: 50%;
    background-size: 50%;
}

.usp-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--onekm-dark);
}

.usp-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    max-width: 90%;
}

.usp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--onekm-gold);
}

.usp-feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--onekm-dark);
}

.usp-feature-desc {
    line-height: 1.5;
    color: #6c757d;
}

@media (max-width: 991.98px) {
    .usp-section {
        padding: 60px 0;
    }

    .usp-title {
        font-size: 1.75rem;
    }

    .usp-image-wrapper {
        margin-bottom: 2rem;
    }
}

/* New Pricing & USP Additions */
.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.bg-gray-custom {
    background-color: #eaecef;
}

.badge-prelaunch {
    background-color: var(--onekm-gold);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.plan-card {
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.plan-card.bg-gold {
    background-color: var(--onekm-gold);
    color: #fff;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-super-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.plan-card.bg-white .plan-super-title {
    color: var(--onekm-gray);
}

.plan-card.bg-gold .plan-super-title {
    color: rgba(255, 255, 255, 0.9);
}

.plan-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 1rem;
}

.plan-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price-suffix {
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-tag {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.plan-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-card.bg-white .plan-list li {
    color: #4a4a4a;
}

.plan-card.bg-gold .plan-list li {
    color: #fff;
}

.btn-plan {
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}

.btn-plan-light {
    background-color: #f0f2f5;
    color: var(--onekm-dark);
    border: none;
}

.btn-plan-light:hover {
    background-color: #e4e6e9;
    color: var(--onekm-dark);
}

.btn-plan-white {
    background-color: #fff;
    color: var(--onekm-dark);
    border: none;
}

.btn-plan-white:hover {
    background-color: #f8f9fa;
    color: var(--onekm-dark);
}

/* Who is this for section */
.target-list {
    list-style: none;
    padding: 0;
}

.target-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.target-icon {
    width: 48px;
    height: 48px;
    background-color: var(--onekm-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.target-text {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--onekm-dark);
}

.guarantee-card {
    background-color: var(--onekm-gold);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.guarantee-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.guarantee-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.guarantee-feature-icon {
    margin-top: 2px;
}

.guarantee-feature-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.guarantee-feature-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
}

.penalty-box {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 2rem;
}

.penalty-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.penalty-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.penalty-desc {
    font-size: 0.8rem;
    margin-bottom: 0;
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .plan-card {
        padding: 30px 20px;
    }

    .guarantee-card {
        padding: 30px 20px;
        margin-top: 2rem;
    }
}

/* Additional Sections Styling */
.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--onekm-dark);
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--onekm-dark);
}

.bg-gold {
    background-color: var(--onekm-gold) !important;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.super-title-banner {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.title-banner {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle-banner {
    font-size: 0.95rem;
    opacity: 0.9;
}

.feature-icon-bottom {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--onekm-gold);
}

/* Footer styling */
.footer-black {
    background-color: #000000;
}

.footer-text {
    color: #d1d1d1;
}

/* Enquire Modal custom inputs */
.custom-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--onekm-dark);
    background-color: transparent;
    transition: border-color 0.3s;
}

.custom-input:focus {
    outline: none;
    border-bottom-color: var(--onekm-gold);
}

.custom-input::placeholder {
    color: #888;
}

.interest-card {
    cursor: pointer;
}

.interest-card-inner {
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    color: #888;
}

.interest-radio:checked+.interest-card-inner {
    border-color: var(--onekm-gold);
    color: var(--onekm-gold);
}

.interest-radio:checked+.interest-card-inner .check-icon {
    display: block !important;
}

.bg-gold:hover {
    background-color: #e5a800 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 184, 3, 0.3);
}