/* ============================================================
   GKN Realty — Casagrand Amor Landing Page
   Colors sampled directly from the reference design.
   ============================================================ */

:root {
    --orange: #D45A35;
    /* brand orange (button solid fill)  */
    --orange-dark: #BC4E2D;
    /* hover / pressed                   */
    --orange-tint: rgba(212, 90, 53, .12);
    --orange-tint-strong: rgba(212, 90, 53, .18);
    --orange-border: rgba(212, 90, 53, .35);

    --ink: #2C2C2C;
    /* headings (neutral, deep)  */
    --body: #646464;
    /* paragraph text            */
    --muted: #8A8A8A;
    /* small labels / captions   */

    --cream: #FCF8F0;
    /* cream section background      */
    --dark-bg: #1C1C1C;
    /* Location / CTA dark sections  */
    --dark-card: #282828;
    /* cards sitting on dark bg      */
    --footer-bg: #1A1A1A;
    --dark-text: #CCCCCC;
    /* light text on dark sections   */

    --gold: #E0A317;
    /* testimonial stars */
    --line: #ECECEC;
    /* hairline borders  */
}

.navbar-brand img {
    width: 180px;
}

/* ---------- Base ---------- */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-weight: 700;
}

.text-orange {
    color: var(--orange) !important;
}

.py-section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .5rem;
}

.section-lead {
    font-size: 1.02rem;
    color: var(--body);
    line-height: 1.7;
    max-width: 760px;
}

.bg-cream {
    background: var(--cream);
}

.bg-dark-section {
    background: var(--dark-bg);
}

.text-light-muted {
    color: var(--dark-text) !important;
}

/* ---------- Buttons ---------- */
.btn-orange {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: background .2s ease, transform .15s ease;
}
.yelbtn{
    background-color: #B28900;
    border: none;
}
.btn-orange:hover,
.btn-orange:focus {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-light {
    border-radius: 8px;
    font-weight: 600;
}

.btn-plan {
    background: #5E6F65;
   
    color: white;
    font-weight: 600;
    letter-spacing: .03em;
    border-radius: 8px;
    padding: .6rem 1rem;
    transition: all .2s ease;
}

.btn-plan:hover {
    background: var(--ink);
    color: #fff;
}

/* ---------- Navbar ---------- */
.site-navbar {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    padding: .65rem 0;
    backdrop-filter: blur(6px);
}

.brand-logo {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
}

.brand-text {
 color: #D4522A;
}

.brand-name {
    font-weight: 800;
    color: var(--ink);
    font-size: 1.1rem;
}

.brand-tag {
    font-size: .62rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-navbar .nav-link {
    color: #696969;
    font-weight: 500;
    font-size: .92rem;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--orange);
}

.btn-phone {
    font-size: .9rem;
    padding: .5rem 1rem;
}

/* ---------- Hero ---------- */
/* Add your own hero image:  background-image: url('hero.jpg');  */
#hero {
    position: relative;
    padding: 150px 0 90px;
    background: url('./img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
}

#hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #008159;
    color: white;
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.hero-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: .4rem;
}

.hero-project {
    font-family: 'Playfair Display', serif;
    color: #D3AF37;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.hero-sub {
    color: #E7E2DC;
    max-width: 560px;
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

/* ---------- Enquiry card (hero form) ---------- */
.enquiry-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.enquiry-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .25rem;
}

.enquiry-sub {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.enquiry-card .form-control {
    border-radius: 8px;
    border: 1px solid #E2E2E2;
    padding: .65rem .8rem;
    font-size: .92rem;
}

.enquiry-card .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 .2rem var(--orange-tint);
}

.enquiry-foot {
    font-size: .76rem;
    color: var(--muted);
    text-align: center;
    margin-top: .9rem;
}

/* ---------- Stats ---------- */
.stat-num {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: .72rem;
    letter-spacing: .08em;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: .35rem;
}

.highlight-img {
    object-fit: cover;
    max-height: 420px;
}

/* ---------- Info cards ---------- */
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px 22px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.info-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
    transform: translateY(-3px);
}

.cdimg img{
    width: 48px;
}

.info-card img{
    width: 48px;
    margin-bottom: 20px;
}

.info-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .4rem;
}

.info-text {
    font-size: .9rem;
    color: var(--body);
    margin-bottom: 0;
    line-height: 1.55;
}

.transparent-card {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--orange);
    border-radius: 12px;
    padding: 22px 24px;
}

/* ---------- Floor plan cards ---------- */
.plan-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s ease;
}

.plan-card:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

.plan-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.plan-body {
    padding: 22px;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
}

.plan-area {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 500;
}

.plan-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--orange);
    margin: .6rem 0 1rem;
}

.plan-price span {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 500;
}

/* ---------- Steps ---------- */
.step-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px 20px;
    position: relative;
    text-align: left;
}

.step-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange-tint-strong);
}

.step-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .45rem;
}

.step-text {
    font-size: .85rem;
    color: var(--body);
    line-height: 1.55;
    margin-bottom: 0;
}

/* ---------- Amenities ---------- */
#amenities{
    background-color: #FFFAF2;
}
.amenity-grid .amenity-tile {
  position: relative;
  aspect-ratio: 10 / 9;        /* equal, near-square tiles */
  border-radius: 12px;
  overflow: hidden;
  background: #E9E4DC;          /* placeholder while images load */
}
.amenity-grid .amenity-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* fills tile, no stretch — this is what was missing */
  display: block;
}
.amenity-grid .amenity-label {
  position: absolute;
  left: 12px; bottom: 10px;
  z-index: 2;
  color: #fff; font-weight: 600; font-size: .9rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.amenity-grid .amenity-tile:has(.amenity-label)::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 55%);
}

.amenity-labelled::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent 60%);
}

.amenity-grid .amenity-tile {
  position: relative;
  aspect-ratio: 10 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #E9E4DC;
}
.amenity-grid .amenity-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}

/* dark overlay — hidden until hover */
.amenity-grid .amenity-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.80), rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .35s ease;
}

/* label — hidden until hover */
.amenity-grid .amenity-label {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  z-index: 2;
  text-align: center;
  color: #fff; font-weight: 600; font-size: 1.15rem;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

/* reveal on hover */
.amenity-grid .amenity-tile:hover::after,
.amenity-grid .amenity-tile:focus-within::after { opacity: 1; }
.amenity-grid .amenity-tile:hover .amenity-label,
.amenity-grid .amenity-tile:focus-within .amenity-label { opacity: 1; transform: translateY(0); }
.amenity-grid .amenity-tile:hover img { transform: scale(1.05); }

/* ---------- Gallery ---------- */
.gallery-tile {
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #E9E4DC;
    aspect-ratio: 4 / 3;
    transition: transform .25s ease;
}

.gallery-tile:hover {
    transform: scale(1.02);
}

.gallery-tall {
    aspect-ratio: 3 / 4;
}

/* ---------- Location (dark) ---------- */
#location{
    background: url('./img/down-bg.webp') ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 340px;
    border: 1px solid rgba(255, 255, 255, .10);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    display: block;
}

.loc-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 20px;
}

.loc-head {
    color: var(--orange);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .8rem;
}

.loc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loc-list li {
    color: var(--dark-text);
    font-size: .88rem;
    padding: .35rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .08);
}

.loc-list li:last-child {
    border-bottom: 0;
}

/* ---------- Invest badge ---------- */
.invest-badge {
    display: inline-flex;
    align-items: center;
    background: #B28900;
    color: white;
 
    padding: .45rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: #fff;
    border: 1px solid #D45A3630;
    border-radius: 12px;
    padding: 26px 24px;
}

.stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: .9rem;
}

.testimonial-text {
    font-size: .92rem;
    color: var(--body);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--ink);
    font-size: .95rem;
}

.testimonial-author span {
    font-size: .8rem;
    color: #D45A36;
}

/* ---------- FAQ ---------- */
.faq-help {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange);
    border-radius: 12px;
    padding: 28px 24px;
}

.faq-help-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .5rem;
}

.faq-help-text {
    font-size: .92rem;
    color: var(--body);
    margin-bottom: 1.4rem;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--line);
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--ink);
    font-size: .98rem;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--orange);
    background: var(--orange-tint);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 .15rem var(--orange-tint-strong);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(45%) sepia(64%) saturate(900%) hue-rotate(335deg) brightness(92%);
}

.faq-accordion .accordion-body {
    font-size: .9rem;
    color: var(--body);
    line-height: 1.6;
}

/* ---------- CTA (dark) ---------- */
/* Add your own CTA image: background-image: url('cta.jpg'); */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: var(--dark-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
}



.cta-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    margin-bottom: 1.4rem;
}

.cta-form {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.cta-form .form-control {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .95);
    padding: .65rem .8rem;
}

/* ---------- Form submit status ---------- */
.form-status {
    font-size: .85rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: .4rem;
}

.cta-form .form-status {
    color: #F2C3AE;
}

/* ---------- Footer ---------- */
#footer {
    background: var(--footer-bg);
    color: #A9A9A9;
    padding: 60px 0 24px;
}

.footer-text {
    font-size: .9rem;
    color: #A9A9A9;
    margin-top:0px;
  
}

.footer-text span{
    color: white;
}

.footer-head {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: .3rem 0;
    font-size: .9rem;
    color: #A9A9A9;
}

.footer-links a {
    color: #A9A9A9;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 8px;
    transition: background .2s ease;
}

.footer-social a:hover {
    background: var(--orange);
}

.footer-disclaimer {
    font-size: .76rem;
    color: #7E7E7E;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 22px;
    margin-top: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 18px;
    margin-top: 8px;
}

.footer-bottom p {
    font-size: .82rem;
    color: #8C8C8C;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .site-navbar {
        background: #fff;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }

    .btn-phone {
        display: inline-block;
        margin-top: .5rem;
    }

    #hero {
        padding: 120px 0 70px;
    }

    .py-section {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .transparent-card {
        text-align: left;
    }
}

/* ============================================================
   5-STEP STAGGERED TIMELINE  (scoped: .enq5-*)
   ============================================================ */
.enq5-section { background: #fff; padding: 80px 0; }

.enq5-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: #2C2C2C; margin-bottom: .5rem; }
.enq5-sub   { font-size: 1.02rem; color: #646464; line-height: 1.7; margin-bottom: 0; }

/* Track (desktop grid) */
.enq5-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto 48px auto;
  column-gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}

/* dashed connector line */
.enq5-line {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  height: 0;
  margin: 0 8%;
  border-top: 2px dashed #D8D8D8;
}

/* badges on the line */
.enq5-badge {
  grid-row: 2;
  align-self: center;
  justify-self: center;
  z-index: 3;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: #D45A35; color: #fff;
  font-size: .8rem; font-weight: 700;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(212, 90, 53, .35);
}
.enq5-track > .enq5-badge:nth-child(2)  { grid-column: 1; }
.enq5-track > .enq5-badge:nth-child(4)  { grid-column: 2; }
.enq5-track > .enq5-badge:nth-child(6)  { grid-column: 3; }
.enq5-track > .enq5-badge:nth-child(8)  { grid-column: 4; }
.enq5-track > .enq5-badge:nth-child(10) { grid-column: 5; }

/* cards */
.enq5-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}
.enq5-track > .enq5-card:nth-child(3)  { grid-column: 1; }
.enq5-track > .enq5-card:nth-child(5)  { grid-column: 2; }
.enq5-track > .enq5-card:nth-child(7)  { grid-column: 3; }
.enq5-track > .enq5-card:nth-child(9)  { grid-column: 4; }
.enq5-track > .enq5-card:nth-child(11) { grid-column: 5; }

.enq5-card.is-up   { grid-row: 1; align-self: end; }
.enq5-card.is-down { grid-row: 3; align-self: start; }

/* orange connector stub */
.enq5-card::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 2px; height: 16px;
  background: #D45A35;
}
.enq5-card.is-up::after   { bottom: -16px; }
.enq5-card.is-down::after { top: -16px; }

/* card contents */
.enq5-icon {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  background: #FBEFE9;
  border: 1px solid #F2DDD3;
  color: #D45A35;
  border-radius: 10px;
  font-size: 1.1rem; margin-bottom: 12px;
}
.enq5-step { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .1em; color: #D45A35; text-transform: uppercase; margin-bottom: 4px; }
.enq5-name { font-size: 1rem; font-weight: 700; color: #2C2C2C; margin-bottom: .4rem; }
.enq5-text { font-size: .82rem; line-height: 1.55; color: #646464; margin-bottom: 0; }

/* Mobile: stack vertically */
@media (max-width: 991.98px) {
  .enq5-section { padding: 60px 0; }
  .enq5-track { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 30px; }
  .enq5-line { display: none; }
  .enq5-badge { width: 34px; height: 34px; margin-top: 8px; }
  .enq5-card { width: 100%; max-width: 460px; }
  .enq5-card::after { display: none; }
  .enq5-card.is-up, .enq5-card.is-down { align-self: center; }
}

.faq2-section { background: #FCFCFC; padding: 80px 0; }

.faq2-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #2C2C2C; margin-bottom: .4rem; }
.faq2-sub   { font-size: 1rem; color: #646464; margin-bottom: 2.2rem; }

/* Left dark card */
.faq2-help {
  background: #201C20;
  border-radius: 14px;
  padding: 28px 26px;
}
.faq2-help-title { color: #fff; font-weight: 700; font-size: 1.15rem; margin-bottom: .35rem; }
.faq2-help-text  { color: #B3AFB1; font-size: .9rem; margin-bottom: 1.3rem; }
.faq2-btn {
  display: block; width: 100%;
  text-align: center; text-decoration: none;
  background: #D45834; color: #fff;
  font-weight: 600; font-size: .92rem;
  padding: .7rem 1rem; border-radius: 8px;
  transition: background .2s ease;
}
.faq2-btn:hover { background: #BC4E2D; color: #fff; }

/* Accordion — separate spaced cards */
.faq2-acc .faq2-item {
  border: 1px solid #ECECEC;
  border-radius: 10px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  background: #fff;
}
.faq2-acc .faq2-item:last-child { margin-bottom: 0; }

.faq2-q {
  background: #fff !important;
  color: #2C2C2C;
  font-weight: 600; font-size: .98rem;
  padding: 16px 20px;
  box-shadow: none !important;
}
.faq2-q:focus { box-shadow: none !important; border: 0; }

/* open state: orange question text + orange left border on the item */
.faq2-q:not(.collapsed) { color: #D45834; }
.faq2-acc .faq2-item:has(.faq2-q:not(.collapsed)) { border-left: 3px solid #D45834; }

/* custom +/× toggle icon (replaces Bootstrap chevron) */
.faq2-q::after {
  content: "+";
  background-image: none;
  width: auto; height: auto;
  font-size: 1.5rem; line-height: 1; font-weight: 400;
  color: #D45834; transform: none;
}
.faq2-q:not(.collapsed)::after { content: "\00D7"; }  /* × */

.faq2-a { color: #646464; font-size: .9rem; line-height: 1.65; padding: 0 20px 18px; }


/* remove Bootstrap's chevron entirely so nothing sits under our icon */
.faq2-acc .accordion-button {
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}

/* draw our own + / × */
.faq2-acc .faq2-q::after {
  content: "+";
  background: none !important;     /* belt-and-braces: no leftover SVG */
  width: auto; height: auto;
  margin: 0;
  font-size: 1.5rem; line-height: 1; font-weight: 400;
  color: #D45A35;
  transform: none !important;      /* stop BS rotating the icon when open */
  transition: none;
}
.faq2-acc .faq2-q:not(.collapsed)::after { content: "\00D7"; }  /* × */

.faq2-acc .faq2-q::after {
  content: "+";
  background: none !important;
  width: auto; height: auto;
  margin: 0 0 0 auto;          /* ← pushes icon to the far right */
  padding-left: 12px;          /* gap from the text */
  font-size: 1.5rem; line-height: 1; font-weight: 400;
  color: #D45A35;
  transform: none !important;
  transition: none;
  flex-shrink: 0;              /* keep it from squashing on long questions */
}
.faq2-acc .faq2-q:not(.collapsed)::after { content: "\00D7"; }

.nwbtn{
    background-color: #B28900;
    color: white;
    border: none;
}

#contact{
    background: url('./img/down-bg-2.webp');
    background-position: center;
    background-size: cover;
}

.footer-links .bi::before {
    color: #B28900;
}

.footer-bottom span{
    color:#3398dc !important;
}



.footer-bottom a{
    text-decoration: none;
}

.desc{
    color: white;
}
 .pjg-section {
    --pjg-gap: 10px;
    --pjg-radius: 18px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }
 
  .pjg-section *,
  .pjg-section *::before,
  .pjg-section *::after {
    box-sizing: border-box;
  }
 
  .pjg-heading {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
  }
 
  /* ---------- shared tile styles ---------- */
  .pjg-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--pjg-radius);
    background: #ddd;
    margin: 0;
  }
 
  .pjg-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
 
  .pjg-tile:hover img {
    transform: scale(1.06);
  }
 
  .pjg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
  }
  #newsec{
    padding: 60px 0px;
  }
 
  .pjg-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  }
 
  /* ---------- top grid: 3 equal tiles / narrow + wide tile ---------- */
  .pjg-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 140px 150px;
    gap: var(--pjg-gap);
  }
 
  .pjg-top-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .pjg-top-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .pjg-top-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
  .pjg-top-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .pjg-top-5 { grid-column: 2 / 4; grid-row: 2 / 3; }
 
  /* ---------- bottom grid: 2 small tiles / wide tile / tall tile ---------- */
  .pjg-grid-bottom {
    margin-top: var(--pjg-gap);
    display: grid;
    grid-template-columns: 1fr 1fr 1.05fr;
    grid-template-rows: 140px 150px;
    gap: var(--pjg-gap);
  }
 
  .pjg-bottom-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .pjg-bottom-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .pjg-bottom-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
  .pjg-bottom-4 { grid-column: 3 / 4; grid-row: 1 / 3; }
 
  /* ---------- mobile ---------- */
  @media (max-width: 560px) {
    .pjg-grid-top {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 110px 110px 110px 160px;
    }
    .pjg-top-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .pjg-top-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .pjg-top-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
    .pjg-top-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .pjg-top-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
 
    .pjg-grid-bottom {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 110px 110px 160px;
    }
    .pjg-bottom-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .pjg-bottom-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .pjg-bottom-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
    .pjg-bottom-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
  }

  .pjg-grid-top{
    grid-template-rows: 220px 240px;
}

.pjg-grid-bottom{
    grid-template-rows: 220px 240px;
}


body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}


.pjg-section {
    --pjg-gap: 10px;
    --pjg-radius: 18px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pjg-section *,
.pjg-section *::before,
.pjg-section *::after {
    box-sizing: border-box;
}

.pjg-heading {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

/* ---------- shared tile styles ---------- */
.pjg-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--pjg-radius);
    background: #ddd;
    margin: 0;
}

.pjg-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pjg-tile:hover img {
    transform: scale(1.06);
}

.pjg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
}

#newsec {
    padding: 60px 0px;
}

.pjg-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.pjg-section {
    --pjg-gap: 10px;
    --pjg-radius: 18px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pjg-section *,
.pjg-section *::before,
.pjg-section *::after {
    box-sizing: border-box;
}

.pjg-heading {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.pjg-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--pjg-radius);
    background: #ddd;
    margin: 0;
}

.pjg-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.pjg-tile:hover img {
    transform: scale(1.06);
}

.pjg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
}

#newsec {
    padding: 60px 0px;
}

.pjg-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.pjg-section {
    --pjg-gap: 10px;
    --pjg-radius: 18px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pjg-section *,
.pjg-section *::before,
.pjg-section *::after {
    box-sizing: border-box;
}

.pjg-heading {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.pjg-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--pjg-radius);
    background: #ddd;
    margin: 0;
}

.pjg-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.pjg-tile:hover img {
    transform: scale(1.06);
}

.pjg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
}

#newsec {
    padding: 60px 0px;
}

.pjg-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ---------- top grid — taller rows ---------- */
.pjg-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 300px 320px;
    gap: var(--pjg-gap);
}

.pjg-top-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.pjg-top-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.pjg-top-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.pjg-top-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.pjg-top-5 { grid-column: 2 / 4; grid-row: 2 / 3; }

/* ---------- bottom grid — taller rows ---------- */
.pjg-grid-bottom {
    margin-top: var(--pjg-gap);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 340px;
    gap: var(--pjg-gap);
}

.pjg-bottom-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.pjg-bottom-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.pjg-bottom-3 { grid-column: 1 / 3; grid-row: 2 / 3; }

/* ---------- mobile ---------- */
@media (max-width: 560px) {
    .pjg-grid-top {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px 220px;
    }
    .pjg-top-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .pjg-top-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .pjg-top-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
    .pjg-top-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .pjg-top-5 { grid-column: 2 / 3; grid-row: 3 / 4; }

    .pjg-grid-bottom {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 260px;
    }
    .pjg-bottom-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .pjg-bottom-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .pjg-bottom-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
}