@font-face {
  font-family: 'Segoe UI Local';
  src: url('assets/fonts/Segoe UI.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Segoe UI Bold Local';
  src: url('assets/fonts/Segoe UI Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* ==========================================================================
   CANAL FRONT PROPERTIES - BANKE THEME DESIGN SYSTEM
   Exact color matching & typography based on Banke Real Estate India
   ========================================================================== */

:root {
  --primary-dark: #111827;
  --secondary-dark: #1f2937;
  --accent-gold: #f59e0b;
  /* Vibrant Banke Yellow-Gold */
  --accent-gold-hover: #d97706;
  --accent-gold-light: rgba(245, 158, 11, 0.12);

  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #ffffff;

  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;

  --font-main: 'Segoe UI Local', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Segoe UI Bold Local', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Headings (Bigger Text using Segoe UI Bold) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TOP HEADER BAR (Banke Style - Crisp White with Country Selector) */
.top-header {
  background-color: #000000;
  color: #d1d5db;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #1f2937;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item i {
  color: var(--accent-gold);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.country-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* MAIN NAVIGATION (Exact Banke White Header) */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-title {
  font-family: var(--font-heading), sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #000000;
  text-transform: uppercase;
}

.footer-logo-title {
  color: #ffffff !important;
}

.brand-subtitle {
  font-family: var(--font-main), sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  color: #c4a47c;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px;
}

.main-header nav {
  margin-left: auto;
  margin-right: 3rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  color: #1f2937;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold-hover);
}

.header-btn {
  background: var(--accent-gold);
  color: #000000;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header-btn:hover {
  background: var(--accent-gold-hover);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION (Matches Banke Screenshot) */
.hero-section {
  position: relative;
  min-height: 82vh;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.75) 100%),
    url('assets/images/hero_tower.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 6rem 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-sub-tag {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  display: block;
}

.hero-main-title {
  font-size: clamp(1.1rem, 2.6vw, 2.25rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Banke Golden Underline Highlight */
.hero-underline-highlight {
  position: relative;
  display: inline-block;
}

.hero-underline-highlight::after {

  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-gold);
  z-index: -1;
}

.hero-description {
  font-size: 1.2rem;
  color: #f3f4f6;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

/* SEARCH FILTER CARD (Banke Clean White Card) */
.search-filter-wrapper {
  margin-top: -3.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 30;
}

.search-filter-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 1.75rem 2rem;
  border: 1px solid var(--border-color);
}

.search-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.search-tab-btn {
  background: none;
  border: none;
  padding: 0.6rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.search-tab-btn.active,
.search-tab-btn:hover {
  background: var(--primary-dark);
  color: var(--accent-gold);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 160px;
  gap: 1.25rem;
  align-items: end;
}

.filter-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.filter-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-dark);
  outline: none;
  font-weight: 600;
  transition: var(--transition);
}

.filter-control:focus {
  border-color: var(--accent-gold-hover);
  box-shadow: 0 0 0 3px var(--accent-gold-light);
}

.search-submit-btn {
  background: var(--accent-gold);
  color: #000000;
  border: none;
  height: 48px;
  font-weight: 800;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.search-submit-btn:hover {
  background: var(--accent-gold-hover);
  color: #ffffff;
}

/* STATS STRIP */
.stats-strip {
  background: #f9fafb;
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat-number span {
  color: var(--accent-gold-hover);
}

.rupee-symbol {
  font-family: 'Montserrat', 'Segoe UI', -apple-system, sans-serif;
  font-weight: 700;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--accent-gold-hover);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.25;
}

.section-title-underline {
  position: relative;
  display: inline-block;
}

.section-title-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent-gold);
  z-index: -1;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* HYDERABAD LOCATIONS GRID */
.locations-section {
  padding: 2rem 0 5rem 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.location-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.location-card:hover img {
  transform: scale(1.08);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.location-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.location-meta {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 700;
}

/* FEATURED PROPERTIES */
.properties-section {
  padding: 4rem 0 6rem 0;
  background-color: #f9fafb;
}

.property-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.prop-tab-btn {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.prop-tab-btn.active,
.prop-tab-btn:hover {
  background: var(--primary-dark);
  color: var(--accent-gold);
  border-color: var(--primary-dark);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.property-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.property-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-thumb img {
  transform: scale(1.06);
}

.property-badge-group {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.badge-gold {
  background: var(--accent-gold);
  color: #000000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.property-price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary-dark);
  color: var(--accent-gold);
  font-weight: 900;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.property-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-location {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.property-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.property-specs {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.spec-item i {
  color: var(--accent-gold-hover);
}

.property-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.btn-outline-gold {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  background: transparent;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--primary-dark);
  color: var(--accent-gold);
}

.btn-whatsapp-inquire {
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-whatsapp-inquire:hover {
  background: #1eb857;
}

/* WHY CHOOSE US */
.why-us-section {
  padding: 6rem 0;
  background: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: #f9fafb;
  border: 1px solid var(--border-color);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-hover);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.why-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* EMI CALCULATOR */
.calculator-section {
  padding: 6rem 0;
  background: #f9fafb;
  border-top: 1px solid var(--border-color);
}

.calculator-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  color: var(--primary-dark);
}

.slider-val {
  color: var(--accent-gold-hover);
  font-size: 1.1rem;
}

.calc-slider {
  width: 100%;
  accent-color: var(--accent-gold-hover);
  cursor: pointer;
  height: 6px;
}

.calc-results {
  background: var(--primary-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.emi-display {
  text-align: center;
  margin-bottom: 2rem;
}

.emi-label {
  font-size: 0.85rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.emi-amount {
  font-size: 3rem;
  color: var(--accent-gold);
  font-weight: 900;
  margin: 0.5rem 0;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #d1d5db;
}

.breakdown-row span:last-child {
  font-weight: 800;
  color: #fff;
}

/* CONTACT & VIP CONSULTATION */
.contact-section {
  padding: 6rem 0;
  background: var(--primary-dark);
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-info-side h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.contact-info-side p {
  color: #9ca3af;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #374151;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-gold);
  color: #000000;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-detail span {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
}

.contact-item-detail strong {
  font-size: 1.05rem;
  color: #ffffff;
}

.contact-form-side {
  background: #ffffff;
  color: var(--text-dark);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.contact-form-side h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  outline: none;
  font-weight: 600;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent-gold-hover);
  box-shadow: 0 0 0 3px var(--accent-gold-light);
}

.btn-form-submit {
  width: 100%;
  background: var(--accent-gold);
  color: #000000;
  border: none;
  padding: 0.9rem;
  font-weight: 900;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-form-submit:hover {
  background: var(--accent-gold-hover);
  color: #ffffff;
}

/* FOOTER */
.site-footer {
  background: #000000;
  color: #9ca3af;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid #1f2937;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* FLOATING WIDGETS */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-call {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  transition: var(--transition);
}

.floating-call:hover {
  transform: scale(1.1);
  background: var(--accent-gold);
  color: #000;
}

/* MODAL POPUP */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: #ef4444;
  color: #fff;
}

/* TOAST */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 3000;
}

.toast {
  background: var(--primary-dark);
  color: #fff;
  border-left: 4px solid var(--accent-gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.d-mobile {
  display: none !important;
}


/* EXPERTISE SECTION (Banke Style @img2) */
.expertise-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.expertise-tag {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.expertise-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

.expertise-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.expertise-quote-box {
  border-left: 4px solid var(--accent-gold);
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.75rem;
}

.expertise-quote-box p {
  font-style: italic;
  font-weight: 600;
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.6;
}

.expertise-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.expertise-graphic img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* CROSS BORDERS SECTION WITH 360 ROTATING GLOBE */
.cross-borders-section {
  padding: 6rem 0;
  background: #f9fafb;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.cross-borders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.globe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 450px;
}

.globe-3d-wrapper {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.globe-3d-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  animation: rotate3dGlobe 18s ease-in-out infinite alternate;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
}

@keyframes rotate3dGlobe {
  0% {
    transform: rotateY(-18deg) rotateX(6deg) scale(1);
  }

  50% {
    transform: rotateY(18deg) rotateX(-6deg) scale(1.03);
  }

  100% {
    transform: rotateY(-18deg) rotateX(6deg) scale(1);
  }
}

.globe-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  pointer-events: none;
}

.globe-orbit-ring.ring-1 {
  width: 440px;
  height: 200px;
  transform: rotate(-35deg) rotateX(70deg);
  animation: spinRing1 14s linear infinite;
}

.globe-orbit-ring.ring-2 {
  width: 450px;
  height: 180px;
  transform: rotate(45deg) rotateX(65deg);
  animation: spinRing2 20s linear infinite reverse;
}

@keyframes spinRing1 {
  0% {
    transform: rotate(-35deg) rotateX(70deg) rotateZ(0deg);
  }

  100% {
    transform: rotate(-35deg) rotateX(70deg) rotateZ(360deg);
  }
}

@keyframes spinRing2 {
  0% {
    transform: rotate(45deg) rotateX(65deg) rotateZ(0deg);
  }

  100% {
    transform: rotate(45deg) rotateX(65deg) rotateZ(360deg);
  }
}

@media (max-width: 992px) {
  .cross-borders-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .globe-3d-wrapper {
    width: 320px;
    height: 320px;
  }

  .globe-3d-image {
    max-width: 300px;
  }
}

/* PARTNERING DEVELOPERS MARQUEE (Banke Style Left-to-Right Scrolling) */
.partnering-developers-section {
  padding: 5.5rem 0 6rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.partnering-title-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
}

.partnering-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #6b7280;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLeftToRight 38s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 7rem;
  padding-right: 7rem;
}

.developer-brand {
  font-family: var(--font-heading), sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #374151;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0.75;
  transition: var(--transition);
}

.developer-brand:hover {
  opacity: 1;
  color: var(--accent-gold-hover);
}

.dev-logo {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.dev-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Continuous infinite scroll left to right */
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .top-info {
    display: none;
  }

  .top-header .container {
    justify-content: flex-end;
    gap: 1.5rem;
  }

  .brand-title {
    font-size: 1.35rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.32em;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .expertise-title {
    font-size: 1.4rem;
  }

  .contact-info-side h2,
  .contact-info-side h5 {
    font-size: 1.6rem;
  }

  .search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calculator-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-header {
    position: relative;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .d-desktop {
    display: none !important;
  }

  .d-mobile {
    display: block !important;
  }

  .brand-title {
    font-size: 1.0rem;
  }

  .brand-subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.28em;
  }

  .hero-main-title {
    font-size: 1.4rem;
  }

  .expertise-title {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .contact-info-side h2,
  .contact-info-side h5 {
    font-size: 1.2rem;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   BLOG & ARTICLES SECTION STYLES
   ========================================================================== */
.blog-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.blog-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-tab-btn {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.blog-tab-btn.active,
.blog-tab-btn:hover {
  background: var(--primary-dark);
  color: var(--accent-gold);
  border-color: var(--primary-dark);
}

.blog-search-box {
  position: relative;
  min-width: 260px;
}

.blog-search-input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.blog-search-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-light);
}

.blog-search-box i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.blog-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-dark);
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-meta i {
  color: var(--accent-gold-hover);
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.blog-author {
  display: none;
}

.btn-read-post {
  width: 100%;
  background: var(--gradient-gold, linear-gradient(135deg, #d97706, #b45309));
  color: #ffffff;
  border: 2px solid #b45309;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
  box-sizing: border-box;
}

.btn-read-post .btn-h2-text {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-read-post:hover {
  background: linear-gradient(135deg, #b45309, #92400e);
  border-color: #92400e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.4);
}

/* Modal Backdrops & Dialogs */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #000;
  color: var(--accent-gold);
}

/* ADMIN PANEL STYLES */
.btn-admin-action {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-left: 0.35rem;
  transition: var(--transition);
}

.btn-admin-action.edit {
  background: #e0f2fe;
  color: #0369a1;
}

.btn-admin-action.edit:hover {
  background: #0284c7;
  color: #ffffff;
}

.btn-admin-action.delete {
  background: #fee2e2;
  color: #b91c1c;
}

.btn-admin-action.delete:hover {
  background: #dc2626;
  color: #ffffff;
}

.admin-form-group {
  margin-bottom: 1.25rem;
}

.admin-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.admin-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.admin-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-light);
}

.blog-article-content h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 800;
}

.blog-article-content h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 1.25rem 0 0.5rem 0;
  font-weight: 800;
}

.blog-article-content p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-article-content ul,
.blog-article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-body);
  line-height: 1.7;
}

.blog-article-content li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   VISUAL WYSIWYG RICH TEXT EDITOR STYLES
   ========================================================================== */
.rich-editor-wrapper {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #ffffff;
  overflow: hidden;
  transition: var(--transition);
}

.rich-editor-wrapper:focus-within {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-light);
}

.rich-toolbar {
  background: #f3f4f6;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  align-items: center;
}

.rich-toolbar button {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: var(--primary-dark);
  width: 34px;
  height: 34px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.rich-toolbar button:hover {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
}

.rich-toolbar-divider {
  width: 1px;
  height: 24px;
  background: #d1d5db;
  margin: 0 0.25rem;
}

.rich-editor-content {
  min-height: 260px;
  max-height: 500px;
  overflow-y: auto;
  padding: 1.25rem;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

.rich-editor-content[placeholder]:empty:before {
  content: attr(placeholder);
  color: #9ca3af;
  cursor: text;
}

.rich-editor-content h2 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin: 1rem 0 0.5rem 0;
  font-weight: 800;
}

.rich-editor-content h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin: 0.85rem 0 0.4rem 0;
  font-weight: 800;
}

.rich-editor-content blockquote {
  border-left: 4px solid var(--accent-gold);
  background: var(--accent-gold-light);
  padding: 0.85rem 1.25rem;
  margin: 1rem 0;
  font-weight: 600;
}