/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #222; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* === VARIABLES === */
:root {
  --blue: #1a4fa0;
  --blue-dark: #163d80;
  --blue-light: #e8f0fc;
  --green: #2e7d32;
  --gold: #f5a623;
  --text: #333;
  --light-gray: #f7f8fa;
  --border: #e0e0e0;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.09);
}

/* === TOP BAR === */
.top-bar {
  background: var(--blue);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.3px;
}
.top-bar a { color: #fff; }
.top-bar .top-bar-inner {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
}
.top-bar span { display: flex; align-items: center; gap: 6px; }

/* === HEADER / NAV === */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 16px;
}
.logo img { height: 60px; width: auto; }
nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  padding: 8px 14px; border-radius: var(--radius);
  font-weight: 600; font-size: 14.5px; color: var(--text);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { background: var(--blue-light); color: var(--blue); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 11px; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; box-shadow: var(--shadow); border-radius: var(--radius);
  min-width: 220px; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 18px; font-size: 14px;
  border-radius: 0; color: var(--text);
}
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }

/* === HAMBURGER === */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 3px; background: var(--blue); border-radius: 2px; transition: 0.3s; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #2563b0 100%);
  color: #fff; padding: 80px 24px 70px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://content.app-sources.com/s/613648240319507921/uploads/Gallery/aa81185d742dbd5c921ffbade41763b50c56fe7c56d34e94bdae9785929049f402file_uploadIMG_0936-1256253.jpeg?format=webp') center/cover no-repeat;
  opacity: 0.13;
}
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: var(--gold); color: #333;
  font-weight: 700; font-size: 13px; padding: 5px 16px;
  border-radius: 20px; margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 30px;
  font-weight: 700; font-size: 15px; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.3px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-primary { background: var(--gold); color: #222; }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-outline-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff; padding: 52px 24px; text-align: center;
}
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: 8px; }
.page-hero p { font-size: 16px; opacity: 0.85; }

/* === SECTIONS === */
section { padding: 64px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--blue); text-transform: uppercase; display: block; margin-bottom: 8px;
}
.section-title h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 800; color: #111; }
.section-title p { color: #555; margin-top: 10px; font-size: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.bg-light { background: var(--light-gray); }
.bg-blue { background: var(--blue); color: #fff; }
.bg-blue .section-title h2, .bg-blue .section-title p { color: #fff; }
.bg-blue .section-title .eyebrow { color: var(--gold); }

/* === WELCOME === */
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.welcome-grid img { border-radius: 12px; box-shadow: var(--shadow); }
.welcome-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; color: var(--blue); }
.welcome-text p { color: #555; line-height: 1.75; margin-bottom: 14px; }
.welcome-text h4 { font-size: 18px; font-weight: 700; margin: 20px 0 8px; }

/* === STAT CARDS === */
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; text-align: center; box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
}
.stat-card img { width: 52px; height: 52px; object-fit: contain; margin: 0 auto 14px; }
.stat-card h3 { font-size: 18px; font-weight: 700; color: var(--blue); }
.stat-card p { font-size: 14px; color: #666; margin-top: 6px; }

/* === WHY CHOOSE === */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border-left: 4px solid var(--blue);
}
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--blue); }
.why-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon { font-size: 36px; margin-bottom: 14px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--blue); }
.service-card p { font-size: 14px; color: #555; line-height: 1.65; }

/* === HOW WE WORK === */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.how-card {
  background: rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(255,255,255,0.25);
}
.how-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.how-card p { opacity: 0.88; font-size: 14.5px; line-height: 1.65; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); position: relative;
}
.stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 14.5px; color: #444; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 14px; color: var(--blue); }
.testimonial-source { font-size: 12px; color: #888; }

/* === CTA BAND === */
.cta-band { background: var(--blue); color: #fff; padding: 52px 24px; text-align: center; }
.cta-band h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; }
.cta-band p { opacity: 0.9; font-size: 16px; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--blue); }

/* === COMMUNITY === */
.community-text { text-align: center; max-width: 700px; margin: 0 auto; }
.community-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.community-text p { color: #555; line-height: 1.7; }
.quality-items { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.quality-item { text-align: center; }
.quality-item .icon { font-size: 36px; margin-bottom: 8px; }
.quality-item h4 { font-weight: 700; color: var(--blue); }

/* === FOOTER === */
footer {
  background: #0f2d5e; color: #ccc; padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer-brand img { height: 55px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: 14px; line-height: 1.65; color: #aaa; }
footer h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.5px; }
.footer-contact p { font-size: 14px; color: #aaa; margin-bottom: 8px; line-height: 1.5; }
.footer-contact a { color: #7bb3ff; }
.footer-hours p { font-size: 13px; color: #aaa; line-height: 1.8; }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #777;
}
.footer-bottom a { color: #7bb3ff; }

/* === ABOUT PAGE === */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-intro .text h2 { font-size: 28px; font-weight: 800; color: var(--blue); margin-bottom: 16px; }
.about-intro .text p { color: #555; line-height: 1.75; margin-bottom: 12px; }

/* === PROPERTY MANAGEMENT PAGE === */
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pm-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border-top: 4px solid var(--blue);
}
.pm-card h3 { font-size: 17px; font-weight: 800; color: var(--blue); margin-bottom: 10px; }
.pm-card p { font-size: 14px; color: #555; margin-bottom: 8px; }
.pm-card ul { padding-left: 18px; margin-top: 6px; }
.pm-card ul li { font-size: 14px; color: #555; line-height: 1.7; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.benefit-card {
  background: var(--blue-light); border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.benefit-card .icon { font-size: 32px; margin-bottom: 10px; }
.benefit-card h4 { font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.benefit-card p { font-size: 13.5px; color: #555; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form-wrap {
  background: #fff; border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--blue); }
.contact-form-wrap p { font-size: 14px; color: #666; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: #333; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 14.5px; color: #333;
  transition: border-color 0.2s; font-family: inherit; background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; border-radius: 30px; border: none; font-size: 16px; font-weight: 700; background: var(--blue); color: #fff; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--blue-dark); }
.contact-info-panel h3 { font-size: 20px; font-weight: 800; color: var(--blue); margin-bottom: 20px; }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-item .icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.info-item h4 { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 2px; }
.info-item p, .info-item a { font-size: 15px; color: #555; }
.info-item a:hover { color: var(--blue); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 14px; }
.hours-table td { padding: 5px 0; color: #555; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.contact-benefits { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-benefit {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--blue-light); border-radius: var(--radius); padding: 16px;
}
.contact-benefit .icon { font-size: 24px; flex-shrink: 0; }
.contact-benefit h4 { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
.contact-benefit p { font-size: 13px; color: #555; }

/* === RATING BADGE === */
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-light); border-radius: 30px; padding: 8px 20px;
  font-weight: 700; font-size: 15px; color: var(--blue); margin-bottom: 28px;
}
.rating-badge .stars-small { color: var(--gold); }

/* === RECOMMENDED BADGE === */
.recommended-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 10px 20px; font-size: 13px; color: #444; margin-top: 20px;
}
.recommended-badge a { color: var(--blue); font-weight: 700; }

/* === MOBILE === */
@media (max-width: 900px) {
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .welcome-grid, .about-intro, .contact-grid { grid-template-columns: 1fr; }
  .pm-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards, .why-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  nav { display: none; flex-direction: column; width: 100%; }
  nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .hamburger { display: flex; }
  .services-grid, .testimonials-grid, .stat-cards, .why-grid, .benefits-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 52px 16px; }
}
