/*
Theme Name: Derby SR22 Insurance Louisville
Theme URI: https://derbysr22insurance.com
Author: Derby SR22 Insurance Louisville
Author URI: https://derbysr22insurance.com
Description: Premium WordPress theme for Derby SR22 Insurance Louisville, built with the Insolan insurance agency design system, responsive layouts, 1-click page generator, and lead capture.
Version: 1.1.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: derby-sr22
Tags: insurance, financial-services, business, responsive-layout, custom-menu, featured-images, translation-ready
*/

:root {
  --theme-color1: #91c330;
  --theme-color1-rgb: 145, 195, 48;
  --theme-color2: #1975ff;
  --theme-color2-rgb: 25, 117, 255;
  --theme-color3: #102147;
  --theme-color3-rgb: 16, 33, 71;
  --theme-color4: #003a6b;
  --theme-color4-rgb: 0, 58, 107;

  --text-color: #555555;
  --text-muted: #788293;
  --heading-color: #102147;
  --bg-light: #f6f9fc;
  --bg-white: #ffffff;
  --border-color: #e5ebf4;
  --border-light: #edf2f8;

  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 4px 15px rgba(16, 33, 71, 0.05);
  --shadow-md: 0 10px 30px rgba(16, 33, 71, 0.08);
  --shadow-lg: 0 20px 45px rgba(16, 33, 71, 0.12);
  --shadow-hover: 0 15px 35px rgba(25, 117, 255, 0.18);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-color);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--theme-color2);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--theme-color1);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.15rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.25rem; }
ul, ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  line-height: 1.2;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--theme-color2);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(25, 117, 255, 0.35);
}

.btn-primary:hover {
  background-color: #0f5ecc;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 117, 255, 0.45);
}

.btn-accent {
  background-color: var(--theme-color1);
  color: var(--theme-color3);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(145, 195, 48, 0.35);
}

.btn-accent:hover {
  background-color: #82b226;
  color: var(--theme-color3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(145, 195, 48, 0.45);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--theme-color3);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--heading-color);
}

.btn-outline-dark:hover {
  background-color: var(--theme-color2);
  color: #ffffff;
  border-color: var(--theme-color2);
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: var(--theme-color3);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color3);
  transform: translateY(-2px);
}

/* Header Top */
.header-top {
  background-color: var(--theme-color3);
  color: #c4d3eb;
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.header-top-left, .header-top-right {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-top-item svg {
  color: var(--theme-color1);
}

.header-top-item a {
  color: #ffffff;
}

.header-top-item a:hover {
  color: var(--theme-color1);
}

.header-top-badge {
  background: rgba(145, 195, 48, 0.2);
  color: var(--theme-color1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Header Middle */
.header-middle {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-middle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--theme-color2) 0%, var(--theme-color4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

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

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--theme-color3);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-title span {
  color: var(--theme-color2);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-info-boxes {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-info-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(25, 117, 255, 0.08);
  color: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-info-content small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.header-info-content strong, .header-info-content strong a {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--heading-color);
}

/* Main Navigation Bar */
.main-navbar {
  background-color: var(--theme-color3);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.main-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 18px 20px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover, .nav-item.active > .nav-link {
  background-color: var(--theme-color2);
  color: #ffffff;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 200;
  border-top: 3px solid var(--theme-color2);
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 9px 22px;
  font-size: 0.875rem;
  color: var(--heading-color);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: var(--bg-light);
  color: var(--theme-color2);
  padding-left: 26px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 10px;
}

/* --------------------------------------------------------------------------
 * HERO SECTION WITH EXACT 50% OPACITY BACKGROUND IMAGE
 * -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: #091530;
  color: #ffffff;
  padding: 105px 0 145px 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.webp');
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  color: var(--theme-color1);
}

.hero-title {
  color: #ffffff;
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-size: 1.1875rem;
  line-height: 1.8;
  color: #d8e5f7;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
 * PAGE BANNER HEADER (50% OPACITY BACKGROUND IMAGE)
 * -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  background-color: #091530;
  color: #ffffff;
  padding: 70px 0;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.webp');
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.page-banner-inner {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  color: #ffffff;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
}

.breadcrumb-list a {
  color: #c4d3eb;
}

.breadcrumb-list a:hover {
  color: #ffffff;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-active {
  color: var(--theme-color1);
  font-weight: 600;
}

/* Floating Metrics Bar */
.metrics-bar-wrapper {
  margin-top: -55px;
  position: relative;
  z-index: 10;
}

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

.metric-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px 25px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--theme-color2);
}

.metric-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(25, 117, 255, 0.1) 0%, rgba(145, 195, 48, 0.15) 100%);
  color: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-color3);
  margin-bottom: 4px;
}

.metric-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Sections */
.section {
  padding: 85px 0;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px auto;
}

.section-tagline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-color2);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 15px;
}

.title-dots {
  display: inline-block;
  position: relative;
  width: 55px;
  height: 4px;
  background-color: var(--theme-color2);
  border-radius: var(--radius-pill);
  margin: 0 auto 20px auto;
}

.title-dots::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  width: 6px;
  height: 4px;
  background-color: var(--theme-color1);
  border-radius: var(--radius-pill);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Two-Column Grid Layout for Feature Image Blocks */
.section-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.image-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.showcase-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.image-floating-badge {
  position: absolute;
  background: rgba(16, 33, 71, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.badge-bottom-left { bottom: 22px; left: 22px; }
.badge-bottom-right { bottom: 22px; right: 22px; }

.image-floating-badge strong {
  display: block;
  font-size: 0.9375rem;
  color: #ffffff;
}

.image-floating-badge small {
  display: block;
  font-size: 0.8125rem;
  color: #c4d3eb;
}

.image-floating-badge svg {
  color: var(--theme-color1);
  flex-shrink: 0;
}

.feature-item-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--theme-color2);
}

.feature-item-card .feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: rgba(25, 117, 255, 0.1);
  color: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Feature Cards & Grid */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--theme-color2);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: rgba(25, 117, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color2);
  margin-bottom: 22px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-color);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--theme-color2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Coverage Spotlight Card */
.coverage-spotlight-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  margin-bottom: 35px;
}

.spotlight-image-col {
  position: relative;
  min-height: 340px;
}

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

.spotlight-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--theme-color1);
  color: var(--theme-color3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.spotlight-content-col {
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-tag {
  color: var(--theme-color2);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.spotlight-title {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.spotlight-desc {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.spotlight-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Compliance Banner Visual */
.compliance-banner-visual {
  background: linear-gradient(135deg, var(--theme-color3) 0%, var(--theme-color4) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}

.compliance-image-col {
  min-height: 350px;
}

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

.compliance-content-col {
  padding: 45px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compliance-badge {
  display: inline-block;
  background-color: rgba(145, 195, 48, 0.2);
  color: var(--theme-color1);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  width: fit-content;
}

.compliance-title {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 16px;
}

.compliance-desc {
  color: #c4d3eb;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.compliance-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Location Cards Grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.location-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-color2);
  box-shadow: var(--shadow-hover);
}

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(25, 117, 255, 0.08);
  color: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--heading-color);
}

.location-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
 * Insolan Project Details Design (family-business-grow)
 * -------------------------------------------------------------------------- */
.project-info-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--theme-color2);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 35px;
  box-shadow: var(--shadow-sm);
}

.project-info-title {
  font-size: 1.25rem;
  color: var(--theme-color3);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.project-info-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 45px;
  height: 2px;
  background-color: var(--theme-color1);
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-muted);
}

.info-value {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--theme-color3);
  font-weight: 600;
  line-height: 1.4;
}

.info-value a {
  color: var(--theme-color2);
}

.project-featured-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 35px;
  border: 1px solid var(--border-color);
}

.project-showcase-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-featured-image-box:hover .project-showcase-img {
  transform: scale(1.03);
}

.project-floating-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(16, 33, 71, 0.92);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 35px 0;
}

.project-gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background: #ffffff;
}

.project-gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-gallery-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(9, 21, 48, 0.9);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-gallery-tag::before {
  content: '✓';
  color: var(--theme-color1);
  font-weight: 900;
}

.insolan-check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px 0;
}

.insolan-check-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-color);
}

.insolan-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  color: var(--theme-color3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
}

/* Interactive Calculator & Checklist in CSS */
.calc-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  margin: 30px 0;
}

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

.calc-input-group {
  margin-bottom: 20px;
}

.calc-input-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.calc-input-group select, .calc-input-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 1rem;
  background-color: #ffffff;
  color: var(--heading-color);
}

.calc-result-box {
  background: linear-gradient(135deg, rgba(25, 117, 255, 0.06), rgba(145, 195, 48, 0.1));
  border: 2px dashed rgba(25, 117, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.calc-result-price {
  font-size: 2.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--theme-color3);
  margin: 10px 0;
}

.checklist-widget {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  margin: 30px 0;
}

.checklist-progress-outer {
  height: 10px;
  background: var(--bg-light);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: 15px 0 25px 0;
  border: 1px solid var(--border-color);
}

.checklist-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--theme-color2), var(--theme-color1));
  transition: width 0.4s ease;
}

.checklist-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.checklist-step-item:hover {
  border-color: var(--theme-color2);
  background-color: var(--bg-light);
}

.checklist-step-item.checked {
  background-color: rgba(145, 195, 48, 0.12);
  border-color: rgba(145, 195, 48, 0.35);
}

.checklist-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: transparent;
  transition: var(--transition);
  background: #ffffff;
  margin-top: 3px;
}

.checklist-step-item.checked .checklist-checkbox {
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #ffffff;
}

.checklist-step-text {
  flex-grow: 1;
}

.checklist-step-text strong {
  display: block;
  color: var(--heading-color);
  font-size: 1rem;
}

/* FAQ Accordion */
.accordion-wrapper {
  margin-top: 30px;
}

.accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.accordion-item:hover {
  border-color: rgba(25, 117, 255, 0.4);
  box-shadow: 0 4px 15px rgba(16, 33, 71, 0.05);
}

.accordion-item.active {
  border-color: var(--theme-color2);
  box-shadow: 0 6px 20px rgba(25, 117, 255, 0.08);
}

.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: #ffffff;
  transition: background-color 0.25s ease;
  user-select: none;
}

.accordion-header:hover {
  background-color: rgba(25, 117, 255, 0.03);
}

.accordion-item.active .accordion-header {
  background-color: rgba(25, 117, 255, 0.06);
  border-bottom: 1px solid var(--border-color);
}

.accordion-question {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--theme-color3);
  margin: 0;
  line-height: 1.4;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(25, 117, 255, 0.1);
  color: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
  background-color: var(--theme-color2);
  color: #ffffff;
}

.accordion-body {
  display: none;
  padding: 24px;
  color: var(--text-color);
  line-height: 1.75;
  background-color: #ffffff;
  font-size: 1.025rem;
}

.accordion-item.active .accordion-body {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Page Layout */
.page-layout-wrapper {
  padding: 70px 0;
}

.page-layout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 45px;
  align-items: start;
}

.page-content-box {
  background-color: #ffffff;
}

/* Sidebar Widgets */
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-cta {
  background: linear-gradient(135deg, var(--theme-color3) 0%, var(--theme-color4) 100%);
  color: #ffffff;
  border: none;
}

.sidebar-widget-cta .widget-title {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-widget-cta p {
  color: #c4d3eb;
}

.sidebar-phone-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.sidebar-phone-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--theme-color1);
  text-decoration: none;
}

.widget-title {
  font-size: 1.25rem;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--theme-color2);
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-list li {
  margin-bottom: 8px;
}

.sidebar-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.sidebar-nav-list a:hover {
  background-color: var(--theme-color2);
  color: #ffffff;
  padding-left: 20px;
}

.sidebar-locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-locations-list a {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--bg-light);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--theme-color3);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.sidebar-locations-list a:hover {
  background-color: var(--theme-color2);
  color: #ffffff;
  border-color: var(--theme-color2);
}

/* CTA Banner Section */
.cta-banner-section {
  background: linear-gradient(135deg, var(--theme-color2) 0%, #004fb0 100%);
  color: #ffffff;
  padding: 65px 0;
  text-align: center;
  position: relative;
}

.cta-banner-title {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 15px;
}

.cta-banner-desc {
  color: #dbe7f6;
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Site Footer */
.site-footer {
  background-color: #0c1833;
  color: #9fb2cc;
  padding: 70px 0 0 0;
  font-size: 0.9375rem;
}

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

.footer-col-title {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--theme-color1);
  border-radius: var(--radius-pill);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #9fb2cc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--theme-color1);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.footer-contact-icon {
  color: var(--theme-color1);
}

.footer-contact-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-contact-link:hover {
  color: var(--theme-color1);
}

.footer-bottom {
  padding: 25px 0;
  font-size: 0.875rem;
  color: #7b8fa8;
}

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

.footer-bottom a {
  color: var(--theme-color1);
}

/* Modal Overlay & Container */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 33, 71, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--heading-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--theme-color2);
  color: #ffffff;
}

.modal-header {
  margin-bottom: 25px;
  padding-right: 40px;
}

.modal-title {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Mobile Sticky Call */
.mobile-sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 12px 20px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  z-index: 900;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseCta {
  0% { box-shadow: 0 0 0 0 rgba(145, 195, 48, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(145, 195, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(145, 195, 48, 0); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-accent {
  animation: pulseCta 3.2s infinite;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .header-middle-inner {
    flex-direction: column;
    gap: 15px;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--theme-color3);
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-item.dropdown-open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background-color: #0c1833 !important;
    padding-left: 20px !important;
  }
  .nav-item.dropdown-open > .nav-link svg {
    transform: rotate(180deg);
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .section-two-col-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .coverage-spotlight-card {
    grid-template-columns: 1fr;
  }
  .spotlight-image-col {
    height: 250px;
  }
  .compliance-banner-visual {
    grid-template-columns: 1fr;
  }
  .compliance-image-col {
    height: 240px;
  }
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-layout-grid {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .mobile-sticky-call {
    display: block;
  }
  .project-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .project-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ==========================================================================
   Clean & Presentable Contact Form Component (Insolan Theme)
   ========================================================================== */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--theme-color2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  margin: 35px 0 30px 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.contact-form-card:hover {
  box-shadow: var(--shadow-lg);
}

.contact-form-header {
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(25, 117, 255, 0.08);
  color: var(--theme-color2);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--theme-color3);
  margin-bottom: 8px;
  line-height: 1.3;
}

.contact-form-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.contact-form-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
}

.contact-form-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--theme-color3);
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.contact-form-perk svg {
  color: var(--theme-color1);
  flex-shrink: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
}

.form-field-group.full-width {
  grid-column: 1 / -1;
}

.form-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--theme-color3);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-field-label .req {
  color: #e53e3e;
  font-weight: 700;
  margin-left: 3px;
}

.form-field-label .opt {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.form-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-field-icon {
  position: absolute;
  left: 15px;
  color: #9aa5b8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
  z-index: 1;
}

.form-control-custom {
  width: 100%;
  padding: 13px 16px 13px 44px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: #1e293b;
  background-color: #f8fafc;
  border: 1.5px solid #dde4ee;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.form-control-custom:hover {
  border-color: #cbd5e1;
  background-color: #ffffff;
}

.form-control-custom:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--theme-color2);
  box-shadow: 0 0 0 4px rgba(25, 117, 255, 0.12);
}

.form-field-wrap:focus-within .form-field-icon {
  color: var(--theme-color2);
}

.form-control-custom::placeholder {
  color: #9aa5b8;
  font-weight: 400;
}

.form-select-custom {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231975ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-textarea-custom {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  padding-top: 13px;
}

.contact-submit-btn-wrap {
  margin-top: 8px;
}

.contact-submit-action {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(25, 117, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--theme-color2) 0%, var(--theme-color4) 100%);
  color: #ffffff;
  border: none;
}

.contact-submit-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 117, 255, 0.38);
  background: linear-gradient(135deg, #1066e6 0%, #002c52 100%);
}

.contact-submit-action:active {
  transform: translateY(0);
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-size: 0.84rem;
  color: var(--text-muted);
}

.contact-form-footer-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.contact-form-footer-item svg {
  color: var(--theme-color1);
  flex-shrink: 0;
}

.contact-form-footer-item a {
  color: var(--theme-color2);
  font-weight: 700;
  text-decoration: none;
}

.contact-form-footer-item a:hover {
  text-decoration: underline;
}

@media (max-width: 680px) {
  .contact-form-card {
    padding: 26px 18px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
