/* =============================================
   STEELCORE PROPERTY MANAGEMENT
   Main Stylesheet - Black & Orange Theme
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --black:      #0d0d0d;
  --dark:       #1a1a1a;
  --dark2:      #242424;
  --orange:     #ff6a00;
  --orange-lt:  #ff8c38;
  --orange-dk:  #d45200;
  --white:      #ffffff;
  --light:      #f5f5f5;
  --gray:       #888888;
  --gray-lt:    #cccccc;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --shadow:     0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.28);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  font-weight: 700;
}

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

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }

.section-tag {
  display: inline-block;
  background: rgba(255,106,0,0.12);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 50px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,106,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* ---- NAVIGATION ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}
.logo-text { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.logo-text span { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-lt);
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 10px; padding: 10px 22px; font-size: 0.82rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: var(--black);
  border-top: 2px solid var(--orange);
  z-index: 999;
  padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-lt);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1800&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.75) 60%, rgba(255,106,0,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,106,0,0.15);
  border: 1px solid rgba(255,106,0,0.35);
  color: var(--orange-lt);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 1.5s infinite; }

@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero h1 .highlight {
  color: var(--orange);
  display: block;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 560px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat h3 {
  font-size: 2rem;
  color: var(--orange);
  font-weight: 800;
}
.hero-stat p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- FEATURES STRIP ---- */
.features-strip {
  background: var(--dark);
  padding: 48px 0;
  border-bottom: 3px solid var(--orange);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,106,0,0.15);
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.feature-item p { font-size: 0.8rem; color: var(--gray); margin: 0; }

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-body { padding: 28px; }

.service-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-body h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-body p { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; line-height: 1.6; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.5px;
}
.service-link:hover { gap: 10px; }

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: var(--transition);
}
.service-card:hover::before { width: 100%; }

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-img-wrap { position: relative; }
.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-head);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge-float .num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.why-badge-float .lbl { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; margin-top: 4px; }

.why-content .section-title { color: var(--white); }
.why-content .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 0 36px; text-align: left; }

.why-list { margin-bottom: 36px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.why-check {
  width: 38px;
  height: 38px;
  background: rgba(255,106,0,0.15);
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 2px;
}
.why-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin: 0; }

/* ---- PROCESS ---- */
.process-section { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  position: relative;
}
.step-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }

.step-num {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.step-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--light); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
}

.stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; }
.testimonial-card p { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 24px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.author-info h4 { font-size: 0.95rem; font-weight: 700; }
.author-info span { font-size: 0.8rem; color: var(--gray); }

/* ---- CTA BANNER ---- */
.cta-section {
  background: var(--orange);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-top: 8px; }
.cta-btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  flex-shrink: 0;
  padding: 16px 36px;
  font-size: 1rem;
}
.cta-btn-dark:hover { background: var(--black); border-color: var(--black); transform: translateY(-2px); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}

.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---- SERVICES PAGE ---- */
.service-detail { padding: 80px 0; }
.service-detail:nth-child(even) { background: var(--light); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-detail-body .section-tag { margin-bottom: 16px; }
.service-detail-body h2 { font-size: 2rem; margin-bottom: 18px; }
.service-detail-body p { color: var(--gray); margin-bottom: 24px; line-height: 1.8; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- ABOUT PAGE ---- */
.about-mission { background: var(--white); }
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-mission-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.team-section { background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card span { font-size: 0.82rem; color: var(--orange); font-weight: 600; }

.values-section { background: var(--dark); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--orange); background: rgba(255,106,0,0.07); }
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ---- CONTACT PAGE ---- */
.contact-section { background: var(--white); }

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

.contact-info-block h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info-block p { color: var(--gray); margin-bottom: 36px; }

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.ci-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ci-text h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 4px; }
.ci-text p { font-size: 0.95rem; color: var(--dark); margin: 0; line-height: 1.5; }

/* Contact form */
.contact-form-wrap {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,106,0,0.06);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { height: 130px; resize: vertical; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

.map-section { background: var(--dark); padding: 0; }
.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

/* ---- LEGAL PAGES (Privacy / Terms) ---- */
.legal-section { background: var(--white); padding: 80px 0; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--dark); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 14px 0 18px 20px; }
.legal-content ul li { color: #555; line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--orange); }
.legal-effective { background: rgba(255,106,0,0.08); border-left: 4px solid var(--orange); padding: 14px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 40px; font-size: 0.9rem; color: var(--gray); }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding-top: 70px;
  border-top: 3px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 18px 0 24px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact li .ico { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--orange); }

/* ---- SUCCESS / THANK YOU ---- */
.success-msg {
  display: none;
  background: rgba(0,200,100,0.12);
  border: 1px solid rgba(0,200,100,0.35);
  color: #00c864;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-img { height: 380px; }
  .why-badge-float { right: 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .section-pad { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
