/* --- VARIABLES --- */
:root {
    --red: #E63946;
    --black: #111111;
    --border: #E5E5E5;
    --text: #333;
    --gray-bg: #F9FAFB;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* --- GLOBAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body { color: var(--text); background: #fff; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }

/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- UTILS --- */
.container { max-width: 90%; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 100px 0; }
.bg-gray { background: var(--gray-bg); }
.bg-black { background: #333; }
.text-red { color: var(--red); }
.text-white { color: #fff; }
.section-title { font-size: 36px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -0.5px; }
.section-title.center { text-align: center; border-bottom: 1px solid #ccc;}
.section-title.management strong { display: block;}
.section-title.white { color: #fff; border-bottom: none; margin: 0; }
.center-sub { text-align: center; color: #888; margin-bottom: 50px; font-size: 15px; }
.desc .section-title { margin: 20px 0; text-transform: capitalize; font-weight: 500; font-size: 26px; }

/* --- NAVBAR (Glass) --- */
.navbar { 
    background: linear-gradient(to right,#2f2e2e, #2a2a2a, #000000); backdrop-filter: blur(10px); 
    color: #fff; height: 90px; display: flex; align-items: center; 
    position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-weight: 800; font-size: 22px; height: 70px; letter-spacing: 1px; display: flex; gap: 10px; align-items: center; }
.logo a { height: 100%; width: 100%; display: block; }
.logo a > img { height: 100%; width: 100%; display: block; }
.nav-links a { color: #ccc; margin: 0 20px; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #fff; }
.phone-btn { border: 1px solid #eee; padding: 20px; border-radius: 5px; color: #fff; text-decoration: none; font-size: 22px; transition: all 0.3s; }
.phone-btn:hover { background: #fff; color: #000; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }
.phone-btn-mobile { display: none; }
.phone-btn i { transform: rotate(90deg); }
/* --- HERO --- */
.hero { background: linear-gradient(to right,#2f2e2e, #2a2a2a, #000000); color: #fff; position: relative; padding-top: 80px; padding-bottom: 0; }
.hero-layout { display: flex; align-items: center; gap: 60px; max-width: 100%;}
.hero-text { flex: 1; z-index: 2; }
.hero-text h1 { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
.hero-sub { color: #aaa; margin-bottom: 40px; font-size: 16px; max-width: 480px; }
.hero-stats { display: flex; gap: 40px; margin-bottom: 40px; }
.hero-stats strong { display: block; font-size: 35px; color: #fff; margin-bottom: 5px; }
.hero-stats span { font-size: 16px; color: #777; text-transform: uppercase; letter-spacing: 1px; }
.btn-white { background: #fff; color: #000; border: none; padding: 16px 35px; font-weight: 700; cursor: pointer; font-size: 14px; letter-spacing: 1px; transition: transform 0.3s, box-shadow 0.3s; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }
.btn-white i { color: red}
.btn-white.center { display: block; margin-top: 40px; margin-left: auto; margin-right: auto; }
.hero-image-container { flex: 1.5; height: 80vh; position: relative; width: 100%; overflow: hidden}
.red-box { position: absolute; bottom: 0; right: calc((100% - 1200px) / 2 + 20px); width: 550px; background: #eb2626; padding: 40px; color: #fff; z-index: 10; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.red-box h3 { font-size: 18px; margin-bottom: 15px; font-weight: 700; text-transform: uppercase; }
.red-box p { font-size: 14px; opacity: 0.9; }
.hero-image-container .hero-image img { max-width: 100%; max-height: 100%; width: 100%; height: 100%; display: block; }

/* --- LISTINGS --- */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; margin-top: 50px; }
.card { border: 1px solid #c3bebe; background: #fff; border-radius: 8px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.card-img { height: 240px; background-size: cover; position: relative; }
.tag-request { position: absolute; top: 15px; left: 15px; background: #fff; font-size: 11px; padding: 6px 12px; font-weight: 700; color: #333; text-transform: uppercase; }
.card-body { padding: 15px; background: rgb(0 0 0 / 2%); color: #000; }
.card-body h3 { font-size: 20px; margin-bottom: 5px; font-weight: 700; }
.loc { color: #777; font-size: 13px; margin-bottom: 20px; }
.specs { background: var(--gray-bg); padding: 10px; margin-bottom: 0; font-size: 13px; color: #555; border-radius: 4px; }
.spec-row { display: flex; justify-content: space-between; gap: 20px; }
.spec-row strong { display: block; }
.nearby { background: var(--gray-bg); padding: 10px; margin-bottom: 20px; font-size: 13px; color: #555; border-radius: 4px; }
.nearby-row { display: flex; justify-content: space-between; }
.nearby-row strong { display: block; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 25px; }
.tags span { background: #f0f0f0; font-size: 11px; padding: 5px 10px; color: #555; border-radius: 4px; font-weight: 500; }
.card-btns { display: flex; gap: 15px; }
.card-btns i { color: red; margin-left: 5px; }
.btn-black, .btn-outline { flex: 1; padding: 14px; font-size: 12px; font-weight: 700; cursor: pointer; text-transform: uppercase; transition: all 0.3s; }
.btn-black { background: #222; color: #fff; border: none; }
.btn-black:hover { background: var(--red); }
.btn-outline { background: transparent; border: 1px solid #ccc; }
.btn-outline:hover { border-color: #000; background: #000; color: #fff; }

/* --- TABLE --- */
.table-scroll-wrapper { margin-top: 40px; padding-bottom: 20px; overflow-x: auto; }
.table-container {border: 1px solid #ddd; min-width: 875px; box-shadow: var(--shadow); border-radius: 40px; background: #d9d9d9; overflow: visible;}
.tbl-header, .tbl-row { display: grid; grid-template-columns: 2fr 1fr 1fr; }
.tbl-row:nth-child(even) { background: #f9fafb; }
.col-1 { padding: 25px; display: flex; align-items: center; font-size: 14px; font-weight: 600; color: #444; border-bottom: 1px solid #eee; }
.col-2, .col-3 { display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #eee; }
.tbl-header .col-1, .tbl-header .col-3 { font-weight: 700; font-size: 20px; }
.dark-head { background: #222; color: #fff; font-size: 13px; font-weight: 700; border-radius: 28px 28px 0 0; font-size: 20px; }
.dark-col { background: #222; color: #fff; border-bottom: 1px solid #333; }
.dark-col i { background: #fff; color: #222; height: 25px; width: 25px; border-radius: 50px; text-align: center; line-height: 25px; }
.dark-col.bottom { border-radius: 0 0 28px 28px; }
.col-3 { color: #444; }
.fa-check { color: #fff; }

/* --- AMENITIES --- */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #333; margin-top: 30px; border: 1px solid #aaa; }
.a-box { background: var(--black); padding: 40px; transition: background 0.3s; border: 1px solid #444; }
.a-box:hover { background: #1a1a1a; }
.a-box h4 { color: #fff; font-size: 22px; margin-bottom: 10px; font-weight: 700; }
.a-box p { color: #888; font-size: 14px; line-height: 1.6; }

/* --- WHY REALSTA CAROUSEL --- */
.split-container { display: flex; gap: 60px; align-items: center; overflow: hidden; max-width: 95%; }
.why-left { flex: 0 0 60%; }
.why-left h2 { font-size: 35px; padding: 20px 0; font-weight: 400; }
.why-desc { color: #666; font-size: 15px; margin-bottom: 40px; line-height: 1.7; }
.why-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ws-item { display: flex; align-items: center; gap: 15px; }
.icon-circle { width: 45px; height: 45px; border: 1px solid #ffcccc; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 16px; transition: all 0.3s; }
.ws-item:hover .icon-circle { background: var(--red); color: #fff; border-color: var(--red); }
.ws-text strong { font-size: 26px; color: #000; }
.ws-text span { font-size: 16px; color: #888; letter-spacing: 0.5px; margin-top: 3px; text-transform: uppercase; font-weight: 600; display: block; }

.slider-nav-btns { display: flex; gap: 15px; }
.nav-btn { width: 55px; height: 55px; border-radius: 12px; cursor: pointer; transition: all 0.3s; display: flex; justify-content: center; align-items: center; font-size: 16px; }
.nav-btn.light { background: transparent; border: 1px solid #ddd; color: #333; }
.nav-btn.light:hover { border-color: #000; color: #000; }
.nav-btn.dark { background: #111; border: 1px solid #111; color: #fff; }
.nav-btn.dark:hover { background: var(--red); border-color: var(--red); }

.why-right-carousel { flex: 1; overflow: hidden; padding: 20px 0; }
.carousel-track { display: flex; gap: 25px; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.carousel-card { min-width: 280px; height: 400px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.carousel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.carousel-card:hover img { transform: scale(1.05); }

/* --- HOW IT WORKS & FAQ --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; }
.steps-grid .reveal { background: #fff; padding: 15px; border: 1px solid #e0e0e0; font-size: 12px; font-weight: 400; border-radius: 25px; transition: 0.3s; }
.steps-grid .reveal:hover { border-color: #000; transform: translateY(-5px); box-shadow: var(--shadow); }
.step-box { display: flex; align-items: center; gap: 20px; font-size: 18px; font-weight: 600; border-radius: 25px; transition: 0.3s; }
.step-num { min-width: 40px; height: 40px; line-height: 40px; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; border-radius: 25px; }
.steps-grid .reveal p { margin-left: 60px; }
.faq-container { max-width: 100%; margin: 0; border-bottom: 1px solid #eee; }
details { border-bottom: 1px solid #eee; padding: 25px 0; }
details:open summary { color: var(--red); }
summary { font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 25px; transition: color 0.3s; }
summary:hover { color: var(--red); }
details p { margin-top: 18px; color: #666; line-height: 1.6; }

/* --- FOOTER --- */
.footer-dark { background: var(--black); padding: 100px 0 50px; color: #fff; }
.footer-white { background: #fff; padding: 100px 0 20px; color: #000; }
.fb-left { width: 40%; }
.fb-left p { font-size: 14px; margin-top: 20px; }
.fb-right { width: 30%; display: flex; flex-direction: column; row-gap: 15px; font-size: 16px;}
.fb-right p { display: flex; align-items: baseline; font-size: 14px; }
.fb-right i { margin-right: 10px; color: #f75f76; }
.contact-form { max-width: 750px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 18px; color: #fff; width: 100%; font-size: 14px; outline: none; border-radius: 4px; transition: all 0.3s; }
input:focus { border-color: #fff; background: rgba(255,255,255,0.1); }
.full-input { margin-bottom: 40px; }
.btn-submit { background: transparent; border: 1px solid #fff; color: #fff; padding: 16px 50px; font-weight: 700; font-size: 13px; display: block; margin-left: auto; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit:hover { background: #fff; color: #000; }
.copyright { text-align: center; padding: 20px; font-size: 14px; display: flex; justify-content: space-between; color: #555;}
.copyright-right { display: flex; gap: 10px; color: #555;}
.copyright-right a { color: #555;}
.footer-bottom { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; margin-top: 0; padding: 40px 0; display: flex; justify-content: space-between; font-size: 14px; color: #666; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .section-pad { padding: 60px 0; }
    .hero-layout { flex-direction: column; }
    .hero-text { text-align: center; padding: 0 20px; }
    .hero-stats { justify-content: center; }
    .red-box { position: relative; width: 100%; right: auto; bottom: auto; margin-top: -30px; }
    .listings-grid, .amenities-grid, .steps-grid, .form-grid { grid-template-columns: 1fr; }
    .split-container { flex-direction: column; align-items: flex-start; }
    .why-left, .why-right-carousel { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: rgba(17,17,17,0.95); backdrop-filter: blur(10px); flex-direction: column; padding: 30px; }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 18px; margin: 15px 0; }
    .desktop-only { display: none; }
    .phone-btn-mobile { display: inline-block; margin-top: 10px; color: var(--red); font-size: 18px; font-weight: 700; }
    .hero-image-container { height: 300px; width: 100%; }
    .hero h1 { font-size: 36px; }
    .container {max-width: 100%; padding: 0 20px;}
    .hero-stats {gap: 10px; }
    .hero-stats strong {font-size: 26px;}
    .hero-stats span {font-size: 12px;}
    .why-stats-grid {gap: 15px;}
    .ws-text strong {font-size: 20px;}
    .ws-text span {font-size: 12px;}
    summary {font-size: 18px;}
    .section-title {font-size: 28px;}
    .fb-left { width: 100%; text-align: left;}
    .fb-right { width: 100%; text-align: left;}
}





/* SECTION */
.callback-section {
  width: 100%;
}

/* HEADER */
.callback-header {
  text-align: center;
  padding: 60px 20px 50px;
}

.callback-header h1 {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #111;
}

.callback-header h1 span {
  font-weight: 700;
}

.callback-header p {
  margin-top: 12px;
  font-size: 16px;
  color: #444;
}

/* FORM AREA */
.callback-form-area {
  position: relative;
  background: linear-gradient(135deg, #3c3f45, #0f1216);
  padding: 70px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

/* FORM */
.callback-form {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    color: #ddd;
    align-items: center;
}

.left-form {
width: 60%;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  font-size: 12px;
  color: #bfc2c6;
  display: block;
  margin-bottom: 0;
}

.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding: 5px 0 0;
  color: #fff;
  font-size: 16px;
}

.field input:focus {
  outline: none;
  border-bottom-color: #fff;
}

/* SUBMIT */
.submit-wrap {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.submit-wrap .submit-btn {
    width: auto!important;
}

.submit-wrap button {
  padding: 18px 46px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.submit-wrap button:hover {
  background: rgba(255,255,255,0.35);
}

/* DECORATIVE CIRCLES */
.circles {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-10%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 0 0 40px rgba(255,255,255,0.04),
    inset 0 0 0 80px rgba(255,255,255,0.03),
    inset 0 0 0 120px rgba(255,255,255,0.02);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .callback-form-area {
    flex-direction: column;
    padding: 50px 30px;
  }

  .callback-form,
  .submit-wrap {
    width: 100%;
    display: block;
  }

  .submit-wrap {
    margin-top: 40px;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .circles {
    display: none;
  }
}


/* SLIDER */
.slider {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0 0 0 / 19%);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 3px 10px;
  cursor: pointer;
  border-radius: 50%;
}

.nav.prev { left: 10px; }
.nav.next { right: 10px; }

/* DOTS */
.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #fff;
}




/* BUTTON */
.open-modal-btn {
  padding: 14px 28px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 30px;
}

/* OVERLAY */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* MODAL BOX */
.modal-box {
  width: 90%;
  max-width: 900px;
  background: linear-gradient(135deg, #2b2f33, #121417);
  color: #fff;
  padding: 50px;
  border-radius: 16px;
  position: relative;
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
}

.close-btn:hover {
  opacity: 1;
}

/* HEADER */
.modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.modal-header h2 {
  font-size: 28px;
  letter-spacing: 3px;
}

.modal-header span {
  font-weight: 700;
}

.modal-header p {
  font-size: 15px;
  opacity: 0.8;
  margin-top: 10px;
}

/* FORM */
.enquiry-form {
  max-width: 700px;
  margin: auto;
}

.form-row {
  display: flex;
  gap: 20px;
}
.enquiry-form  .submit-btn {
  display: block;
  margin: 40px auto 0;
  padding: 16px 46px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: auto;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enquiry-form .submit-btn:hover {
  background: #fff;
  color: #000;
}

.enquiry-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding: 14px 0;
  margin-bottom: 28px;
  color: #fff;
  font-size: 15px;
}

.enquiry-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.enquiry-form input:focus {
  outline: none;
  border-color: #fff;
}

/* SUBMIT */
.submit-btn {
  display: block;
  margin: 40px auto 0;
  padding: 16px 46px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #fff;
  color: #000;
}
/* jQuery Validate error text */
label.error {
  color: #ff4d4d;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
  display: none !important;
}

/* Highlight input with error */
input.error {
  border-bottom: 1px solid #ff4d4d !important;
}

/* Prevent layout breaking */
.form-row label.error {
  position: absolute;
  bottom: -18px;
  left: 0;
}
/* RESPONSIVE */
@media(max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .modal-box {
    padding: 35px 25px;
  }
  .callback-form,
  .submit-wrap {
    width: 100%;
    display: block;
  }
  .left-form {
    width: 100%;
  }
}


/* =========================
   FIXED HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: none;
}

.site-header.scrolled {
    background: #d5dddf;
    z-index: 99999;
    padding: 10px 60px;
}
.site-header.scrolled .call-btn {
    color: #333;
    border: 1px solid #aaa;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

/* CALL BUTTON */
.call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.call-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.call-icon {
  font-size: 18px;
}

/* =========================
   HERO SECTION (FULL WIDTH)
========================= */
.hero-full {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 9999;
  background: linear-gradient(90deg, #b9c5c7 0%, #ced6db 45%, #c3cdcf 100%);
  padding: 140px 60px 60px;
}

/* LEFT CONTENT */
.hero-left {
  max-width: 620px;
  position: relative;
  z-index: 9;
}

.internalpages.hero-full {
  position: relative;
  min-height: 85vh;
  width: 100%;
  overflow: hidden;
  z-index: 9;
}

.internalpages .hero-left {
  max-width: 620px;
  position: relative;
  z-index: 9;
}

.hero-left h1 {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
}

.hero-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}

/* STATS */
.stats {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}

.stats h3 {
  font-size: 32px;
  color: #333;
}

.stats span {
  font-size: 12px;
  text-transform: uppercase;
  color: #444;
}

/* BUTTON */
.primary-btn {
  padding: 16px 34px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

/* =========================
   RIGHT BUILDING IMAGE
========================= */
.hero-building {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-building img {
  height: 100%;
  width: 100%;
  float: right;
}

/* =========================
   CTA BOX
========================= */
.cta-box {
  position: absolute;
  right: 60px;
  bottom: 0;

  width: 600px;
  padding: 40px;
  border-radius: 12px;

  background: #e42020;
  color: #fff;

  z-index: 3;
}

.cta-box h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 14px;
  line-height: 1.6;
}

.contactrow {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
}
.contactrow h2 {
    font-size: 26px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}
.map {
    margin-top: 40px;
}
.map iframe {
    display: block;
    width: 100%;
    border: none;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero-full {
    padding: 120px 20px 40px;
  }
  .internalpages.hero-full {
      min-height: 95vh;
  }

  .hero-left h1 {
    font-size: 35px;
  }

  .hero-left {
    margin-bottom: 50px;
  }
  .hero-building {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 40px;
    bottom: 0;
  }

  .hero-building img {
    width: 100%;
    height: auto;
  }

  .cta-box {
    position: static;
    width: 100%;
    margin-top: 30px;
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-full {
    padding: 120px 20px 40px;
  }
  .internalpages.hero-full {
      min-height: 95vh;
  }
  .site-header, .site-header.scrolled {
    padding: 14px 18px;
  }

  .call-text {
    display: none;
  }

  .call-btn {
    padding: 10px 12px;
    border-radius: 50%;
  }

  .hero-left h1 {
    font-size: 35px;
  }

  .stats {
    gap: 30px;
  }
  .hero-left {
    margin-bottom: 50px;
  }
  .hero-building {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 40px;
    bottom: 0;
  }
  .cta-box {
    position: static;
    width: 100%;
    margin-top: 30px;
    display: none;
  }
  .contactrow {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    justify-content: space-between;
   }
    .copyright {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .map iframe {
      width: 100%;
      height: auto;
  }
}
/* --- COMPARISON TABLE – MOBILE FRIENDLY (NO SCROLL) --- */
@media (max-width: 768px) {
  /* Force wrapper to not scroll */
  .table-scroll-wrapper {
    overflow-x: visible !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Let container shrink */
  .table-container {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: visible !important;
  }

  /* Re‑grid with flexible columns */
  .tbl-header,
  .tbl-row {
    grid-template-columns: 1.5fr 1fr 1fr !important;
  }

  /* All cells – allow text wrapping and shrink */
  .tbl-header .col-1,
  .tbl-row .col-1,
  .tbl-header .col-2,
  .tbl-row .col-2,
  .tbl-header .col-3,
  .tbl-row .col-3 {
    min-width: 0 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* First column – slightly more width, smaller text */
  .tbl-header .col-1,
  .tbl-row .col-1 {
    font-size: 12px !important;
    padding: 12px 8px !important;
    font-weight: 600;
    line-height: 1.4;
  }

  /* Header cells (Managed Office / Traditional Office) */
  .tbl-header .col-2,
  .tbl-header .col-3 {
    font-size: 12px !important;
    padding: 12px 6px !important;
    text-align: center;
  }

  /* Data cells */
  .tbl-row .col-2,
  .tbl-row .col-3 {
    font-size: 11px !important;
    padding: 12px 6px !important;
    text-align: center;
  }

  /* Dark header background */
  .dark-head {
    font-size: 12px !important;
  }

  /* Icons size */
  .dark-col i,
  .col-3 i {
    font-size: 12px !important;
  }

  /* Rounded corners at bottom */
  .dark-col.bottom {
    border-radius: 0 0 20px 20px !important;
  }
}

/* For very narrow screens (≤480px) – further reduce */
@media (max-width: 480px) {
  .tbl-header,
  .tbl-row {
    grid-template-columns: 1.3fr 1fr 1fr !important;
  }

  .tbl-header .col-1,
  .tbl-row .col-1 {
    font-size: 10px !important;
    padding: 8px 4px !important;
  }

  .tbl-header .col-2,
  .tbl-header .col-3,
  .tbl-row .col-2,
  .tbl-row .col-3 {
    font-size: 9px !important;
    padding: 8px 4px !important;
  }

  .dark-head {
    font-size: 10px !important;
  }

  .dark-col i,
  .col-3 i {
    font-size: 10px !important;
  }
}
