/* ==========================================
   LEGACY NOTARY SOLUTIONS - DESIGN SYSTEM
   ========================================== */

:root {
  /* Color Palette */
  --primary-navy: #0F172A;
  --navy-light: #1E293B;
  --navy-card: #1E293B;
  
  --emerald-main: #059669;
  --emerald-hover: #047857;
  --emerald-glow: rgba(5, 150, 105, 0.25);
  
  --gold-star: #F59E0B;
  --gold-badge: #D97706;
  --gold-light: #FEF3C7;
  
  --blue-accent: #2563EB;
  --blue-light: #EFF6FF;
  
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-subtle: #F1F5F9;
  
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-focus: #059669;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 25px rgba(5, 150, 105, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

ul {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-navy);
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--emerald-main) 0%, var(--blue-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Header Styles */
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--emerald-main);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--emerald-main);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}

.btn-primary:hover {
  background: var(--emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35);
}

.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--emerald-main), var(--blue-accent));
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.glow-effect:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: var(--primary-navy);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--primary-navy);
}

.btn-outline:hover {
  border-color: var(--emerald-main);
  color: var(--emerald-main);
  background: rgba(5, 150, 105, 0.05);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--bg-white);
}

.btn-outline-white:hover {
  border-color: var(--bg-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-text {
  background: none;
  border: none;
  color: var(--emerald-main);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-text:hover {
  color: var(--emerald-hover);
  transform: translateX(4px);
}

/* Announcement Top Bar */
.announcement-bar {
  background: var(--primary-navy);
  color: var(--bg-white);
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.star-rating {
  color: var(--gold-star);
}

.announcement-info {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-light);
}

.announcement-info i {
  color: var(--emerald-main);
}

.top-phone-link {
  color: var(--bg-white);
  font-weight: 700;
}

.top-phone-link:hover {
  color: var(--emerald-main);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover {
  color: var(--emerald-main);
}

.badge-rating {
  background: var(--gold-light);
  color: var(--gold-badge);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.mobile-nav-content {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: var(--bg-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-logo {
  height: 40px;
}

.close-mobile-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-background-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

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

.hero-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-light);
  color: var(--primary-navy);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.stars-gold {
  color: var(--gold-star);
  font-size: 0.95rem;
}

.hero-headline {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.check-icon {
  color: var(--emerald-main);
}

/* Hero Media Card Stack */
.hero-media-column {
  position: relative;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-logo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.hero-logo-divider {
  width: 1px;
  height: 24px;
  background: var(--border-light);
  margin: 0 12px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--emerald-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 16px;
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.floating-badge {
  position: absolute;
  background: var(--bg-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-light);
  z-index: 5;
}

.floating-badge i {
  font-size: 1.8rem;
  color: var(--emerald-main);
}

.floating-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.floating-badge small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.badge-top-right {
  top: -20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
}

.rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold-badge);
  line-height: 1;
}

.stars-sm {
  color: var(--gold-star);
  font-size: 0.75rem;
}

/* Animations */
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: floatAnim 4s ease-in-out infinite;
}

.animate-float-delay {
  animation: floatAnim 4s ease-in-out 2s infinite;
}

/* Accreditation Section */
.accreditation-section {
  background: var(--primary-navy);
  color: var(--bg-white);
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accreditation-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.accred-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.9rem;
}

.accred-icon {
  color: var(--emerald-main);
  font-size: 1.25rem;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--emerald-main);
  box-shadow: var(--shadow-md);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--emerald-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.accent-gold { background: rgba(245, 158, 11, 0.1); color: var(--gold-badge); }
.accent-emerald { background: rgba(5, 150, 105, 0.1); color: var(--emerald-main); }
.accent-blue { background: rgba(37, 99, 235, 0.1); color: var(--blue-accent); }
.accent-purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.accent-rose { background: rgba(225, 29, 72, 0.1); color: #E11D48; }

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: var(--emerald-main);
  font-size: 0.85rem;
}

/* Calculator Section */
.calculator-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.calculator-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.calc-header {
  text-align: center;
  margin-bottom: 40px;
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--emerald-main);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.calc-results {
  background: var(--primary-navy);
  color: var(--bg-white);
  padding: 36px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--emerald-main);
  line-height: 1;
  margin: 12px 0;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 320px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
  color: var(--bg-white);
  padding: 24px;
}

.gallery-overlay h4 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Reviews & 4.8 Rating Section */
.reviews-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.reviews-header-block {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  margin-bottom: 50px;
  align-items: center;
}

.rating-overview-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.big-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.stars-gold-lg {
  color: var(--gold-star);
  font-size: 1.4rem;
  margin: 8px 0;
}

.review-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rating-bars {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.bar-bg {
  flex: 1;
  height: 8px;
  background: var(--bg-subtle);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gold-star);
}

.reviews-filter-buttons {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-navy);
  color: var(--bg-white);
  border-color: var(--primary-navy);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-quote {
  font-size: 1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gold-light);
  color: var(--gold-badge);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.reviewer-name {
  font-size: 1rem;
  margin-bottom: 2px;
}

.reviewer-tag {
  font-size: 0.8rem;
  color: var(--emerald-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Service Areas Section */
.areas-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.areas-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.counties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.county-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.county-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-main);
}

.county-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.area-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--blue-light);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 20px;
  border-radius: var(--radius-md);
}

.area-callout i {
  font-size: 2rem;
  color: var(--blue-accent);
}

.meeting-places-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}

.meeting-places-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.meeting-places-list i {
  color: var(--emerald-main);
  width: 20px;
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.visual-header i {
  font-size: 1.5rem;
  color: var(--emerald-main);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image-frame {
  position: relative;
}

.about-profile-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--emerald-main);
  color: var(--bg-white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  text-align: center;
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 600;
}

.about-text-col p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.check-box {
  display: flex;
  gap: 14px;
}

.check-box i {
  font-size: 1.8rem;
  color: var(--emerald-main);
}

.check-box h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.check-box p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item.active {
  border-color: var(--emerald-main);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: var(--bg-white);
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: var(--emerald-main);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1E293B 100%);
  color: var(--bg-white);
  padding: 80px 0;
}

.cta-logo-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.cta-brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-heading {
  color: var(--bg-white);
  font-size: 2.75rem;
  max-width: 800px;
  margin: 0 auto 16px;
}

.cta-sub {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #090D16;
  color: var(--bg-white);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 48px;
  margin-bottom: 20px;
}

.footer-about {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.rating-badge-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

.stars-gold-sm {
  color: var(--gold-star);
  font-size: 0.8rem;
}

.footer-heading {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--emerald-main);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.c-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.c-item i {
  color: var(--emerald-main);
  margin-top: 4px;
}

.c-item a:hover {
  color: var(--emerald-main);
}

.footer-bottom {
  padding: 24px 0;
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal a:hover {
  color: var(--emerald-main);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.close-modal-btn:hover {
  background: var(--border-light);
}

.modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--emerald-main);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.modal-header h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

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

/* Toast */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--primary-navy);
  color: var(--bg-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  border-left: 4px solid var(--emerald-main);
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-cta-group, .hero-highlights {
    justify-content: center;
  }
  
  .services-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-header-block, .areas-wrapper, .about-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-body {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu, .phone-btn {
    display: none;
  }
  
  .hamburger-btn {
    display: block;
  }
  
  .hero-headline {
    font-size: 2.25rem;
  }
  
  .services-grid, .gallery-grid, .reviews-grid, .counties-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   LIVE CHECKOUT & PAYMENT SYSTEM STYLES
   ========================================== */
.checkout-page-body {
  background-color: var(--bg-light);
}

.checkout-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.checkout-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.checkout-security-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(5, 150, 105, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.security-lock {
  color: var(--emerald-main);
  font-size: 1.2rem;
}

.checkout-security-tag strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-navy);
}

.checkout-security-tag small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-main {
  padding: 60px 0 100px;
}

.checkout-title-area {
  margin-bottom: 48px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.checkout-step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--emerald-main);
  color: var(--bg-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-header h3 {
  font-size: 1.25rem;
}

/* Payment Tabs */
.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.payment-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  background: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-tab.active {
  border-color: var(--emerald-main);
  background: rgba(5, 150, 105, 0.05);
  color: var(--emerald-main);
}

.provider-icon-stripe {
  color: #635BFF;
  font-size: 1.4rem;
}

.provider-icon-square {
  color: #006AFF;
  font-size: 1.2rem;
}

.payment-provider-box {
  display: none;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.payment-provider-box.active {
  display: block;
}

.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #635BFF;
  color: var(--bg-white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.square-badge {
  background: #006AFF;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.square-sdk-box {
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  background: var(--bg-white);
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.express-checkout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pay-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  color: var(--text-dark);
}

.cashapp-tag {
  background: #00D632;
  color: var(--bg-white);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Summary Card */
.order-summary-card {
  position: sticky;
  top: 100px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.badge-live-quote {
  background: rgba(5, 150, 105, 0.1);
  color: var(--emerald-main);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.95rem;
}

.summary-line small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.line-price {
  font-family: var(--font-heading);
  font-weight: 700;
}

.summary-divider {
  height: 1px;
  background: var(--border-light);
  margin: 20px 0;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.summary-total-row span {
  font-size: 1.1rem;
  font-weight: 700;
}

.total-price-tag {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--emerald-main);
}

.summary-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.guarantee-item i {
  color: var(--emerald-main);
}

.support-contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

.support-contact-box i {
  font-size: 1.6rem;
  color: var(--blue-accent);
}

/* Receipt Modal */
.receipt-card {
  max-width: 540px;
}

.receipt-success-icon {
  width: 64px;
  height: 64px;
  background: var(--emerald-main);
  color: var(--bg-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}

.receipt-body {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.receipt-row span {
  color: var(--text-muted);
}

.total-receipt-row {
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.receipt-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

