/* Core Citi Lets Aberdeen — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
  --blue:   #073A78;
  --lblue:  #C5D7EC;
  --green:  #2E7D5B;
  --orange: #E0992E;
  --white:  #ffffff;
  --text:   #333333;
}

body { font-family: 'Poppins', sans-serif; color: var(--text); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar .logo img { height: 54px; width: auto; }
.top-bar .contact-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.top-bar .contact-strip .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--blue);
}
.top-bar .contact-strip .item svg { flex-shrink: 0; }
.top-bar .contact-strip .item a { color: var(--blue); text-decoration: none; }
.top-bar .contact-strip .item a:hover { text-decoration: underline; }
.top-bar .social { display: flex; align-items: center; gap: 12px; }
.top-bar .social a { color: var(--blue); display: flex; }
.top-bar .social a:hover { color: var(--orange); }

/* ── NAV ── */
.site-nav {
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 20px;
  display: block;
  transition: background 0.2s;
}
.site-nav a:hover, .site-nav a.active { background: rgba(255,255,255,0.15); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  background: url('/images/IMG_0205-Edit.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7, 58, 120, 0.65);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #c5821e; transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  padding: 12px 32px;
  border: 2px solid var(--blue);
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--blue); color: var(--white); }

/* ── SECTION HEADINGS ── */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub {
  color: #666;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ── FEATURED PROPERTIES ── */
.featured-section {
  padding: 70px 40px;
  background: #f7f9fc;
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.property-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.property-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.property-card .card-image { position: relative; }
.property-card .card-image img { width: 100%; height: 230px; object-fit: cover; display: block; }
.property-card .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.property-card .price {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(7,58,120,0.85);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
}
.property-card .card-body { padding: 18px 20px; }
.property-card .card-body h3 { font-size: 14px; color: var(--text); margin-bottom: 10px; line-height: 1.5; }
.property-card .card-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: #666; }
.property-card .card-meta svg { color: var(--blue); }
.property-card .card-type { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-top: 4px; }

/* ── LANDLORDS & TENANTS ── */
.who-section {
  position: relative;
  padding: 80px 40px;
  background: url('/images/IMG_0254-Edit.jpg') center/cover no-repeat;
  color: var(--white);
}
.who-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7, 58, 120, 0.82);
}
.who-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.who-block .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.who-block .divider {
  width: 60px; height: 2px;
  background: var(--orange);
  margin-bottom: 18px;
}
.who-block h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 14px; }
.who-block p { font-size: 14px; line-height: 1.7; opacity: 0.9; }

/* ── ABOUT PAGE ── */
.page-hero {
  background: var(--blue);
  padding: 70px 40px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
.page-hero p { margin-top: 12px; font-size: 15px; opacity: 0.85; }

.about-section {
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}
.about-block { padding: 36px; background: #f7f9fc; border-radius: 8px; border-top: 4px solid var(--orange); }
.about-block h2 { font-size: 1.4rem; color: var(--blue); margin-bottom: 14px; }
.about-block p { font-size: 14px; line-height: 1.8; color: #555; margin-bottom: 18px; }
.about-block .why-title { font-weight: 700; color: var(--blue); margin-bottom: 14px; font-size: 15px; }
.about-block ul { list-style: none; }
.about-block ul li { font-size: 14px; color: #555; line-height: 1.7; padding: 6px 0; border-bottom: 1px solid #e8eef5; display: flex; gap: 10px; align-items: flex-start; }
.about-block ul li:last-child { border-bottom: none; }
.check { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ── PROPERTIES PAGE ── */
.properties-page {
  padding: 70px 40px;
  text-align: center;
}
.properties-cta-box {
  max-width: 700px;
  margin: 40px auto;
  background: #f7f9fc;
  border-radius: 8px;
  padding: 60px 40px;
  border: 2px dashed var(--lblue);
}
.properties-cta-box h2 { font-size: 1.6rem; color: var(--blue); margin-bottom: 16px; }
.properties-cta-box p { color: #666; margin-bottom: 32px; line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-section {
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}
.contact-info h2 { font-size: 1.4rem; color: var(--blue); margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-item .details { font-size: 14px; line-height: 1.7; color: #555; }
.contact-item .details strong { display: block; color: var(--blue); font-size: 15px; margin-bottom: 2px; }
.contact-item .details a { color: #555; text-decoration: none; }
.contact-item .details a:hover { color: var(--blue); }

.contact-form h2 { font-size: 1.4rem; color: var(--blue); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0dce8;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.map-container { margin-top: 28px; border-radius: 8px; overflow: hidden; }
.map-container iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 50px 40px 24px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; color: var(--orange); }
.footer-col p, .footer-col a { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.8); text-decoration: none; display: block; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .top-bar { padding: 10px 20px; }
  .top-bar .contact-strip { display: none; }
  .site-nav { padding: 0 20px; }
  .hero-content h1 { font-size: 2rem; }
  .who-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-section, .who-section, .about-section, .contact-section, .properties-page { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar .social { display: none; }
}
