/* ============================================
   UJJWAL PROPERTY — Mobile-First Stylesheet
   ============================================ */

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

:root {
  --navy: #0C2340;
  --navy-light: #163A5F;
  --blue: #1A6BB5;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --sand: #F5F1EA;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --gray-900: #212529;
  --text: #2B2B2B;
  --text-light: #5A6270;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 1rem;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 600px;
  font-size: 1.05rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .nav-link { color: var(--gray-800); }
.header.scrolled .nav-link:hover { color: var(--gold); }
.header.scrolled .logo-text { color: var(--navy); }
.header.scrolled .logo-accent { color: var(--gold); }
.header.scrolled .hamburger span { background: var(--navy); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
}

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  transition: color var(--transition);
}

.logo-accent { color: var(--gold); }

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.header.scrolled .nav-link:hover::after { width: 100%; }

.nav-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .mobile-cta {
  margin-top: 1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 50%, #1A4A6B 100%);
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(26, 107, 181, 0.12) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 480px;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold);
  display: block;
}

.stat-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Decorative floating shapes */
.hero-shapes {
  display: none;
}

/* ============================================
   TRUSTED BY / LOGOS
   ============================================ */
.trusted {
  padding: 3rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.trusted-inner {
  text-align: center;
}

.trusted-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.trusted-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.trusted-logo-text:hover { opacity: 1; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  background: var(--gray-50);
  border-radius: 50px;
  color: var(--gray-600);
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.service-link:hover { color: var(--gold); }
.service-link .arrow { transition: transform var(--transition); }
.service-link:hover .arrow { transform: translateX(4px); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.why-us-header {
  position: relative;
  margin-bottom: 3rem;
}

.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255, 255, 255, 0.6); }

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
}

.why-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  display: block;
}

.why-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--gray-50);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.author-role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info {
  padding-right: 0;
}

.contact-info .section-subtitle {
  margin-bottom: 2rem;
}

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

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-value {
  font-weight: 500;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text { color: var(--white); }

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
}

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ============================================
   PROPERTY LISTING CARDS
   ============================================ */
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}

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

.property-image {
  height: 220px;
  background: linear-gradient(135deg, var(--sand), var(--gray-100));
  overflow: hidden;
  position: relative;
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-details {
  padding: 1.5rem;
}

.property-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.property-details h4 {
  margin-bottom: 0.5rem;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 1rem;
}

.spec {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.spec strong {
  color: var(--gray-800);
}

.property-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  background: var(--white);
}

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

.about-image-block {
  border-radius: var(--radius-lg);
  height: 300px;
  position: relative;
  overflow: hidden;
}

.about-text h2 { margin-bottom: 1rem; }

.about-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.highlight-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.highlight-text span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Offices section */
.offices {
  background: var(--gray-50);
}

.offices-header {
  text-align: center;
  margin-bottom: 3rem;
}

.offices-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-top: 2rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (700px+)
   ============================================ */
@media (min-width: 700px) {
  .container { padding: 0 2rem; }

  section { padding: 5rem 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-track { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr 1fr; }

  .property-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-form-wrapper { padding: 2.5rem; }

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

  .about-image-block { height: 400px; }

  .hero-shapes { display: block; }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container { padding: 0 2.5rem; }

  section { padding: 6rem 0; }

  .hamburger { display: none; }

  .nav-links {
    display: flex;
  }

  .nav-cta { display: block; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .why-grid { grid-template-columns: repeat(4, 1fr); }

  .testimonial-track { grid-template-columns: repeat(3, 1fr); }

  .property-grid { grid-template-columns: repeat(3, 1fr); }

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

  .contact-info { padding-right: 2rem; }

  .contact-page-grid { grid-template-columns: 1fr 1fr; }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero-shapes {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
  }

  .shape {
    position: absolute;
    border-radius: var(--radius-lg);
    opacity: 0.15;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    top: 0;
    right: 0;
    animation: float 6s ease-in-out infinite;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
    background: var(--blue);
    bottom: 20px;
    left: 20px;
    animation: float 6s ease-in-out infinite 2s;
  }

  .shape-3 {
    width: 100px;
    height: 100px;
    background: var(--gold);
    top: 60px;
    left: 80px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite 4s;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.call-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  text-decoration: none;
  animation: pulse-call 2s ease-in-out infinite;
}

.call-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.call-fab svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

@keyframes pulse-call {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* Call bar for mobile — shows at bottom */
.call-bar {
  display: none;
}

@media (max-width: 699px) {
  .call-fab {
    bottom: 5rem;
    right: 1rem;
    width: 56px;
    height: 56px;
  }

  .call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--navy);
    padding: 0;
    height: 3.5rem;
  }

  .call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: background var(--transition);
  }

  .call-bar a:first-child {
    background: var(--navy);
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .call-bar a:last-child {
    background: #25D366;
  }

  .call-bar a:active {
    opacity: 0.8;
  }

  /* Add bottom padding to footer so call bar doesn't cover it */
  .footer {
    padding-bottom: 3.5rem;
  }
}

/* ============================================
   REAL IMAGES
   ============================================ */
.property-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo in nav */
.logo-img {
  height: 36px;
  width: auto;
}

/* About image block with real photo */
.about-image-block {
  overflow: hidden;
}

.about-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Client logos */
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.trusted-logo {
  height: 40px;
  opacity: 0.7;
  transition: opacity var(--transition);
  filter: grayscale(100%);
}

.trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   LOCATIONS / OFFICES GRID
   ============================================ */
.locations {
  background: var(--gray-50);
}

.locations-header {
  text-align: center;
  margin-bottom: 3rem;
}

.locations-header .section-subtitle {
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.location-image {
  height: 180px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.location-info {
  padding: 1.25rem;
}

.location-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.location-address {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.location-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.location-link:hover { color: var(--navy); }

/* Google Map embed */
.map-embed {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2.5rem;
  border: 1px solid var(--gray-200);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Page hero with background image */
.page-hero--bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(12, 35, 64, 0.88) 0%, rgba(22, 58, 95, 0.85) 100%);
}

.page-hero--bg .page-hero-content {
  position: relative;
  z-index: 2;
}

@media (min-width: 700px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .location-image { height: 200px; }
  .map-embed { height: 400px; }
}

@media (min-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .map-embed { height: 450px; }
}
