/* ============================================================
   SAIMA MAMOON REAL ESTATE — MAIN STYLESHEET
   Colors: #f15f41 (coral), #041e3f (navy), #ffffff, #000000
   Body: white background
   ============================================================ */

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

:root {
  --coral:   #f15f41;
  --navy:    #041e3f;
  --white:   #ffffff;
  --black:   #000000;
  --light:   #f8f9fb;
  --grey:    #6b7280;
  --border:  #e5e7eb;
  --coral-dark: #d94e31;
  --navy-light: #0a3266;
  --shadow-sm:  0 2px 8px rgba(4,30,63,.08);
  --shadow-md:  0 6px 24px rgba(4,30,63,.14);
  --shadow-lg:  0 16px 48px rgba(4,30,63,.18);
  --radius:  8px;
  --radius-lg: 16px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
}

.text-coral { color: var(--coral); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy    { background: var(--navy); }
.bg-light   { background: var(--light); }
.bg-coral   { background: var(--coral); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241,95,65,.4);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4,30,63,.35);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transition: background var(--transition);
}

.header-top {
  background: var(--coral);
  padding: 8px 0;
  font-size: 13px;
  color: var(--white);
}

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

.header-top a { color: var(--white); font-weight: 600; }
.header-top a:hover { opacity: .8; }

.header-top-left, .header-top-right {
  display: flex; align-items: center; gap: 20px;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--coral);
  object-fit: cover;
}

.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.1;
}

.logo-text .tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(241,95,65,.15);
}

.nav-links .cta-link {
  background: var(--coral);
  color: var(--white);
  padding: 10px 22px;
  margin-left: 8px;
}

.nav-links .cta-link:hover {
  background: var(--coral-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

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

.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 20px 24px 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 105px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--navy) 0%, #0a2952 55%, #0e3b6b 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=80') center/cover no-repeat;
  opacity: .12;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(241,95,65,.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(241,95,65,.08) 0%, transparent 50%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241,95,65,.15);
  border: 1px solid rgba(241,95,65,.4);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '★';
  font-size: 11px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--coral);
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-item {}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  letter-spacing: .5px;
}

/* Hero image card */
.hero-image-wrap {
  position: relative;
}

.hero-agent-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-agent-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
}

.hero-agent-info {
  padding: 24px 28px;
  background: var(--white);
}

.hero-agent-info .name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.hero-agent-info .title {
  color: var(--coral);
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
}

.hero-agent-info .company {
  font-size: 13px;
  color: var(--grey);
  margin-top: 4px;
}

.hero-badge-card {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--coral);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

/* ---------- SEARCH BAR ---------- */
.search-section {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.search-bar {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.search-bar input,
.search-bar select {
  flex: 1;
  min-width: 160px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  background: transparent;
  padding: 10px 0;
}

.search-bar select option { color: var(--navy); }

.search-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.search-bar .btn { white-space: nowrap; }

/* ---------- WHY CHOOSE ME ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.why-icon {
  width: 60px; height: 60px;
  background: rgba(241,95,65,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg { width: 28px; height: 28px; color: var(--coral); }

.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p  { font-size: 15px; color: var(--grey); line-height: 1.65; }

/* ---------- FEATURED LISTINGS ---------- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.listing-img-wrap {
  position: relative;
  overflow: hidden;
}

.listing-img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .4s ease;
}

.listing-card:hover .listing-img-wrap img {
  transform: scale(1.06);
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--coral);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.listing-price {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(4,30,63,.85));
  padding: 30px 18px 14px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
}

.listing-body { padding: 20px 22px; }

.listing-address {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.listing-city {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 14px;
}

.listing-details {
  display: flex;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.listing-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--grey);
  font-weight: 600;
}

.listing-detail svg { width: 16px; height: 16px; color: var(--coral); }

.listings-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- ABOUT STRIP ---------- */
.about-strip {
  background: var(--navy);
  overflow: hidden;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}

.about-strip-img {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.about-strip-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .85;
}

.about-strip-content {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip-content .badge { color: var(--coral); }
.about-strip-content .section-title { color: var(--white); }
.about-strip-content p { color: rgba(255,255,255,.72); font-size: 16px; margin-bottom: 24px; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}

.highlight-dot {
  width: 10px; height: 10px;
  min-width: 10px;
  background: var(--coral);
  border-radius: 50%;
  margin-top: 6px;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  color: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100px; height: 100px;
  background: rgba(241,95,65,.12);
  border-radius: 50%;
  transform: translate(30%, 30%);
}

.service-card:hover {
  background: var(--coral);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(241,95,65,.35);
}

.service-card:hover::before {
  background: rgba(255,255,255,.1);
}

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  opacity: .15;
  line-height: 1;
  margin-bottom: 12px;
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(241,95,65,.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,.2);
}

.service-icon svg { width: 24px; height: 24px; color: var(--coral); }
.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; }
.service-card:hover p { color: rgba(255,255,255,.85); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-wrap { margin-top: 48px; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--coral);
}

.quote-icon {
  font-size: 48px;
  color: var(--coral);
  opacity: .3;
  line-height: 1;
  font-family: serif;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 16px; color: var(--navy); }
.author-location { font-size: 13px; color: var(--grey); }

.stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; }
.cta-banner p  { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- MARKET AREAS ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.area-chip {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  transition: all var(--transition);
  cursor: pointer;
}

.area-chip:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  transform: translateY(-2px);
}

/* ---------- CONTACT SECTION ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info {}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-card:last-child { border-bottom: none; }

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(241,95,65,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; color: var(--coral); }

.contact-card h4 { font-size: 14px; color: var(--grey); font-weight: 600; margin-bottom: 4px; font-family: 'Raleway', sans-serif; }
.contact-card p, .contact-card a  { font-size: 16px; color: var(--navy); font-weight: 700; }
.contact-card a:hover { color: var(--coral); }

.social-links-contact {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; color: var(--white); }

/* ---------- CONTACT FORM ---------- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(241,95,65,.1);
}

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

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}

.footer-main {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 300px; }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--coral);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--coral);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }

.social-links-footer {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link-footer {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.social-link-footer:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.social-link-footer svg { width: 16px; height: 16px; color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--coral); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2952 100%);
  padding: 160px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=60') center/cover no-repeat;
  opacity: .07;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); color: var(--white); }
.page-hero p  { font-size: 18px; color: rgba(255,255,255,.7); margin-top: 12px; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 16px;
  color: rgba(255,255,255,.5);
}

.breadcrumb a { color: var(--coral); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ---------- PROPERTIES PAGE ---------- */
.filters-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 36px;
}

.filters-bar select {
  flex: 1;
  min-width: 150px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

.filters-bar select:focus { border-color: var(--coral); }

/* ---------- ABOUT PAGE ---------- */
.about-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
  object-position: top;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--coral);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-exp-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-exp-badge .label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.about-content .section-title { text-align: left; }
.about-content p { font-size: 16px; color: var(--grey); line-height: 1.8; margin-bottom: 16px; }

.skills-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 36px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.skill-dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- LANGUAGES ---------- */
.lang-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.lang-tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 48px; height: 48px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--coral-dark); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ---------- NOTIFICATION BAR ---------- */
.notify-bar {
  background: var(--coral);
  color: var(--white);
  text-align: center;
  padding: 11px;
  font-size: 14px;
  font-weight: 600;
}
.notify-bar a { color: var(--white); text-decoration: underline; }

/* ---------- SUCCESS MESSAGE ---------- */
.success-msg {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 16px;
  font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .container { gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-top-right { display: none; }

  .hero .container { grid-template-columns: 1fr; padding: 50px 24px 60px; }
  .hero-image-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-agent-photo { height: 340px; }
  .hero-stats { gap: 24px; }

  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip-img { min-height: 280px; }
  .about-strip-content { padding: 50px 32px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }

  .about-main { grid-template-columns: 1fr; }
  .about-exp-badge { bottom: 10px; right: 10px; }

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

  .page-hero { padding: 130px 0 50px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .search-bar { flex-direction: column; align-items: stretch; }
  .search-divider { display: none; }
}
