/* =============================================
   DEVILLIER PROPERTY SOLUTIONS
   Main Stylesheet
   Design: Refined luxury / editorial property brand
   ============================================= */

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

/* ---- CSS VARIABLES ---- */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e42;
  --gold:       #b8922a;
  --gold-light: #d4aa4a;
  --cream:      #f8f5ef;
  --warm-gray:  #e8e3db;
  --text:       #2c2c2c;
  --text-light: #6b6b6b;
  --white:      #ffffff;
  --font-body:    'Montserrat', sans-serif;
  --transition:   0.3s ease;
  --shadow-sm:    0 2px 12px rgba(13,27,42,0.08);
  --shadow-md:    0 6px 32px rgba(13,27,42,0.14);
  --shadow-lg:    0 16px 64px rgba(13,27,42,0.20);
  --radius:       4px;
  --max-width:    1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 90px 0; }

.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.section--navy .section-label { color: var(--gold-light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--gold-light); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; }

/* ---- NAVIGATION ---- */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--warm-gray);
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-links .btn { margin-left: 0.75rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown > a::after { display: none; }
.dropdown-arrow { font-size: 0.6rem; transition: transform var(--transition); }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--warm-gray);
  transition: all var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); padding-left: 1.6rem; }
.dropdown-menu a::after { display: none !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.6) 60%, rgba(13,27,42,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero-content h1 {
  color: var(--white);
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  font-style: normal;
  font-weight: 700;
  display: block;
  color: var(--gold-light);
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.hero-badge {
  text-align: center;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Sub-page hero */
.page-hero {
  background: var(--navy);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,146,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); font-weight: 600; font-family: var(--font-body); font-style: normal; }
.page-hero h1 em { color: var(--gold-light); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 620px; font-size: 1.05rem; margin-top: 1rem; }
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 0.5rem; }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

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

.service-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.service-card-body p {
  color: var(--text-light);
  font-size: 0.92rem;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.7rem; }

/* ---- TRUST PILLARS ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.trust-item {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.trust-item h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.trust-item p { color: var(--text-light); font-size: 0.9rem; }

/* ---- TWO-COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.two-col-img::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}
.two-col-img img { width: 100%; height: 420px; object-fit: cover; }

.two-col-text h2 { margin-bottom: 1.5rem; }
.two-col-text p { color: var(--text-light); }
.two-col-text .btn { margin-top: 1.5rem; }

/* ---- SERVICE DETAIL LIST ---- */
.service-list {
  margin: 1.5rem 0;
}
.service-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--warm-gray);
}
.service-list li:last-child { border-bottom: none; }
.service-list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(184,146,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.1rem;
}
.service-list li strong { display: block; color: var(--navy); margin-bottom: 0.2rem; }
.service-list li p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ---- WHY CHOOSE US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  padding: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}
.why-card h3 { color: var(--gold-light); font-size: 1.25rem; margin-bottom: 0.6rem; }
.why-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

/* ---- TESTIMONIAL / QUOTE BAR ---- */
.quote-bar {
  background: var(--gold);
  padding: 50px 0;
  text-align: center;
}
.quote-bar blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: normal;
  font-weight: 500;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 0.75rem;
}
.quote-bar cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,146,42,0.15) 0%, transparent 70%);
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 2rem; }
.cta-band .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT SECTION ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--warm-gray);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-notice {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  text-align: center;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: #2e7d32;
  margin-top: 1rem;
}

/* Contact info sidebar */
.contact-info-wrap { padding-top: 1rem; }
.contact-info-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.contact-info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: rgba(184,146,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.contact-info-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-info-item a, .contact-info-item p {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: opacity var(--transition), transform var(--transition);
  overflow: hidden;
  padding: 0;
  line-height: 1;
}
.social-link.fb-link { background: #1877F2 !important; }
.social-link:hover { opacity: 0.85; transform: translateY(-2px); }

/* ---- VACANCIES ---- */
.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.vacancy-card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.vacancy-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 2px dashed var(--warm-gray);
}
.vacancy-empty h3 { color: var(--navy); font-size: 1.8rem; margin-bottom: 0.75rem; }
.vacancy-empty p { color: var(--text-light); max-width: 440px; margin: 0 auto 2rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 50px; width: auto; margin-bottom: 1.2rem; opacity: 0.95; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 300px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact p a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact p a:hover { color: var(--white); }
.footer-contact .fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--gold-light); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ---- OUTBOUND LINKS ---- */
.outbound-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.outbound-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  transition: gap var(--transition);
}
.outbound-link:hover { gap: 0.7rem; color: var(--gold-light); }

/* ---- ABOUT PAGE ---- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-radius: 10px;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-num {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,146,42,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.value-card p { color: var(--text-light); font-size: 0.9rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- DIVIDER ---- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem 0 2rem;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ---- TEXT UTILITIES ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid,
  .trust-grid,
  .why-grid,
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 3rem; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .container { padding: 0 1.25rem; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--warm-gray);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    gap: 0;
    z-index: 999;
  }
  .nav-links.open { align-items: flex-start; }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { padding: 0.75rem 1rem; border-radius: 0; border-bottom: 1px solid var(--warm-gray); text-align: left; display: block; width: 100%; }
  .nav-links.open a::after { display: none; }
  .nav-links.open .btn { margin: 0.75rem 0 0; width: 100%; justify-content: center; text-align: center; }
  .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: var(--cream); }
  .nav-dropdown { width: 100%; }
  .dropdown-arrow { display: none; }

  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .two-col-img { order: -1; }

  .services-grid,
  .trust-grid,
  .why-grid,
  .about-values { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-badges { gap: 1.2rem; margin-top: 2rem; }
  .hero-badge strong { font-size: 1.4rem; }
  .hero-badge span { font-size: 0.62rem; }
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .topbar-right { display: none; }

  .hero-content { padding: 50px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
}
