:root {
  --black: #0c0c0d;
  --charcoal: #1a1a1c;
  --gold: #b8912f;
  --gold-light: #e7cf85;
  --gold-dark: #8a6c1f;
  --white: #ffffff;
  --offwhite: #f7f5f0;
  --gray: #6b6b6f;
  --border: #e8e4d8;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { text-decoration: none; color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--black);
  box-shadow: 0 8px 20px rgba(184,145,47,.35);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
  padding: 10px 22px;
}
.btn-white-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-white-outline:hover { background: rgba(255,255,255,.15); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 84px; width: auto; }
.logo-fallback {
  display: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--black);
}
.logo-fallback em { font-style: normal; color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; margin-left: 6px; }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--gold-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-social { display: flex; gap: 8px; margin-right: 4px; }
.header-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background .2s, border-color .2s, color .2s, transform .2s, filter .2s;
}
.header-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.header-social a.social-ig, .footer-social a.social-ig {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b 45%, #6228d7);
  border-color: transparent;
  color: var(--white);
}
.header-social a.social-fb, .footer-social a.social-fb {
  background: #1877f2;
  border-color: transparent;
  color: var(--white);
}
.header-social a.social-tt, .footer-social a.social-tt {
  background: #000000;
  border-color: transparent;
  color: var(--white);
}
.header-social a.social-ig:hover, .header-social a.social-fb:hover, .header-social a.social-tt:hover,
.footer-social a.social-ig:hover, .footer-social a.social-fb:hover, .footer-social a.social-tt:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  color: var(--white);
}
.lang-toggle {
  border: 1px solid var(--black);
  background: transparent;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-toggle:hover { background: var(--black); color: var(--white); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--black); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.82) 32%, rgba(10,10,11,.55) 58%, rgba(10,10,11,.35) 100%),
    linear-gradient(0deg, rgba(10,10,11,.5), transparent 40%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 24px;
}
.hero-text { max-width: 620px; padding-bottom: 12px; }
.eyebrow, .section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  font-size: 1.08rem;
  color: #d9d9dd;
  max-width: 560px;
  margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 40px;
  list-style: none;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-trust li { font-size: 0.85rem; color: #c7c7cc; text-align: left; }
.hero-trust strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--gold-light); }

.hero-photo { display: flex; align-items: center; justify-content: center; }
.agent-frame {
  width: min(320px, 78%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  box-shadow: 0 20px 45px rgba(0,0,0,.4);
}
.agent-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 4px solid rgba(10,10,11,.9);
}

/* Services */
.services { position: relative; overflow: hidden; padding: 100px 0; background: var(--offwhite); }
.services-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.services-overlay { position: absolute; inset: 0; background: rgba(247,245,240,.94); z-index: 1; }
.services .container { position: relative; z-index: 2; text-align: center; }
.services h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--black);
  max-width: 620px;
  margin: 0 auto 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  text-align: left;
}
.service-card {
  display: block;
  width: 100%;
  background: var(--white);
  padding: 0 0 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.service-card:hover .service-thumb img { transform: scale(1.06); }
.service-badge {
  position: absolute;
  left: 16px;
  bottom: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.service-card h3 { font-size: 1.1rem; margin: 30px 26px 10px; color: var(--black); }
.service-card p { font-size: 0.92rem; color: var(--gray); margin: 0 26px; }
.service-more {
  display: inline-block;
  margin: 14px 26px 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Service detail modal */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.service-modal.open { display: flex; }
.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,.6);
  backdrop-filter: blur(3px);
}
.service-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.service-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.9);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
.service-modal-image { position: relative; aspect-ratio: 16 / 9; }
.service-modal-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-modal-icon {
  position: absolute;
  left: 24px;
  bottom: -22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-modal-body { padding: 36px 32px 32px; }
.service-modal-panel h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--black); margin-bottom: 12px; }
.service-modal-panel > .service-modal-body > p { color: var(--gray); margin-bottom: 18px; }
.service-modal-panel ul { list-style: none; }
.service-modal-panel li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.94rem;
  color: var(--charcoal);
}
.service-modal-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Career application modal */
.career-modal-panel { max-width: 460px; }
.career-modal-panel .service-modal-body { padding-top: 56px; }
.career-modal-panel h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--black); margin-bottom: 20px; }
#careerForm .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#careerForm label { display: block; margin-bottom: 18px; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
#careerForm input[type="text"], #careerForm input[type="tel"], #careerForm input[type="email"] {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
#careerForm input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.license-fieldset { border: none; padding: 0; margin: 0 0 20px; }
.license-fieldset legend { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; padding: 0; }
.radio-label, .checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-right: 20px;
  margin-bottom: 8px;
  cursor: pointer;
}
.radio-label input, .checkbox-label input { width: auto; accent-color: var(--gold-dark); }
.license-types { padding: 14px 16px; background: var(--offwhite); border-radius: 8px; }
.license-types legend { margin-bottom: 8px; }

/* Free guide / lead magnet */
.guide { padding: 90px 0; background: var(--black); }
.guide-inner { display: grid; grid-template-columns: 0.55fr 1fr; gap: 56px; align-items: center; }
.guide-cover { display: flex; justify-content: center; }
.guide-cover img {
  width: 100%;
  max-width: 260px;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0,0,0,.5);
  transform: rotate(-3deg);
}
.guide-text .section-eyebrow { color: var(--gold-light); }
.guide-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--white); margin-bottom: 16px; }
.guide-text > p { color: #c7c7cc; margin-bottom: 26px; max-width: 52ch; }
.guide-form { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.guide-form input {
  flex: 1 1 200px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.guide-form input::placeholder { color: #8a8a90; }
.guide-form input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.guide-form .btn { flex: 0 0 auto; }
.guide .form-privacy { color: #8a8a90; }
.guide .form-privacy a { color: var(--gold-light); }
.guide .form-note { color: var(--gold-light); }

/* About */
.about { position: relative; overflow: hidden; padding: 100px 0; }
.about-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.about-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.93); z-index: 1; }
.about > .container { position: relative; z-index: 2; }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.about-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--black); margin-bottom: 22px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
.value-card {
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: var(--offwhite);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value-card h4 { color: var(--black); margin-bottom: 8px; font-size: 1.02rem; }
.value-card p { font-size: 0.88rem; color: var(--gray); }

/* Texas / video */
.texas { position: relative; overflow: hidden; padding: 100px 0; background: var(--white); }
.texas-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.texas-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.92); z-index: 1; }
.texas-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.55fr; gap: 56px; align-items: center; }
.texas-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--black); margin-bottom: 18px; }
.texas-text p { color: var(--gray); max-width: 460px; }
.texas-video-frame {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 6px solid var(--black);
  box-shadow: var(--shadow);
  background: var(--black);
}
.texas-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Why */
.why { position: relative; overflow: hidden; padding: 90px 0; }
.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,10,11,.88), rgba(10,10,11,.88));
  z-index: 1;
}
.why-inner { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.why-card { color: var(--white); }
.why-num { font-family: var(--font-head); font-size: 1rem; color: var(--gold); margin-bottom: 12px; letter-spacing: .1em; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--white); }
.why-card p { color: #b9b9bd; font-size: 0.95rem; }

/* Trust / testimonials */
.trust { position: relative; overflow: hidden; padding: 100px 0; text-align: center; }
.trust-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.trust-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.93); z-index: 1; }
.trust > .container { position: relative; z-index: 2; }
.trust h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--black); margin-bottom: 48px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.trust-card, .team-card {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: var(--offwhite);
}
.trust-card.review {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  border: 1px solid var(--border);
  border-style: solid;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 32px 28px;
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-quote { font-size: 0.92rem; color: var(--charcoal); line-height: 1.6; margin-bottom: 20px; }
.review-author { font-weight: 700; color: var(--black); font-size: 0.95rem; }
.review-location { font-size: 0.82rem; color: var(--gray); }
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color .2s, color .2s;
}
.google-reviews-link:hover { border-color: var(--gold); color: var(--gold-dark); }
.team-eyebrow { margin-top: 64px; display: block; }
.team-card { flex-direction: column; }
.team-card.filled {
  border: 1px solid var(--border);
  border-style: solid;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 32px 20px;
}
.team-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  margin: 0 auto 16px;
}
.team-photo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--white);
}
.team-name { font-family: var(--font-head); font-size: 1.05rem; color: var(--black); margin-bottom: 2px; }
.team-role { font-size: 0.78rem; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* Careers */
.careers { position: relative; overflow: hidden; padding: 100px 0; text-align: center; }
.careers-bg { position: absolute; inset: 0; background-size: cover; background-position: center 65%; z-index: 0; }
.careers-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(10,10,11,.86), rgba(10,10,11,.86)); z-index: 1; }
.careers-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.careers-eyebrow { color: var(--gold-light); }
.careers h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--white); margin-bottom: 18px; }
.careers p { color: #d9d9dd; margin-bottom: 36px; }
.careers-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact { position: relative; overflow: hidden; padding: 100px 0; }
.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,11,.92) 0%, rgba(10,10,11,.8) 40%, rgba(10,10,11,.55) 100%);
  z-index: 1;
}
.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--white); margin: 12px 0 16px; }
.contact-info .section-eyebrow { color: var(--gold-light); }
.contact-info > p { color: #d9d9dd; margin-bottom: 32px; }
.contact-list { list-style: none; margin-bottom: 32px; }
.contact-list li { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-light); font-weight: 700; margin-bottom: 4px; }
.contact-list a, .contact-list span:not(.contact-label) { font-weight: 600; color: var(--white); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-title { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 22px; color: var(--black); }
.contact-form label { display: block; margin-bottom: 18px; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.contact-form input, .contact-form select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.contact-form input:focus, .contact-form select:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-submit { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; font-size: 0.85rem; color: var(--gold-dark); min-height: 1em; }
.form-privacy { margin-top: 12px; font-size: 0.78rem; color: var(--gray); }
.form-privacy a { color: var(--gold-dark); text-decoration: underline; }

/* Footer */
.site-footer { background: var(--black); color: var(--white); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.footer-inner p { font-size: 0.82rem; color: #a3a3a7; margin-top: 4px; }
.footer-email a { color: #a3a3a7; transition: color .2s; }
.footer-email a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.82rem; color: #a3a3a7; }
.footer-copy a { color: #a3a3a7; text-decoration: underline; transition: color .2s; }
.footer-copy a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .2s, border-color .2s, color .2s, transform .2s, filter .2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  z-index: 90;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 860px) {
  .about-inner, .contact-inner, .guide-inner { grid-template-columns: 1fr; }
  .guide-cover { order: -1; margin-bottom: 8px; }
  .guide-cover img { max-width: 180px; }
  .guide-text, .guide-text > p { text-align: center; margin-left: auto; margin-right: auto; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid, .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .texas-inner { grid-template-columns: 1fr; text-align: center; }
  .texas-text p { margin: 0 auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; margin-bottom: 8px; }
  .agent-frame { width: 180px; }
  .hero-text { max-width: 100%; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .menu-toggle { display: flex; }
  .header-social { display: none; }
  .logo-img { height: 56px; }
  .hero { padding: 70px 0 60px; }
  .services, .about, .why, .trust, .careers, .contact, .guide { padding: 64px 0; }
  #careerForm .form-row { grid-template-columns: 1fr; }
}
