/* ==========================================================================
   ANDY REAL ESTATE - Akiya Landing Page Stylesystem
   Colors: Navy (#0c2340), Gold (#c8963e / #d4af37), LINE Green (#06c755)
   ========================================================================== */

:root {
  --primary-navy: #0c2340;
  --secondary-navy: #15325b;
  --dark-navy: #061528;
  --accent-gold: #c8963e;
  --accent-gold-hover: #b08130;
  --accent-gold-light: #fef8ec;
  --line-green: #06c755;
  --line-green-hover: #05b04b;
  --phone-orange: #d96b00;
  --phone-orange-hover: #c45e00;
  --bg-light: #f8f9fa;
  --bg-card: #ffffff;
  --text-primary: #1f2937;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(12, 35, 64, 0.08);
  --shadow-lg: 0 16px 40px rgba(12, 35, 64, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px; /* Space for mobile bottom bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.justify-center { justify-content: center; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #c8963e);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(200, 150, 62, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #c8963e, #b08130);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.45);
}

.btn-line {
  background-color: var(--line-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
}
.btn-line:hover {
  background-color: var(--line-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.45);
}

.btn-phone {
  background-color: var(--phone-orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 107, 0, 0.35);
}
.btn-phone:hover {
  background-color: var(--phone-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 107, 0, 0.45);
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--dark-navy);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-free {
  color: #fbbf24;
  font-weight: 700;
}

/* Header */
.site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-navy);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.company-sub {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  background-color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-navy);
}

.phone-icon {
  width: 44px;
  height: 44px;
  background-color: #fff3e0;
  color: var(--phone-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.phone-details {
  display: flex;
  flex-direction: column;
}

.phone-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
}

.phone-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1;
  letter-spacing: 0.03em;
}

.header-line-btn {
  background-color: var(--line-green);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.header-line-btn:hover {
  background-color: var(--line-green-hover);
}

@media (max-width: 991px) {
  .header-contacts .btn-gold,
  .header-line-btn,
  .phone-sub {
    display: none;
  }
  .brand-logo-img {
    height: 64px;
  }
  .company-name {
    font-size: 1.5rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.highlight-quote {
  color: #c0392b;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pill {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.pill.alert-pill {
  background-color: #fef2f2;
  border-color: #fca5a5;
  color: #dc2626;
}

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

.hero-cta-group .btn {
  flex: 1;
  min-width: 240px;
  text-align: left;
}

.btn-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}

.btn-main {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
}

.btn-phone .btn-main {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* Hero Visual & Area Card */
.hero-visual-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid #ffffff;
}

.hero-main-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.badge-accent {
  background: rgba(12, 35, 64, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-gold);
}

/* Area Card */
.area-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent-gold);
}

.area-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}
.area-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.area-lead {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.primary-city {
  background-color: var(--accent-gold);
  color: #ffffff;
  text-align: center;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 0.4rem 0;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.tag {
  background-color: #f3f4f6;
  color: var(--primary-navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
}

.area-footer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Section Common */
.section {
  padding: 4rem 0;
}

.section-title-wrap {
  margin-bottom: 3rem;
}

.section-sub-title {
  color: var(--accent-gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-navy);
}

.title-divider {
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* Problem Section */
.problem-section {
  background-color: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
  background-color: #ffffff;
}

.problem-icon {
  width: 56px;
  height: 56px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.problem-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.4;
}

/* Solution Section */
.solution-section {
  background-color: #f0f4f8;
}

.section-banner {
  background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-banner h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.section-banner p {
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 700;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 1100px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

.solution-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.solution-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary-navy);
  color: var(--accent-gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
  border: 1px solid var(--accent-gold);
}

.solution-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: var(--transition);
}

.solution-card:hover .solution-image img {
  transform: scale(1.05);
}

.solution-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.solution-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-align: center;
  border-bottom: 2px solid var(--accent-gold-light);
  padding-bottom: 0.4rem;
}

.solution-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Flow Section */
.flow-section {
  background-color: #ffffff;
}

.step-flow-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .step-flow-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
}

.step-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  flex: 1;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  background-color: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.step-badge {
  background-color: var(--primary-navy);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.step-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.step-arrow {
  color: var(--accent-gold);
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Profile Section */
.profile-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.profile-left {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.sub-heading-badge {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.profile-main-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.qual-item {
  background-color: var(--accent-gold-light);
  border: 1px solid #f3e8d2;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.qual-item i {
  color: var(--accent-gold);
}

.feature-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.feature-checklist li {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-navy);
}

.feature-checklist li i {
  color: var(--line-green);
  margin-right: 0.25rem;
}

.strength-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
}

/* Middle: Representative Greeting */
.profile-middle {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.greeting-tag {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.rep-photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.rep-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rep-name-box {
  margin-bottom: 1rem;
}

.title-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.rep-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-navy);
  display: inline-block;
}

.rep-kana {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rep-greeting-text {
  font-size: 0.88rem;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.6;
  margin-bottom: 1rem;
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.rep-quals-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.rep-quals-list i {
  color: var(--accent-gold);
}

/* Right: Guarantee Card */
.profile-right {
  display: flex;
}

.guarantee-card {
  background: linear-gradient(135deg, #fffdfa 0%, #fff7e8 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.guarantee-seal {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px dashed var(--accent-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: radial-gradient(circle, #ffffff 60%, #fffbf2 100%);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.25);
  position: relative;
}

.seal-top {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary-navy);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.seal-main {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.guarantee-desc {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-light);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.q-badge {
  background-color: var(--primary-navy);
  color: var(--accent-gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
}

.q-text {
  flex-grow: 1;
}

.faq-toggle-icon {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background-color: #ffffff;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  border-top-color: var(--border-light);
}

.a-wrapper {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.a-badge {
  background-color: var(--accent-gold);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
}

.a-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

/* Bottom CTA Banner */
.bottom-cta-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.bottom-cta-heading {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background-color: #040e1a;
  color: #9ca3af;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon.white {
  background: #ffffff;
  color: var(--primary-navy);
}

.footer-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
}

.footer-sub {
  font-size: 0.85rem;
  max-width: 600px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.copyright {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 1rem;
}

/* Fixed Bottom Bar for Mobile */
.fixed-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
  .fixed-bottom-bar {
    display: flex;
  }
}

.fixed-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 0.5rem;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.2;
}

.fixed-phone {
  background-color: var(--phone-orange);
}

.fixed-btn b {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.fixed-line {
  background-color: var(--line-green);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header i {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.modal-header h3 {
  font-size: 1.35rem;
  color: var(--primary-navy);
  font-weight: 800;
}

.modal-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.required {
  background-color: #ef4444;
  color: #ffffff;
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

.btn-block {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.5rem;
}
