/* ===========================
   Bring Me Solutions – CSS v2
   Premium White-Glove Style
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --navy:    #0f1b2d;
  --navy-2:  #1a2744;
  --orange:  #f47920;
  --orange-h:#d9680f;
  --light:   #f7f8fb;
  --white:   #ffffff;
  --grey:    #5a6478;
  --grey-lt: #8a95a8;
  --border:  #e4e8ee;
  --radius:  10px;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #2d3444;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 190px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

nav ul a {
  color: #c0ccdf;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--orange-h) !important; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(244,121,32,0.3);
}

.btn-primary:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,121,32,0.4);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 14px;
  transition: all 0.2s;
}

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

/* ---- HERO ---- */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, #162240 50%, #1e3155 100%);
  color: var(--white);
  padding: 100px 28px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(244,121,32,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 38px;
  color: #a8badb;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero .btn-primary,
.hero .btn-secondary { position: relative; z-index: 1; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 28px;
}

.trust-bar ul {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-bar li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 600;
}

.trust-bar li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  font-size: 1rem;
}

/* ---- SECTIONS ---- */
section { padding: 90px 28px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* ---- SERVICES GRID ---- */
.services-bg { background: var(--light); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 12px 36px rgba(15,27,45,0.1);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p { font-size: 0.95rem; color: var(--grey); line-height: 1.65; }

/* ---- STATS ---- */
.stats-section { background: var(--navy); }

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

.stat-item h3 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.95rem;
  color: #a8badb;
  font-weight: 500;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.why-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--light);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.why-item:hover { box-shadow: 0 8px 24px rgba(15,27,45,0.08); }

.why-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

.why-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-item p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

/* ---- WHATS INCLUDED ---- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.included-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.included-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.included-item p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ---- PHOTO GALLERY ---- */
.gallery-bg { background: var(--light); }

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

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

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

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---- SERVICE AREAS ---- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
}

.area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 28px;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-band p { color: #a8badb; margin-bottom: 32px; font-size: 1.1rem; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 24px; font-weight: 800; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-detail .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong { color: var(--navy); font-size: 0.9rem; }
.contact-detail p { color: var(--grey); font-size: 0.95rem; }
.contact-detail a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-detail a:hover { color: var(--orange); }

form .form-group { margin-bottom: 20px; }

form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #2d3444;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  background: var(--white);
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,121,32,0.1);
}

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

form button {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(244,121,32,0.3);
}

form button:hover {
  background: var(--orange-h);
  box-shadow: 0 6px 20px rgba(244,121,32,0.4);
}

/* ---- FOOTER ---- */
footer {
  background: #0a1120;
  color: #7a8ba5;
  padding: 50px 28px 28px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

footer p { font-size: 0.88rem; margin-bottom: 6px; }

footer a { color: #7a8ba5; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--orange); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.footer-links a { font-weight: 500; font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid #1a2640;
  margin-top: 24px;
  padding-top: 20px;
  font-size: 0.8rem;
}

/* ---- STICKY MOBILE CTA ---- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
}

.mobile-cta-inner {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-cta .mcta-call {
  background: var(--white);
  color: var(--navy);
}

.mobile-cta .mcta-quote {
  background: var(--orange);
  color: var(--white);
}

/* ---- SEO PAGE STYLES ---- */
.page-hero {
  background: var(--navy);
  padding: 70px 28px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
}

.page-hero p {
  color: #a8badb;
  margin-top: 14px;
  font-size: 1.05rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  height: 400px;
}

.service-detail h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail p { color: var(--grey); margin-bottom: 14px; line-height: 1.7; }
.service-detail ul { padding-left: 22px; color: var(--grey); }
.service-detail ul li { margin-bottom: 8px; line-height: 1.5; }

.tag {
  display: inline-block;
  background: #eef2ff;
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* ---- VALUES GRID ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
}

.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav ul { display: none; }
  nav { height: 120px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail,
  .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
  .hero { padding: 70px 20px 80px; }
  .btn-secondary { margin-left: 0; margin-top: 12px; display: block; text-align: center; }
  section { padding: 60px 20px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}
