/* =============================================
   DEVOTED LINE COURIER — DARK EDITION
   Burgundy #6B0F1A | Black #111111 | Gold #D4AF37 | White #F5F5F5
   ============================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #F5F5F5;
  background-color: #111111;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #F5F5F5;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #F5F5F5;
}

p {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.7;
}

/* --- Layout --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: #D4AF37;
  color: #111111;
  border-color: #D4AF37;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  background: #E8C84A;
  border-color: #E8C84A;
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}

.btn-outline-gold:hover {
  background: #D4AF37;
  color: #111111;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.78rem;
}

.btn-hero {
  padding: 15px 32px;
  font-size: 0.88rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
  display: block;
}

.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.55);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.2s;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 220px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Desktop Nav */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.desktop-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.desktop-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.03em;
  padding: 4px 0;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.2s;
}

.desktop-nav a:hover {
  color: #D4AF37;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Header CTA */
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #D4AF37;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #0A0A0A;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 20px 24px 28px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: color 0.15s;
}

.mobile-menu a:hover {
  color: #D4AF37;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('images/hero image.jpg') center / cover no-repeat;
  background-color: #0A0A0A;
  padding: 120px 0 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(107, 15, 26, 0.6) 45%,
    rgba(10, 10, 10, 0.92) 100%
  );
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 18% 60%, rgba(212, 175, 55, 0.06) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
}

.hero-h1-gold {
  color: #D4AF37;
}

.hero-h1-white {
  color: #F5F5F5;
}

/* Gold divider wrap */
.hero-divider-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.7));
  max-width: 72px;
}

.hero-divider-line:last-child {
  background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.7));
}

.hero-divider-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #D4AF37;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.hero-seo {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.78;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow:
    0 8px 56px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(212, 175, 55, 0.06),
    inset 0 1px 0 rgba(212, 175, 55, 0.08);
}

.hero-form-header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.hero-form-header h2 {
  font-size: 1.35rem;
  color: #F5F5F5;
  margin-bottom: 6px;
}

.hero-form-header p {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.45);
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   FORM ELEMENTS (shared)
   ============================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.8);
  letter-spacing: 0.03em;
}

.required {
  color: #D4AF37;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid rgba(212, 175, 55, 0.18);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #F5F5F5;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 245, 245, 0.28);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  color: rgba(245, 245, 245, 0.65);
  cursor: pointer;
}

.form-group select option {
  background: #1A1A1A;
  color: #F5F5F5;
}

.hero-form .btn {
  margin-top: 6px;
}

.form-success {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #D4AF37;
  font-weight: 500;
  margin-top: 12px;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: #0C0C0C;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #F5F5F5;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(212, 175, 55, 0.18);
  flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: #111111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.service-card {
  background: #1A1A1A;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  padding: 30px 26px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s, background 0.25s;
}

.service-card:hover {
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.32);
  background: #1E1E1E;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(107, 15, 26, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #D4AF37;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.55);
  line-height: 1.65;
}

.services-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: #0D0D0D;
}

.about-inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-box {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
}

.about-image-box img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.about-text .section-label {
  margin-bottom: 12px;
}

.about-text h2 {
  margin-bottom: 22px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.82);
  line-height: 1.5;
}

.about-checklist li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.about-cta-btn {
  margin-top: 30px !important;
  display: inline-flex !important;
}

/* =============================================
   AGENCIES
   ============================================= */
.agencies {
  background: #0A0A0A;
}

.agencies .section-sub {
  color: #D4AF37 !important;
}

.agencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}

.agency-card {
  background: #141414;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 12px;
  padding: 28px 22px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.agency-card:hover {
  background: #1C1C1C;
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.agency-icon {
  margin-bottom: 18px;
}

.agency-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.agency-card p {
  color: rgba(245, 245, 245, 0.55);
  font-size: 0.875rem;
  line-height: 1.65;
}

.agencies-cta {
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 44px;
}

.agencies-cta p {
  color: #D4AF37;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas {
  background: #111111;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-tag {
  display: inline-block;
  padding: 10px 22px;
  background: #1A1A1A;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.82);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.area-tag:hover {
  background: rgba(107, 15, 26, 0.45);
  border-color: rgba(212, 175, 55, 0.38);
  color: #F5F5F5;
}

.area-tag--gold {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  color: #D4AF37;
  font-weight: 600;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  background: #0D0D0D;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #6B0F1A;
  border: 2px solid rgba(212, 175, 55, 0.38);
  color: #D4AF37;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(107, 15, 26, 0.45);
}

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
  margin-top: 28px;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: #111111;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: #1A1A1A;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #F5F5F5;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.faq-question:hover {
  background: #202020;
  color: #D4AF37;
}

.faq-question[aria-expanded="true"] {
  background: #1D1D1D;
  color: #D4AF37;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: #D4AF37;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 4px 26px 22px;
  background: #1A1A1A;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-answer a {
  color: #D4AF37;
  text-decoration: underline;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: #0A0A0A;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

/* Contact Form — darker card style */
.contact-form {
  display: flex;
  flex-direction: column;
}

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

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  background: #1A1A1A;
  border-color: rgba(212, 175, 55, 0.15);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  background: #1E1E1E;
}

.contact-form .form-group textarea {
  min-height: 130px;
}

.contact-form .btn {
  margin-top: 6px;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  background: #1A1A1A;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 12px;
  padding: 28px 24px;
}

.contact-info-card h3 {
  font-size: 1rem;
  color: #D4AF37;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

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

.contact-detail svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 245, 0.35);
  margin-bottom: 4px;
}

.contact-detail a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #D4AF37;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-detail span {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.65);
}

.contact-service-area {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-service-area strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 245, 0.35);
  margin-bottom: 8px;
}

.contact-service-area p {
  font-size: 0.83rem;
  color: rgba(245, 245, 245, 0.55);
  line-height: 1.65;
}

/* Google Map */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.13);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #070707;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #D4AF37;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.45);
  margin-bottom: 14px;
  max-width: 300px;
  line-height: 1.65;
}

.footer-phone,
.footer-email {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #D4AF37;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.15s;
}

.footer-phone:hover,
.footer-email:hover {
  color: #E8C84A;
}

.footer-nav strong,
.footer-links strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D4AF37;
  margin-bottom: 18px;
}

.footer-nav ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.5);
  transition: color 0.15s;
}

.footer-nav a:hover,
.footer-links a:hover {
  color: #D4AF37;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 26px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-inner p {
  font-size: 0.78rem;
  color: rgba(245, 245, 245, 0.28);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(245, 245, 245, 0.28);
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: #D4AF37;
}

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 10px 16px 14px;
  background: rgba(7, 7, 7, 0.97);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: #D4AF37;
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  text-transform: uppercase;
}

.mobile-sticky-btn:hover {
  background: #E8C84A;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================= */
@media (max-width: 960px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-seo {
    max-width: 100%;
  }

  .hero-form-card {
    padding: 28px 26px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-box img {
    min-height: 300px;
  }

  /* Agencies */
  .agencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    max-width: 500px;
    padding: 0;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
  }

  .step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
    margin: 0 0 0 28px;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Trust bar */
  .trust-badge {
    padding: 0 20px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================= */
@media (max-width: 640px) {
  .section-pad {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .logo img {
    width: 180px;
  }

  /* Hero */
  .hero {
    padding: 88px 0 72px;
    align-items: flex-start;
  }

  .hero-inner {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-divider-text {
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-form-card {
    padding: 22px 18px;
  }

  /* Trust bar */
  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
  }

  .trust-divider {
    display: none;
  }

  .trust-badge {
    padding: 0;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .services-cta .btn {
    justify-content: center;
  }

  /* About */
  .about-image-box img {
    min-height: 240px;
  }

  /* Agencies */
  .agencies-grid {
    grid-template-columns: 1fr;
  }

  /* Form row */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Steps */
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .step-number {
    margin-bottom: 16px;
  }

  .step-connector {
    width: 2px;
    height: 22px;
    margin: 0 auto;
    background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Sticky bottom CTA — mobile only */
  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 380px)
   ============================================= */
@media (max-width: 380px) {
  .logo img {
    width: 150px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-form-card {
    padding: 18px 14px;
  }
}
