.error-name, .error-email, .error-phone, .error-email-valid, .error-phone-valid {
    color: red;
    float: left;
    margin-bottom: 10px;
    display: none;
}

#loading_bottom_1, #loading_bottom_2, #loading_bottom_3 {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0px 0px -50px;
}

#contactForm {
    position: relative;
}



/* ===== TRUMP TOWER HYDERABAD ===== */
:root {
  --gold: #c9a84c;
  --gold-dark: #a8893a;
  --gold-light: #e2c97e;
  --dark: #0f0e0c;
  --charcoal: #1e1c18;
  --body-bg: #faf8f4;
  --white: #ffffff;
  --text: #2c2a26;
  --text-light: #6b6860;
  --border: #e4d9c4;
  --section-alt: #f5f0e8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { font-family: 'Segoe UI', Georgia, serif; font-size: 16px; color: var(--text); background: var(--body-bg); padding-bottom: 60px; overflow-x: hidden; max-width: 100%; }
section { overflow-x: hidden; }
@media(min-width:992px) { body { padding-bottom: 0; } }
h1,h2,h3,h4,h5,h6 { font-family: Georgia, 'Times New Roman', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.tt-gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.tt-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--gold); border-radius: 50px;
  transition: all .3s;
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
  letter-spacing: 0.4px;
}
.tt-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold-dark); color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}
.tt-btn-outline {
  border: 2px solid rgba(201,168,76,0.8);
  color: var(--white) !important;
  font-weight: 600; font-size: 15px;
  background: rgba(201,168,76,0.08);
  border-radius: 50px; transition: all .3s;
  backdrop-filter: blur(4px);
}
.tt-btn-outline:hover {
  background: var(--gold); color: var(--white) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* ===== NAVBAR — dark floating pill ===== */
.tt-nav {
  background: transparent;
  padding: 14px 0;
  transition: all 0.4s ease;
}
.tt-nav .container {
  background: rgba(12, 11, 9, 0.88);
  border-radius: 60px;
  padding: 10px 28px;
  border: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  max-width: calc(100% - 24px);
}
.tt-nav.tt-nav-scrolled { padding: 8px 0; }
.tt-nav.tt-nav-scrolled .container {
  background: rgba(12, 11, 9, 0.98);
  box-shadow: 0 10px 45px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.4);
}
.tt-brand {
  font-family: Georgia, serif; font-size: 19px; font-weight: 700;
  letter-spacing: 3px; color: var(--white) !important;
}
.tt-brand span { color: var(--gold); }
.tt-navlink {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.78) !important;
  padding: 7px 14px !important;
  border-radius: 50px; transition: all .25s;
  letter-spacing: 0.3px;
}
.tt-navlink:hover { background: rgba(201,168,76,0.14); color: var(--gold) !important; }
.tt-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  font-weight: 700; font-size: 13px;
  padding: 9px 22px; border-radius: 50px;
  border: 2px solid var(--gold); transition: all .3s;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
  letter-spacing: 0.3px;
}
.tt-nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,168,76,0.45);
}
.tt-toggler { background: none; border: none; cursor: pointer; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.tt-toggler span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
@media(min-width:992px) { .tt-toggler { display: none; } }
@media(max-width:991px) {
  .tt-nav .container { border-radius: 22px; padding: 12px 20px; }
  #navMenu {
    background: rgba(12,11,9,0.98); padding: 16px;
    border-radius: 14px; margin-top: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
    border: 1px solid rgba(201,168,76,0.2);
  }
  .tt-navlink { display: block; margin-bottom: 4px; color: rgba(255,255,255,0.8) !important; }
  .tt-nav-cta { display: inline-block; margin-top: 8px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-55px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(55px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
@keyframes shimmerSlide {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes goldLine {
  0%   { width: 0; }
  100% { width: 60px; }
}

/* Hero entrance */
.tt-hero-content  { animation: fadeInLeft  0.9s ease both; }
.tt-hero-form-col { animation: fadeInRight 0.9s 0.2s ease both; }

/* Scroll-reveal classes */
.tt-animate, .tt-animate-left, .tt-animate-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.tt-animate       { transform: translateY(36px); }
.tt-animate-left  { transform: translateX(-40px); }
.tt-animate-right { transform: translateX(40px); }
.tt-animate.visible,
.tt-animate-left.visible,
.tt-animate-right.visible { opacity: 1; transform: translate(0,0); }
.tt-d1 { transition-delay: 0.1s; }
.tt-d2 { transition-delay: 0.2s; }
.tt-d3 { transition-delay: 0.3s; }
.tt-d4 { transition-delay: 0.4s; }

/* ===== HERO ===== */
.tt-hero {
  position: relative;
  background: url('../images/slider/slider-01.jpeg') center/cover no-repeat;
  min-height: 100vh;
}
.tt-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(9,8,6,0.9) 0%, rgba(14,13,10,0.78) 55%, rgba(25,18,8,0.68) 100%);
  z-index: 1;
}
.tt-hero-content {
  position: relative; z-index: 2;
  padding-top: 95px;
  text-align: left;
}
.tt-hero-form-col {
  position: relative; z-index: 2;
  padding-top: 95px;
}
.tt-label {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 12px; display: block;
}
.tt-h1 {
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 14px;
}
.tt-tagline { font-size: 17px; color: rgba(255,255,255,0.78); margin-bottom: 8px; font-style: italic; }
.tt-price { font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.tt-price .tt-gold { font-size: 26px; }
.tt-bullets li {
  font-size: 14px; color: rgba(255,255,255,0.88);
  margin-bottom: 9px; display: flex; align-items: flex-start;
}
.tt-trust-badges .tt-badge {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12px; color: var(--white); font-weight: 500;
  backdrop-filter: blur(6px);
}

/* Hero Form (right card) */
.tt-hero-form {
  background: rgba(255,255,255,0.97);
  border-radius: 18px; padding: 30px 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  border-top: 4px solid var(--gold);
  position: relative; overflow: hidden;
}
.tt-hero-form::before {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.07), transparent);
  animation: shimmerSlide 3.5s infinite;
}
.tt-form-card {
  background: var(--white); border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border-top: 4px solid var(--gold);
}
.tt-form-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.4px; }
.tt-form-sub { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.tt-input {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 15px; font-size: 14px;
  color: var(--dark); background: #fafaf8;
  transition: all .25s; width: 100%;
}
.tt-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14);
  background: var(--white); outline: none;
}
.tt-privacy { font-size: 11px; color: var(--text-light); text-align: center; }

.tt-hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--white); font-size: 16px;
  animation: bounce 2s infinite; opacity: 0.7;
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.tt-breadcrumb { background: none; padding: 0; }
.tt-breadcrumb .breadcrumb-item,
.tt-breadcrumb .breadcrumb-item a { font-size: 12px; color: rgba(255,255,255,0.48); }
.tt-breadcrumb .breadcrumb-item.active { color: var(--gold); }
.tt-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.28); }

/* Responsive hero */
@media(max-width:991px) {
  .tt-hero-content { padding-top: 100px; text-align: center; }
  .tt-hero-form-col { padding-top: 10px; }
  .tt-hero .tt-bullets { display: inline-block; text-align: left; }
}
@media(max-width:575px) {
  .tt-hero-content { padding-top: 90px; }
  .tt-h1 { font-size: 30px; }
  .tt-hero-form { padding: 22px 16px; }
}

/* ===== SECTION TYPOGRAPHY ===== */
.tt-section-tag {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 10px; display: block;
}
.tt-h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 18px; }
.tt-h3 { font-size: 22px; font-weight: 700; color: var(--dark); }
.tt-body { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.tt-disclaimer { font-size: 12px; color: var(--text-light); }

/* Gold animated underline for centered headings */
.text-center .tt-h2 { display: inline-block; position: relative; padding-bottom: 14px; }
.text-center .tt-h2::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 2px;
  transition: width 0.8s ease 0.3s;
}
.text-center .tt-h2.visible::after,
.visible .text-center .tt-h2::after { width: 60px; }

/* ===== HIGHLIGHTS BAR ===== */
.tt-highlights {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.tt-stat { padding: 22px 12px; position: relative; }
.tt-stat::after {
  content: ''; position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(201,168,76,0.18);
}
.col-lg-3:last-child .tt-stat::after { display: none; }
.tt-stat-num { font-size: 40px; font-weight: 700; color: var(--gold); font-family: Georgia, serif; }
.tt-stat-label { font-size: 13px; color: #ccc; letter-spacing: 0.5px; margin-top: 5px; }

/* ===== ABOUT ===== */
.tt-about { background: var(--white); position: relative; overflow: hidden; }
.tt-about-bg {
  position: absolute; right: -60px; top: 0; bottom: 0;
  width: 42%; background: url('../images/gallery/gallery-05.jpg') center/cover no-repeat;
  opacity: 0.05; z-index: 0;
}
.tt-about-img {
  border-radius: 14px;
  box-shadow: 0 22px 65px rgba(0,0,0,0.16);
  width: 100%; height: 420px; object-fit: cover;
  transition: transform 0.5s ease;
}
.tt-about-img:hover { transform: scale(1.02); }
.tt-badge-item {
  background: var(--section-alt); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-size: 14px; color: var(--dark);
  transition: all .25s;
}
.tt-badge-item:hover { border-color: var(--gold); background: #fff9ed; transform: translateY(-2px); }

/* ===== PRICING ===== */
.tt-pricing { background: var(--section-alt); }
.tt-price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px 26px;
  text-align: center;
  transition: all .35s cubic-bezier(0.25,0.46,0.45,0.94);
  height: 100%; position: relative; overflow: hidden;
}
.tt-price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.tt-price-card:hover::before { transform: translateX(0); }
.tt-price-card:hover { transform: translateY(-8px); box-shadow: 0 22px 60px rgba(0,0,0,0.12); border-color: var(--gold); }
.tt-price-featured {
  border-color: var(--gold);
  box-shadow: 0 14px 55px rgba(201,168,76,0.22);
  transform: scale(1.03);
}
.tt-price-featured:hover { transform: scale(1.03) translateY(-8px); }
.tt-price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); font-size: 11px; font-weight: 700;
  padding: 4px 20px; border-radius: 20px; letter-spacing: 1px;
  white-space: nowrap; box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}
.tt-price-type { font-size: 30px; font-weight: 700; color: var(--dark); font-family: Georgia, serif; }
.tt-price-area { font-size: 14px; color: var(--text-light); margin: 8px 0; }
.tt-price-val { font-size: 22px; font-weight: 700; color: var(--gold); margin-top: 16px; }
.tt-price-divider { border-color: var(--border); margin: 18px 0; }
.tt-price-list li { font-size: 14px; color: var(--text); padding: 5px 0; text-align: left; }

/* ===== INVESTMENT INSIGHT ===== */
.tt-insight { background: var(--white); }
.tt-insight-point {
  border-left: 3px solid var(--gold);
  padding-left: 20px; margin-bottom: 30px;
  transition: border-left-width 0.3s;
}
.tt-insight-point:hover { border-left-width: 5px; }
.tt-insight-head { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; font-family: 'Segoe UI', sans-serif; }
.tt-compare-table { border: 1px solid var(--border); font-size: 14px; border-radius: 8px; overflow: hidden; }
.tt-compare-table thead { background: var(--dark); color: var(--white); }
.tt-compare-table thead th { border: none; padding: 12px 16px; font-weight: 600; }
.tt-compare-table tbody td { padding: 11px 16px; border-color: var(--border); }
.tt-compare-highlight { background: #fff9ed; }
.tt-roi-card {
  background: linear-gradient(145deg, var(--dark) 0%, var(--charcoal) 100%);
  border-radius: 16px; padding: 32px 28px;
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
  position: relative; overflow: hidden;
}
.tt-roi-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.tt-roi-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 22px; font-family: Georgia, serif; }
.tt-roi-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px; color: #ccc; transition: background 0.2s;
}
.tt-roi-row:last-of-type { border-bottom: none; }
.tt-tag {
  background: var(--section-alt); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; color: var(--charcoal);
  transition: all .25s; display: inline-block;
}
.tt-tag:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }

/* ===== AMENITIES — slider only ===== */
.tt-amenities-sec { background: var(--section-alt); }
.tt-amenity-img {
  border-radius: 12px; height: 210px; width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}
.tt-amenity-img:hover { transform: scale(1.04); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }
.tt-amenity-slider { padding-bottom: 54px; }
.tt-car-btn {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; opacity: 1;
  top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(201,168,76,0.45);
  transition: all 0.3s;
}
.tt-car-btn:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 10px 30px rgba(201,168,76,0.55); }
.tt-car-btn i { color: var(--white); font-size: 16px; }
.carousel-control-prev.tt-car-btn { left: -22px; }
.carousel-control-next.tt-car-btn { right: -22px; }
.carousel-indicators button {
  background-color: var(--gold); width: 8px; height: 8px;
  border-radius: 50%; border: none; opacity: 0.38; transition: all 0.3s;
}
.carousel-indicators button.active { opacity: 1; width: 26px; border-radius: 4px; }

/* ===== GALLERY ===== */
.tt-gallery-sec { background: var(--body-bg); }
.tt-gal-item { position: relative; overflow: hidden; }
.tt-gal-item img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform .5s cubic-bezier(0.25,0.46,0.45,0.94); display: block;
}
.tt-gal-item:hover img { transform: scale(1.08); }
.tt-gal-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s;
}
.tt-gal-overlay i { color: var(--white); font-size: 26px; opacity: 0; transition: opacity .3s; }
.tt-gal-item:hover .tt-gal-overlay { background: rgba(10,9,7,0.52); }
.tt-gal-item:hover .tt-gal-overlay i { opacity: 1; }

/* ===== DOCS ===== */
.tt-docs { background: var(--white); }
.tt-doc-wrap {
  position: relative; cursor: pointer;
  border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border); transition: border-color 0.3s;
}
.tt-doc-wrap:hover { border-color: var(--gold); }
.tt-doc-img { width: 100%; border-radius: 10px; }
.tt-doc-overlay {
  position: absolute; inset: 0; background: rgba(26,26,26,0);
  display: flex; align-items: center; justify-content: center; transition: background .3s;
}
.tt-doc-overlay span { color: var(--white); font-size: 15px; font-weight: 600; opacity: 0; transition: opacity .3s; }
.tt-doc-wrap:hover .tt-doc-overlay { background: rgba(10,9,7,0.6); }
.tt-doc-wrap:hover .tt-doc-overlay span { opacity: 1; }

/* ===== LOCATION ===== */
.tt-location-sec { background: var(--section-alt); }
.tt-location-list {
  background: var(--white); border-radius: 14px;
  padding: 28px; border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.tt-loc-item {
  padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--dark);
  transition: color 0.2s, padding-left 0.2s;
}
.tt-loc-item:hover { color: var(--gold); padding-left: 8px; }
.tt-loc-item:last-child { border-bottom: none; }
.tt-map-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 14px 45px rgba(0,0,0,0.14);
  border: 2px solid var(--border);
}

/* ===== TESTIMONIALS ===== */
.tt-testimonials { background: var(--white); }
.tt-testi-card {
  background: var(--section-alt); border-radius: 16px;
  padding: 32px 28px; border: 1px solid var(--border);
  height: 100%; transition: all .35s;
  position: relative; overflow: hidden;
}
.tt-testi-card::before {
  content: '"';
  position: absolute; top: -10px; right: 18px;
  font-size: 100px; color: rgba(201,168,76,0.1);
  font-family: Georgia, serif; line-height: 1;
}
.tt-testi-card:hover { box-shadow: 0 14px 45px rgba(0,0,0,0.1); transform: translateY(-5px); border-color: var(--gold); }
.tt-stars i { color: var(--gold); font-size: 14px; }
.tt-testi-text { font-size: 15px; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.tt-testi-author strong { display: block; font-size: 15px; color: var(--dark); }
.tt-testi-author span { font-size: 13px; color: var(--text-light); }

/* ===== AUTHOR / COMPANY ===== */
.tt-author-sec { background: var(--section-alt); }
.tt-company-stat {
  background: var(--white); border-radius: 10px;
  padding: 18px 16px; border: 1px solid var(--border);
  font-size: 14px; color: var(--text); transition: all 0.3s;
}
.tt-company-stat:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.tt-author-card {
  background: var(--white); border-radius: 16px;
  padding: 30px 28px; border: 1px solid var(--border);
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.tt-author-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--section-alt), #fff9ed);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold); flex-shrink: 0;
  animation: pulse 3s infinite;
}
.tt-author-written { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.tt-author-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.tt-author-bio { font-size: 14px; color: var(--text); line-height: 1.7; }
.tt-badge {
  background: var(--section-alt); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 12px;
  font-size: 12px; color: var(--dark); font-weight: 500; display: inline-block;
}

/* ===== FAQ ===== */
.tt-faq { background: var(--white); }
.tt-acc-item {
  border: 1px solid var(--border); border-radius: 12px !important;
  margin-bottom: 14px; overflow: hidden; transition: box-shadow 0.3s;
}
.tt-acc-item:hover { box-shadow: 0 6px 25px rgba(0,0,0,0.07); }
.tt-acc-btn { font-size: 15px; font-weight: 600; color: var(--dark); background: var(--white); padding: 20px 22px; border: none; }
.tt-acc-btn:not(.collapsed) { color: var(--gold); background: #fff9ed; box-shadow: none; }
.tt-acc-body { font-size: 15px; color: var(--text); line-height: 1.8; padding: 18px 22px; background: #fafaf8; }

/* ===== CONTACT ===== */
.tt-contact {
  background: linear-gradient(135deg, #f0ebe0 0%, #faf8f4 50%, #f5f0e8 100%);
  position: relative;
}
.tt-contact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.tt-contact-point {
  display: flex; align-items: flex-start;
  margin-bottom: 16px; font-size: 14px; color: var(--text);
  padding: 14px 16px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--border);
  transition: all 0.3s;
}
.tt-contact-point:hover { border-color: var(--gold); transform: translateX(5px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.tt-contact-point i { font-size: 18px; margin-top: 2px; min-width: 28px; }

/* ===== MODAL ===== */
.tt-modal { background: var(--white); border-radius: 16px; border-top: 4px solid var(--gold); }
.tt-modal .modal-header { padding: 22px 26px 10px; }
.tt-modal .modal-body { padding: 0 26px 26px; }

/* ===== FOOTER ===== */
.tt-footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  border-top: 3px solid var(--gold);
}
.tt-footer .tt-brand { font-size: 22px; color: var(--white); letter-spacing: 3px; font-family: Georgia, serif; display: block; }
.tt-footer .tt-brand span { color: var(--gold); }
.tt-footer-text { font-size: 14px; color: #888; margin-bottom: 10px; }
.tt-footer .tt-disclaimer { font-size: 12px; color: #555; max-width: 700px; margin: 0 auto; }

/* ===== MOBILE STICKY ===== */
.tt-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; display: flex; background: var(--dark); border-top: 2px solid var(--gold); }
.tt-sticky-btn { flex: 1; text-align: center; padding: 13px 8px; font-size: 13px; font-weight: 700; color: var(--white) !important; border-right: 1px solid #333; transition: background .2s; }
.tt-sticky-btn:last-child { border-right: none; }
.tt-sticky-wa { color: #25d366 !important; }
.tt-sticky-enq { background: var(--gold); color: var(--dark) !important; }
.tt-sticky-enq:hover { background: var(--gold-dark); }

/* ===== GLOBAL RESPONSIVE ===== */
@media(max-width:991px) {
  /* ---- Layout ---- */
  .tt-about-bg { display: none; }
  .tt-about-img { height: 320px; }
  .tt-gal-item img { height: 210px; }
  .tt-price-featured { transform: scale(1); }
  .tt-price-featured:hover { transform: translateY(-8px); }
  .tt-nav .container { border-radius: 22px; }

  /* ---- Fix horizontal-scroll from translateX animations ---- */
  .tt-animate-left  { transform: translateY(30px); }
  .tt-animate-right { transform: translateY(30px); }
  .tt-animate-left.visible,
  .tt-animate-right.visible { transform: translateY(0); }

  /* ---- All section tags center on mobile ---- */
  .tt-section-tag { text-align: center; display: block; }

  /* ---- All h2 center on mobile + gold underline ---- */
  .tt-h2 {
    text-align: center;
    display: block;
    position: relative;
    padding-bottom: 14px;
  }
  .tt-h2::after {
    content: '';
    position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    height: 3px; width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 2px;
    transition: width 0.8s ease 0.3s;
  }
  .tt-h2.visible::after { width: 60px; }

  /* ---- h3 center on mobile ---- */
  .tt-h3 { text-align: center; }

  /* ---- About section — center badge items ---- */
  .tt-about .tt-badge-item { text-align: center; }

  /* ---- Investment section mobile ---- */
  #investment .tt-h2 { font-size: 20px; line-height: 1.35; }
  .tt-insight-point {
    border-left: none;
    padding-left: 0;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 20px;
    text-align: center;
  }
  .tt-insight-point .tt-body { text-align: left; font-size: 14px; }
  .tt-insight-head { font-size: 14px; text-align: center; }
  .tt-compare-table { font-size: 12px; }
  .tt-compare-table thead th { padding: 8px 8px !important; font-size: 11px; }
  .tt-compare-table tbody td { padding: 8px 8px !important; font-size: 12px; }
  .tt-insight .d-flex.flex-wrap { justify-content: center; }
  .tt-roi-card { margin-top: 8px; }

  /* ---- Carousel — keep controls inside, no overflow ---- */
  .tt-amenity-slider { overflow: hidden; }
  .carousel-control-prev.tt-car-btn { left: 4px; }
  .carousel-control-next.tt-car-btn { right: 4px; }

  /* ---- Location section heading center ---- */
  .tt-location-list { text-align: center; }
  .tt-loc-item { text-align: left; }

  /* ---- Contact — center why-contact heading ---- */
  #contact .tt-h3 { text-align: center; }
}

@media(max-width:575px) {
  .tt-h2 { font-size: 22px; }
  .tt-stat-num { font-size: 30px; }
  .tt-gal-item img { height: 155px; }
  .tt-amenity-img { height: 145px; }
  .tt-about-img { height: 240px; }
  .tt-author-card { flex-direction: column; }
  .tt-nav .container { border-radius: 16px; padding: 10px 16px; }
  /* Carousel controls stay inside at smallest sizes */
  .carousel-control-prev.tt-car-btn { left: 2px; width: 38px; height: 38px; }
  .carousel-control-next.tt-car-btn { right: 2px; width: 38px; height: 38px; }
  .tt-amenity-slider { overflow: hidden; }
  /* Investment table: even tighter on xs */
  #investment .tt-h2 { font-size: 18px; }
  .tt-compare-table thead th { padding: 6px 5px !important; font-size: 10px; }
  .tt-compare-table tbody td { padding: 6px 5px !important; font-size: 11px; }
  /* Shrink long page-heading in insight */
  .tt-insight-head { font-size: 13px; }
}

/* Custom CAPTCHA Section */
.captcha-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 15px;
    padding: 10px;
    margin: 22px 0;
    border: 2px solid #e2e8f0;
    position: relative;
}

.captcha-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--secondary-color);
}

.captcha-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.captcha-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.captcha-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    background: var(--white-color);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.captcha-code {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 10px;
    padding: 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 8px;
    color: var(--primary-color);
    user-select: none;
    text-align: center;
    flex-grow: 1;
    margin-right: 20px;
    border: 1px dashed #cbd5e1;
}

.captcha-refresh-btn {
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(12, 74, 110, 0.2);
}

.captcha-refresh-btn:hover {
    transform: rotate(180deg);
    box-shadow: 0 8px 20px rgba(12, 74, 110, 0.3);
}

.captcha-input-container {
    margin-bottom: 15px;
}

.captcha-input {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    background-color: var(--white-color);
}

.captcha-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(12, 74, 110, 0.1);
}

.captcha-message {
    font-size: 0.9rem;
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 10px;
}

.captcha-success {
    background-color: #d1fae5;
    color: #065f46;
    display: flex;
}

.captcha-error {
    background-color: #fee2e2;
    color: #991b1b;
    display: flex;
}