@font-face {
    font-family: "Radikal";
    src: url("../assets/fonts/Nootype - Radikal.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Radikal";
    src: url("../assets/fonts/Nootype - Radikal Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Radikal";
    src: url("../assets/fonts/Nootype - Radikal Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Radikal";
    src: url("../assets/fonts/Nootype-RadikalLight.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Radikal", Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.btnPrimary {
    background: #c9a24a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btnPrimary:hover {
    background: #a9853a;
}

.main-banner {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    width: 100%;
}

.banner-slide {
    width: 100%;
    height: auto;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
}

.banner-form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 10px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-top: 4px solid #c9a24a;
}

.form-heading {
    text-align: center;
    margin-bottom: 22px;
}

.form-heading h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-heading p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.form-row {
    margin-bottom: 14px;
}

.modal-form .form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-form .form-control:focus {
    border-color: #c9a24a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.15);
}

.modal-form .form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    color: #555;
}

.custom-placeholder::placeholder {
    color: #999;
}

.mobile-input-div {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-input-div:focus-within {
    border-color: #c9a24a;
    box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.15);
}

.mobile-input-div .country-code {
    padding: 12px 12px;
    background: #f5f5f5;
    color: #555;
    font-size: 14px;
    white-space: nowrap;
}

.mobile-input-div .mobile-input {
    border: none;
    flex: 1;
    border-radius: 0;
}

.mobile-input-div .mobile-input:focus {
    box-shadow: none;
    border: none;
}

.mob-label {
    display: none;
    font-size: .875em;
    color: var(--bs-form-invalid-color);
    margin-top: 6px;
    padding-left: 2px;
}

.form-check-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
    margin-bottom: 18px;
}

.form-check-row .form-check-input {
    margin-top: 3px;
    flex-shrink: 0;
}

.form-check-row .form-check-input:checked {
    background-color: #c9a24a;
    border-color: #c9a24a;
}

.form-check-row .form-check-label {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.btn-modal-submit {
    width: 100%;
    margin-top: 4px;
}

/* Counter heading (above By The Numbers) */
.counter-heading {
    margin-bottom: 40px;
}

.counter-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin: 0 0 14px;
}

.counter-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: #c9a24a;
    margin: 16px 0 0;
}

.counter-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
    margin: 0;
}

/* About Us section */
.about-us {
    background: linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
    padding: 84px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-main {
    max-width: 720px;
}

/* By The Numbers stats */
.stats-block {
    margin-top: 8px;
}

.stats-container {
    max-width: 560px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 18px;
}

.stat-item {
    position: relative;
    padding-left: 16px;
}

.stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, #c9a24a 0%, rgba(201, 162, 74, 0.15) 100%);
}

.stat-num {
    display: block;
    font-size: 40px;
    line-height: 1;
    font-weight: 900;
    color: #c9a24a;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-num sup {
    font-size: 24px;
    font-weight: 700;
    top: -0.55em;
}

.stat-num em {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: #b8923f;
}

.stat-label {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.3px;
    color: #555;
    font-weight: 500;
}

.stat-label small {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* About-side form */
.about-form-wrap {
    position: sticky;
    top: 24px;
}

.about-form-wrap .banner-form-card {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.secton-thankyou {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 100%);
    color: #fff;
    text-align: center;
}

.thankyou-content {
    max-width: 560px;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 74, 0.4);
    border-radius: 10px;
}

.thankyou-content-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 74, 0.08);
    border: 2px solid rgba(201, 162, 74, 0.4);
    border-radius: 50%;
    padding: 10px;
}

.thankyou-content-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.thankyou-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #d9b66a;
    letter-spacing: 0.5px;
}

.thankyou-subtitle {
    font-size: 15px;
    color: #e6e6e6;
    margin: 20px 0 28px;
    line-height: 1.6;
}

.thankyou-back {
    display: inline-block;
    padding: 12px 28px;
    background: #c9a24a;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.thankyou-back:hover {
    background: #a9853a;
    color: #fff;
}

/* Legal pages (Disclaimer / Privacy Policy) */
.legal-page {
    padding: 72px 0;
    background: #ffffff;
    min-height: 70vh;
}

.legal-inner {
    max-width: 860px;
    margin: 0 auto;
}

.legal-page .legal-title {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.legal-page .legal-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #c9a24a;
    margin: 16px 0 0;
}

.legal-updated {
    font-size: 13px;
    color: #999;
    margin: 22px 0 28px;
}

.legal-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 10px;
}

.legal-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 16px;
}

.legal-body ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.legal-body li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-back {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 26px;
    background: #c9a24a;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.legal-back:hover {
    background: #a9853a;
    color: #fff;
}

footer .footer-black {
    background: #0a0a0a;
    color: #fff;
    padding: 40px 0 20px;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: #ddd;
    transition: color 0.2s ease;
}

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

.footer-links-sep {
    color: #666;
}

.custom-hr {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 24px 0 16px;
}

.copyright2 {
    text-align: center;
}

.copyright-desc2 {
    font-size: 13px;
    color: #bbb;
    margin: 0;
}



@media (max-width: 991px) {
    .main-banner {
        background: #0a0a0a;
        display: flex;
        flex-direction: column;
    }

    .banner-carousel {
        order: 1;
    }

    .banner-carousel::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 2;
    }

    .banner-overlay {
        display: none;
    }

    .banner-form-card {
        max-width: 460px;
        margin: 0 auto;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-main {
        max-width: 100%;
    }

    .about-form-wrap {
        position: static;
        order: 0;
    }

    .about-form-wrap .banner-form-card {
        max-width: 460px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .counter-heading {
        margin-bottom: 32px;
    }

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

    .counter-sub {
        font-size: 15px;
    }

    .about-us {
        padding: 48px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 18px;
    }

    .stat-num {
        font-size: 32px;
    }

    .stat-num sup {
        font-size: 20px;
    }

    .banner-form-card {
        padding: 24px 20px;
    }

    .form-heading h2 {
        font-size: 19px;
    }

    .btnPrimary {
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* ===========================
   Desktop & Tablet
=========================== */

.cta-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 30px;
    box-sizing: border-box;

    pointer-events: none;
}

.cta-btn {
    pointer-events: auto;

    width: 220px;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: .3s ease;
}

.enquire-btn {
    background: #c9a24a;
    color: #fff;
    border: 2px solid #c9a24a;
}

.brochure-btn {
    background: #c9a24a;
    color: #fff;
    border: 2px solid #c9a24a;
}
/* ===========================
   Lead-capture Modals (Enquire / Brochure)
=========================== */
.lead-modal .modal-content{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.lead-modal .modal-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    background:linear-gradient(135deg,#a9853a,#c9a24a);
    color:#fff;
    padding:24px;
    border-bottom:none;
}

.lead-modal .modal-head h4{
    font-size:26px;
    font-weight:700;
    margin:0 0 4px;
}

.lead-modal .modal-head p{
    opacity:.9;
    font-size:14px;
    margin:0;
}

.lead-modal .modal-head .btn-close{
    margin:0;
    flex-shrink:0;
}

.lead-modal .modal-body{
    padding:30px;
}

.lead-form .form-control,
.lead-form .form-select{
    height:54px;
    border-radius:10px;
    border:1px solid #d9d9d9;
    font-size:15px;
    box-shadow:none;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus{
    border-color:#c9a24a;
    box-shadow:0 0 0 .2rem rgba(201,162,74,.15);
}

.lead-form .mobile-wrapper{
    display:flex;
    align-items:center;
    border:1px solid #d9d9d9;
    border-radius:10px;
    overflow:hidden;
}

.lead-form .mobile-wrapper:focus-within{
    border-color:#c9a24a;
    box-shadow:0 0 0 .2rem rgba(201,162,74,.15);
}

.lead-form .country-code{
    padding:0 18px;
    background:#f8f9fa;
    font-weight:600;
    color:#555;
    border-right:1px solid #ddd;
    height:54px;
    display:flex;
    align-items:center;
}

.lead-form .mobile-wrapper .form-control{
    border:none !important;
    border-radius:0 !important;
}

.lead-form .mobile-wrapper .form-control:focus{
    box-shadow:none !important;
}

.lead-form .form-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding-left:0;
    margin-bottom:22px;
}

.lead-form .form-check .form-check-input{
    margin:2px 0 0;
    flex-shrink:0;
    float:none;
}

.lead-form .form-check .form-check-input:checked{
    background-color:#c9a24a;
    border-color:#c9a24a;
}

.lead-form .form-check .form-check-input:focus{
    border-color:#c9a24a;
    box-shadow:0 0 0 .2rem rgba(201,162,74,.15);
}

.lead-form .form-check .form-check-label{
    font-size:13px;
    color:#555;
    line-height:1.5;
}

.lead-form .btn-submit-modal{
    height:54px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    background:#c9a24a;
    border:none;
    color:#fff;
    transition:.3s;
}

.lead-form .btn-submit-modal:hover{
    background:#a9853a;
    transform:translateY(-2px);
}

.lead-form .invalid-feedback{
    font-size:13px;
}

@media(max-width:576px){

    .lead-modal .modal-head{
        padding:18px;
    }

    .lead-modal .modal-head h4{
        font-size:22px;
    }

    .lead-modal .modal-body{
        padding:20px;
    }

}

@media (max-width: 767px) {

    body {
        padding-bottom: 65px;
    }

    .cta-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 0;
        display: flex;
        justify-content: stretch;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 -3px 10px rgba(0,0,0,.15);
    }

    .cta-btn {
        width: 50%;
        border-radius: 0;
        margin: 0;
        padding: 16px 10px;
        font-size: 15px;
        position: relative; /* Required */
        text-align: center;
    }

    .enquire-btn {
        border: none;
        background: #c9a24a;
        color: #fff;
    }

    /* Vertical Divider */
    .enquire-btn::after {
        content: "";
        position: absolute;
        top: 20%;
        right: 0;
        width: 1px;
        height: 60%;
        background: rgba(255,255,255,0.8);
    }

    .brochure-btn {
        border: none;
        background: #c9a24a;
        color: #fff;
    }
}
/* Form submit loader overlay */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
}

.page-loader.is-active {
    display: flex;
}

.page-loader .loader-spinner {
    width: 54px;
    height: 54px;
    border: 4px solid rgba(201, 162, 74, 0.25);
    border-top-color: #c9a24a;
    border-radius: 50%;
    animation: page-loader-spin 0.8s linear infinite;
}

.page-loader .loader-text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #333;
}

@keyframes page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}
