/* ==========================================================================
   Arvind Forest Trails - Landing Page (Bootstrap 5.3.3)
   ========================================================================== */

@font-face {
    font-family: neutra;
    src: url("../fonts/neutra-text-alt-587261020eccb.otf") format("opentype");
    font-display: swap;
}
@font-face {
    font-family: Tartuffo_Trial-Regular;
    src: url("../fonts/tartuffo/Tartuffo_Trial-Regular.otf") format("opentype");
    font-display: swap;
}
@font-face {
    font-family: Tartuffo_Trial-Medium;
    src: url("../fonts/tartuffo/Tartuffo_Trial-Medium.otf") format("opentype");
    font-display: swap;
}
@font-face {
    font-family: TT_Neoris_Trial_Regular;
    src: url("../fonts/tt_neoris/TT_Neoris_Trial_Regular.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: TT_Neoris_Trial_Medium;
    src: url("../fonts/tt_neoris/TT_Neoris_Trial_Medium.ttf") format("truetype");
    font-display: swap;
}

:root {
    --aft-primary: #1f4d2a;
    --aft-primary-dark: #143820;
    --aft-accent: #b88a3b;
    --aft-accent-dark: #8a6322;
    --aft-light: #f7f3ec;
    --aft-cream: #fbf7ef;
    --aft-text: #2c2c2c;
    --aft-muted: #6c6c6c;
    --aft-border: #e6dfd1;
    --aft-shadow: 0 10px 30px rgba(31, 77, 42, 0.08);
    --Tartuffo-Medium: Tartuffo_Trial-Medium;
    --Tartuffo-Regular: Tartuffo_Trial-Regular;
    --TT_Neoris_Regular: TT_Neoris_Trial_Regular;
    --TT_Neoris_Medium: TT_Neoris_Trial_Medium;
    --neutra: neutra;
}

* { box-sizing: border-box; }

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: neutra, "Open Sans", sans-serif !important;
    color: var(--aft-text);
    background: #fff;
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: neutra, "Marcellus", serif;
    color: var(--aft-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

a { text-decoration: none; transition: all .3s ease; }
img { max-width: 100%; height: auto; }

/* ===================== Header ===================== */
.aft-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    z-index: 1030;
    padding: 8px 0;
}
.aft-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.aft-logo-left {
    flex: 1;
    display: flex;
    align-items: center;
}
.aft-logo-left img { height: 56px; width: auto; }
.aft-logo-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}
.aft-logo-right img { height: 48px; width: auto; }

.aft-nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0; padding: 0;
}
.aft-nav-links a {
    color: var(--aft-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    cursor: pointer;
}
.aft-nav-links a:hover { color: var(--aft-accent); }
.aft-nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    height: 2px; width: 0;
    background: var(--aft-accent);
    transition: width .3s;
}
.aft-nav-links a:hover::after { width: 100%; }

.aft-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aft-primary);
    color: #fff !important;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}
.aft-call-btn:hover { background: var(--aft-accent); color: #fff; }
.aft-call-btn i { font-size: 15px; }

.aft-mobile-toggle {
    background: transparent;
    border: 0;
    color: var(--aft-primary);
    font-size: 28px;
    display: none;
    padding: 0;
    line-height: 1;
}

/* offcanvas */
.aft-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--aft-border);
    padding: 18px 22px;
}
.aft-offcanvas .offcanvas-header img { height: 50px; }
.aft-offcanvas .offcanvas-body a {
    display: block;
    padding: 14px 0;
    color: var(--aft-primary);
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid var(--aft-border);
    font-size: 15px;
    letter-spacing: 1px;
}
.aft-offcanvas .offcanvas-body a:hover { color: var(--aft-accent); padding-left: 6px; }
.aft-offcanvas .offcanvas-cta {
    margin-top: 18px;
    background: var(--aft-primary);
    color: #fff !important;
    text-align: center;
    border-radius: 30px;
    padding: 12px 16px !important;
    border-bottom: 0 !important;
}

/* ===================== Hero / Banner ===================== */
.aft-hero {
    margin-top: 70px;
    position: relative;
}
.aft-hero .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================== Section base ===================== */
.aft-section {
    padding: 70px 0;
    position: relative;
}
.aft-section.bg-cream { background: var(--aft-cream); }
.aft-section.bg-leaf {
    background: linear-gradient(135deg, #f4f7f0 0%, #fbf7ef 100%);
}

.aft-section-title {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-align: center;
    color: var(--aft-primary);
    position: relative;
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
}
.aft-section-title::after {
    content: "";
    position: absolute;
    left: 50%; bottom: -12px;
    transform: translateX(-50%);
    height: 3px; width: 60px;
    background: var(--aft-accent);
    border-radius: 2px;
}
.aft-section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.aft-section-sub {
    color: var(--aft-muted);
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
}

/* ===================== Overview ===================== */
.overview-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: var(--aft-shadow);
    border: 1px solid var(--aft-border);
    height: 100%;
}
.overview-card p {
    color: var(--aft-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 16px;
}
.overview-usps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 26px;
}
.overview-usp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--aft-cream);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--aft-border);
}
.overview-usp .usp-icon {
    width: 44px; height: 44px;
    flex: 0 0 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
}
.overview-usp .usp-icon i { color: var(--aft-accent); font-size: 22px; }
.overview-usp .usp-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--aft-primary);
    line-height: 1.4;
}

/* Overview form */
.overview-form-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--aft-shadow);
    border: 1px solid var(--aft-border);
    overflow: hidden;
}
.overview-form-head {
    background: var(--aft-primary);
    color: #fff;
    padding: 22px 26px;
    text-align: center;
}
.overview-form-head h3 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    letter-spacing: 1px;
    font-family: neutra, sans-serif;
}
.overview-form-head p {
    margin: 6px 0 0;
    font-size: 14px;
    opacity: .85;
}
.overview-form-body {
    padding: 26px;
}
.overview-form-body .form-control,
.overview-form-body .form-select {
    border-radius: 8px;
    padding: 12px 14px;
    border: 1px solid var(--aft-border);
    font-size: 15px;
    background: #fafafa;
}
.overview-form-body .form-control:focus,
.overview-form-body .form-select:focus {
    border-color: var(--aft-accent);
    box-shadow: 0 0 0 .15rem rgba(184,138,59,.15);
    background: #fff;
}
.aft-btn-primary {
    background: var(--aft-primary);
    color: #fff !important;
    border: 0;
    border-radius: 8px;
    padding: 13px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    transition: all .3s;
    width: 100%;
}
.aft-btn-primary:hover { background: var(--aft-accent); transform: translateY(-2px); }
.aft-btn-outline {
    background: transparent;
    color: var(--aft-primary) !important;
    border: 2px solid var(--aft-primary);
    border-radius: 8px;
    padding: 11px 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    transition: all .3s;
}
.aft-btn-outline:hover { background: var(--aft-primary); color: #fff !important; }

/* ===================== Showcase Carousel (Live by Trails / 5BHK / Indulgence) ===================== */
.showcase-swiper {
    overflow: hidden;
    padding: 10px 4px 50px;
    position: relative;
    max-width: 100%;
}
.showcase-swiper .swiper-wrapper {
    align-items: stretch;
}
.showcase-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.showcase-swiper .swiper-pagination {
    bottom: 10px;
}
.showcase-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--aft-border);
    opacity: 1;
    transition: all .3s;
}
.showcase-swiper .swiper-pagination-bullet-active {
    background: var(--aft-primary);
    width: 28px;
    border-radius: 5px;
}

.showcase-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--aft-shadow);
    border: 1px solid var(--aft-border);
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease;
}
.showcase-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(31,77,42,.15); }
.showcase-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.showcase-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.showcase-card:hover .showcase-img img { transform: scale(1.06); }
.showcase-body { padding: 28px 26px; }
.showcase-body h3 {
    font-size: 24px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.showcase-body p {
    color: var(--aft-muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* hide swiper nav / pagination when slides <= slidesPerView (watchOverflow lock) */
.swiper-button-prev-show.swiper-button-lock,
.swiper-button-next-show.swiper-button-lock,
.swiper-button-prev-amen.swiper-button-lock,
.swiper-button-next-amen.swiper-button-lock,
.swiper-button-prev-gal.swiper-button-lock,
.swiper-button-next-gal.swiper-button-lock {
    display: none !important;
}
.showcase-swiper .swiper-pagination-lock,
.amenities-swiper .swiper-pagination-lock,
.gallery-swiper .swiper-pagination-lock {
    display: none !important;
}
.showcase-nav:has(.swiper-button-lock),
.amenities-nav:has(.swiper-button-lock),
.gallery-nav:has(.swiper-button-lock) {
    display: none;
}

/* showcase swiper navigation */
.showcase-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.showcase-nav .swiper-button-prev-show,
.showcase-nav .swiper-button-next-show {
    width: 46px; height: 46px;
    background: #fff;
    border: 1px solid var(--aft-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--aft-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: all .3s;
}
.showcase-nav .swiper-button-prev-show:hover,
.showcase-nav .swiper-button-next-show:hover {
    background: var(--aft-primary); color: #fff; transform: translateY(-2px);
}

/* ===================== Configuration ===================== */
.config-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--aft-border);
    box-shadow: var(--aft-shadow);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
}
.config-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--aft-primary), var(--aft-accent));
}
.config-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(31,77,42,.15); }
.config-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.config-area {
    font-size: 17px;
    color: var(--aft-muted);
    margin-bottom: 14px;
    font-weight: 500;
}
.config-price {
    font-size: 32px;
    color: var(--aft-accent-dark);
    font-weight: 700;
    margin-bottom: 22px;
    font-family: neutra, sans-serif;
}
.config-note {
    text-align: center;
    margin-top: 30px;
    color: #c0392b;
    font-size: 14px;
    font-style: italic;
}

/* ===================== Plot Sizes ===================== */
.plot-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--aft-shadow);
    border: 1px solid var(--aft-border);
    text-align: center;
    padding: 36px 22px;
    transition: transform .35s, box-shadow .35s;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.plot-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(31,77,42,.18); }
.plot-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: var(--aft-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 38px;
    color: var(--aft-primary);
    border: 2px dashed var(--aft-accent);
}
.plot-size {
    font-size: 30px;
    font-weight: 700;
    color: var(--aft-primary);
    font-family: neutra, sans-serif;
    margin-bottom: 8px;
}
.plot-label {
    font-size: 15px;
    color: var(--aft-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.plot-desc {
    font-size: 14px;
    color: var(--aft-muted);
    line-height: 1.7;
}

/* ===================== Amenities (animated) ===================== */
.section-amenities {
    background:
      radial-gradient(circle at 10% 20%, rgba(184,138,59,.06) 0%, transparent 35%),
      radial-gradient(circle at 90% 80%, rgba(31,77,42,.07) 0%, transparent 40%),
      var(--aft-cream);
    position: relative;
    overflow: hidden;
}
.section-amenities::before,
.section-amenities::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .35;
    z-index: 0;
    pointer-events: none;
}
.section-amenities::before {
    width: 320px; height: 320px;
    background: rgba(184,138,59,.25);
    top: -120px; left: -100px;
    animation: floatAnim 14s ease-in-out infinite;
}
.section-amenities::after {
    width: 380px; height: 380px;
    background: rgba(31,77,42,.22);
    bottom: -160px; right: -120px;
    animation: floatAnim2 16s ease-in-out infinite;
}
@keyframes floatAnim {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}
@keyframes floatAnim2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -30px); }
}
.section-amenities .container { position: relative; z-index: 1; }

.amenity-item {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(10px);
    border: 1px solid var(--aft-border);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    transition: all .35s;
    cursor: pointer;
}
.amenity-item:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 16px 32px rgba(31,77,42,.12);
    border-color: var(--aft-accent);
}
.amenity-icon {
    width: 70px; height: 70px;
    margin: 0 auto 14px;
    background: var(--aft-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .35s;
}
.amenity-item:hover .amenity-icon { transform: rotate(8deg) scale(1.05); background: #fff; }
.amenity-icon img { width: 38px; height: 38px; object-fit: contain; }
.amenity-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--aft-primary);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* amenities swiper */
.amenities-swiper-wrap { position: relative; overflow: hidden; max-width: 100%; }
.amenities-swiper {
    overflow: hidden;
    padding: 10px 4px 50px;
}
.amenities-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.amenities-swiper .swiper-slide .amenity-item {
    width: 100%;
}
.amenities-swiper .swiper-pagination {
    bottom: 8px;
}
.amenities-swiper .swiper-pagination-bullet {
    background: var(--aft-border);
    opacity: 1;
    width: 9px; height: 9px;
    transition: all .3s;
}
.amenities-swiper .swiper-pagination-bullet-active {
    background: var(--aft-primary);
}
.amenities-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}
.amenities-nav .swiper-button-prev-amen,
.amenities-nav .swiper-button-next-amen {
    width: 44px; height: 44px;
    background: #fff;
    border: 1px solid var(--aft-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--aft-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: all .3s;
}
.amenities-nav .swiper-button-prev-amen:hover,
.amenities-nav .swiper-button-next-amen:hover {
    background: var(--aft-primary); color: #fff; transform: translateY(-2px);
}

/* ===================== Gallery ===================== */
.gallery-swiper-wrap { position: relative; overflow: hidden; max-width: 100%; }
.gallery-swiper {
    overflow: hidden;
    padding: 10px 4px 50px;
}
.gallery-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.gallery-swiper .swiper-slide .gallery-item {
    width: 100%;
}
.gallery-swiper .swiper-pagination { bottom: 8px; }
.gallery-swiper .swiper-pagination-bullet {
    background: var(--aft-border);
    opacity: 1;
    width: 9px; height: 9px;
    transition: all .3s;
}
.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--aft-primary);
}
.gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}
.gallery-nav .swiper-button-prev-gal,
.gallery-nav .swiper-button-next-gal {
    width: 44px; height: 44px;
    background: #fff;
    border: 1px solid var(--aft-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--aft-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: all .3s;
}
.gallery-nav .swiper-button-prev-gal:hover,
.gallery-nav .swiper-button-next-gal:hover {
    background: var(--aft-primary); color: #fff; transform: translateY(-2px);
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
    box-shadow: var(--aft-shadow);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s;
}
.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(31,77,42,.55);
    color: #fff;
    font-size: 30px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .35s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }

/* ===================== Location ===================== */
.location-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--aft-shadow);
    border: 1px solid var(--aft-border);
    overflow: hidden;
    height: 100%;
}
.location-acc-body {
    padding: 22px 26px;
}
.location-acc-body .accordion-button {
    background: #fff;
    color: var(--aft-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 16px 20px;
    border-radius: 10px !important;
    box-shadow: none;
}
.location-acc-body .accordion-button:not(.collapsed) {
    background: var(--aft-primary);
    color: #fff;
}
.location-acc-body .accordion-button:focus { box-shadow: none; }
.location-acc-body .accordion-button::after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f4d2a'%3E%3Cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
}
.location-acc-body .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
}
.location-acc-body .accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--aft-border);
    border-radius: 10px !important;
    overflow: hidden;
}
.location-list {
    list-style: none;
    padding: 0; margin: 0;
}
.location-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--aft-border);
    color: var(--aft-text);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}
.location-list li:last-child { border-bottom: 0; }
.location-list li span { color: var(--aft-accent-dark); font-weight: 600; }

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
    border-radius: 14px;
}

/* ===================== About ===================== */
.about-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--aft-shadow);
    border: 1px solid var(--aft-border);
    padding: 40px 36px;
    height: 100%;
}
.about-card ol {
    padding-left: 0;
    counter-reset: about;
    list-style: none;
}
.about-card ol li {
    position: relative;
    counter-increment: about;
    padding: 14px 0 14px 50px;
    border-bottom: 1px dashed var(--aft-border);
    color: var(--aft-text);
    font-size: 16px;
    line-height: 1.7;
}
.about-card ol li:last-child { border-bottom: 0; }
.about-card ol li::before {
    content: counter(about, decimal-leading-zero);
    position: absolute;
    left: 0; top: 14px;
    background: var(--aft-primary);
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: neutra, sans-serif;
}

/* ===================== Contact / Register Section ===================== */
.section-register {
    background: linear-gradient(135deg, var(--aft-primary), var(--aft-primary-dark));
    color: #fff;
    padding: 70px 0;
}
.section-register .aft-section-title { color: #fff; }
.section-register .aft-section-title::after { background: var(--aft-accent); }
.section-register .form-control {
    background: rgba(255,255,255,.95);
    border: 0;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
}
.section-register .form-select {
    border: 0;
    border-radius: 8px;
    padding: 14px 16px;
    background-color: rgba(255,255,255,.95);
}
.section-register .aft-btn-primary {
    background: var(--aft-accent);
}
.section-register .aft-btn-primary:hover {
    background: #fff; color: var(--aft-primary) !important;
}

/* ===================== Footer ===================== */
.aft-footer {
    background: #1a1a1a;
    color: #d8d8d8;
    padding: 40px 0 18px;
    text-align: center;
}
.aft-footer p { margin-bottom: 6px; font-size: 14px; line-height: 1.7; }
.aft-footer .copyright {
    border-top: 1px solid #333;
    margin-top: 18px;
    padding-top: 14px;
    font-size: 13px;
    color: #999;
}

/* ===================== Fixed CTAs ===================== */
.aft-fixed-cta {
    position: fixed;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1029;
}
.aft-fixed-cta--left { left: 24px; }
.aft-fixed-cta--right { right: 24px; }
.aft-fixed-cta .btn {
    border-radius: 30px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.aft-fixed-cta .btn-brochure {
    background: var(--aft-accent); color: #fff;
}
.aft-fixed-cta .btn-brochure:hover { background: var(--aft-accent-dark); color: #fff; }
.aft-fixed-cta .btn-enquire {
    background: var(--aft-primary); color: #fff;
}
.aft-fixed-cta .btn-enquire:hover { background: var(--aft-primary-dark); color: #fff; }

/* sticky bottom bar mobile */
.aft-mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    display: none;
    z-index: 1029;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,.12);
}
.aft-mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.aft-mobile-cta a.cta-call { background: var(--aft-accent); }
.aft-mobile-cta a.cta-enq { background: var(--aft-primary); }

/* ===================== Modal ===================== */
.aft-modal .modal-content {
    border-radius: 16px;
    border: 0;
    overflow: hidden;
}
.aft-modal .modal-header {
    background: var(--aft-primary);
    color: #fff;
    border: 0;
    padding: 22px 26px;
}
.aft-modal .modal-header .btn-close {
    filter: invert(1) brightness(2);
}
.aft-modal .modal-body { padding: 28px; }
.aft-modal .modal-title {
    font-family: neutra, sans-serif;
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
}

/* ===================== Helpers ===================== */
.text-balance { text-wrap: balance; }
.aft-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 220px;
    margin: 0 auto 30px;
}
.aft-divider::before, .aft-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aft-accent), transparent);
}
.aft-divider i { color: var(--aft-accent); }

/* ===================== Responsive ===================== */
@media (max-width: 1199.98px) {
    .aft-nav-links { gap: 14px; }
    .aft-nav-links a { font-size: 13px; letter-spacing: .5px; }
}

@media (max-width: 991.98px) {
    .aft-hero { margin-top: 70px; }
    .aft-section { padding: 50px 0; }
    .aft-section-title { font-size: 30px; letter-spacing: 2px; }
    .aft-nav-links { display: none; }
    .aft-mobile-toggle { display: inline-flex; }
    .aft-call-btn { padding: 8px 12px; font-size: 13px; }
    .overview-form-card { margin-bottom: 30px; }
    .aft-logo-left img { height: 48px; }

    /* Center arvind2 logo absolutely; hamburger stays in flow on the right */
    .aft-navbar { position: relative; }
    .aft-logo-right { flex: 0 0 auto; }
    .aft-logo-right img {
        position: absolute;
        left: 80%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: 40px;
        width: auto;
    }
}

@media (max-width: 767.98px) {
    body { padding-bottom: 60px; }
    .aft-section { padding: 40px 0; }
    .aft-section-title { font-size: 24px; }
    .aft-logo-left img { height: 36px; }
    .aft-logo-right img { height: 32px; }  /* absolute-centered logo size on small phones */
    .aft-call-btn span.lbl { display: none; }
    .aft-call-btn { padding: 8px 10px; }
    .aft-hero { margin-top: 64px; }
    .aft-fixed-cta { display: none; }
    .aft-mobile-cta { display: flex; }
    .overview-usps { grid-template-columns: 1fr; }
    .overview-form-card { margin-bottom: 30px; }
    .config-price { font-size: 24px; }
    .plot-size { font-size: 24px; }
    .about-card { padding: 28px 22px; }
    .location-map iframe { min-height: 320px; }
}

@media (max-width: 575.98px) {
    .aft-section-title { font-size: 20px; letter-spacing: 1px; }
    .showcase-body { padding: 22px 18px; }
    .aft-section-heading { margin-bottom: 32px; }
}

@media (max-width: 359.98px) {
    .aft-section-title { font-size: 18px; letter-spacing: 0.5px; }
}

/* Form validation error messages */
label.error {
    display: block;
    color: #e02020;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 0;
    line-height: 1.4;
}
