/* Style variables and layout reset */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0b1329;       /* Deep Navy */
  --primary-light: #1c2541; /* Dark Slate Blue */
  --accent: #d97706;        /* Premium Gold/Amber */
  --accent-hover: #b45309;  /* Darker Gold */
  --accent-light: #fef3c7;  /* Light Amber Tint */
  --bg-main: #f8fafc;       /* Light Slate Gray */
  --bg-card: #ffffff;
  --text-dark: #0f172a;     /* Dark Slate Text */
  --text-muted: #64748b;    /* Slate Gray Text */
  --text-light: #f1f5f9;
  --success: #10b981;
  --border: #e2e8f0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
}

body {
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Common Components & Typography */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

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

.section {
  padding: 96px 0;
}

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

.section-header .tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Azerbaijan E-Visa Offer Section */
.az-offer-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 88px 0;
  overflow: hidden;
}

.az-offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.az-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.az-offer-badge i {
  width: 16px;
  height: 16px;
}

.az-offer-content h2 {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.az-offer-content h2 span {
  color: var(--accent);
  background: linear-gradient(135deg, #fbbf24, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.az-offer-tagline {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.az-offer-tagline strong {
  color: var(--accent);
}

.az-offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.az-offer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.95rem;
}

.az-offer-feature i {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.az-offer-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.az-offer-btns .btn-whatsapp {
  width: auto;
  margin-top: 0;
}

.btn-secondary-light {
  background-color: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.btn-secondary-light:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.az-offer-visual {
  position: relative;
}

.az-offer-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.az-offer-price-tag {
  position: absolute;
  top: -16px;
  left: -16px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.az-offer-price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-light);
  font-weight: 600;
}

.az-offer-price-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
}

.az-offer-timer-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
}

.az-offer-timer-tag i {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.az-offer-timer-tag div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.az-offer-timer-tag strong {
  color: var(--primary);
  font-size: 1rem;
}

.az-offer-timer-tag span {
  color: #64748b;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .az-offer-grid {
    grid-template-columns: 1fr;
  }

  .az-offer-content h2 {
    font-size: 1.9rem;
  }

  .az-offer-features {
    grid-template-columns: 1fr;
  }

  .az-offer-visual {
    margin-top: 20px;
  }

  .az-offer-price-tag,
  .az-offer-timer-tag {
    padding: 10px 14px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  width: 100%;
  margin-top: 12px;
}

.btn-whatsapp:hover {
  background-color: #1ebe5a;
  transform: translateY(-2px);
}

.whatsapp-icon {
  background-color: rgba(37, 211, 102, 0.12) !important;
  color: #25D366 !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #1ebe5a;
}

.whatsapp-float i {
  width: 28px;
  height: 28px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

.btn-white {
  background-color: #fff;
  color: var(--primary);
  border-color: var(--border);
}

.btn-white:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Glassmorphism Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 19, 41, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

header.scrolled {
  padding: 8px 0;
  background-color: rgba(11, 19, 41, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

header.scrolled .nav-wrapper {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}

.logo span {
  color: var(--accent);
}

.logo-icon {
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

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

.nav-links a {
  color: var(--text-light);
  opacity: 0.85;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.125rem;
  color: #94a3b8;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.05);
}

.hero-badge {
  position: absolute;
  background-color: rgba(11, 19, 41, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.hero-badge-1 {
  top: 10%;
  left: -5%;
}

.hero-badge-2 {
  bottom: 15%;
  right: -5%;
}

.hero-badge-icon {
  background-color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-badge-text h4 {
  font-size: 0.9rem;
  color: #fff;
}

.hero-badge-text p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0;
}

/* Stats Section */
.stats {
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-item h3 span {
  color: #fff;
}

.stat-item p {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Service Directory Section */
.services-section {
  background-color: #f1f5f9;
}

.search-filter-container {
  max-width: 900px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.search-box {
  width: 100%;
  position: relative;
  max-width: 600px;
}

.search-box input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-size: 1rem;
  font-family: var(--font-body);
  border-radius: 30px;
  border: 1px solid var(--border);
  background-color: #fff;
  box-shadow: var(--shadow);
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.25rem;
}

.category-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  background-color: #fff;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.tab-btn.active {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

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

.service-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.2);
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--accent);
  color: #fff;
  transform: rotate(6deg);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 24px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  background-color: var(--accent-light);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.service-action-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-action-btn:hover {
  color: var(--accent);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  display: none;
}

.no-results i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Dynamic Quote Estimator Section */
.estimator-section {
  background-color: #fff;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  background-color: var(--bg-main);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.estimator-checklist h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.estimator-checklist p.sub {
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.checklist-categories {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.checklist-cat h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}

.checkbox-label:hover {
  border-color: var(--accent);
  background-color: rgba(217, 119, 6, 0.02);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-label.selected {
  border-color: var(--accent);
  background-color: var(--accent-light);
  color: var(--accent-hover);
}

.estimator-summary {
  background-color: var(--primary);
  border-radius: 16px;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: max-content;
  position: sticky;
  top: 100px;
}

.estimator-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-row span.label {
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.95rem;
}

.summary-row span.val {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.summary-row span.val.badge {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

.selected-services-preview {
  margin-top: 16px;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 8px;
}

.selected-services-preview::-webkit-scrollbar {
  width: 4px;
}

.selected-services-preview::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.preview-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.preview-chip span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.preview-chip button {
  background: none;
  border: none;
  color: #f87171;
  cursor: pointer;
  font-size: 0.95rem;
}

.preview-chip button:hover {
  color: #ef4444;
}

.empty-preview-msg {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: italic;
}

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

.estimator-summary input,
.estimator-summary textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.estimator-summary input::placeholder,
.estimator-summary textarea::placeholder {
  color: #64748b;
}

.estimator-summary input:focus,
.estimator-summary textarea:focus {
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.08);
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--bg-main);
}

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

.why-us-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 1.5rem;
}

.why-us-card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-us-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

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

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

.faq-item:hover {
  border-color: var(--accent);
}

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

.faq-question span {
  padding-right: 16px;
}

.faq-question i {
  color: var(--accent);
  transition: var(--transition);
  font-size: 1.25rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--bg-main);
}

.faq-answer-inner {
  padding: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact Us Section */
.contact-section {
  background-color: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  background-color: var(--accent-light);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-text p, .info-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.info-text a:hover {
  color: var(--accent);
}

.contact-map {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrapper {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: var(--bg-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.form-group-full button {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* Success Popup & Feedback */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 19, 41, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.popup-content {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: scale(0.9);
  transition: var(--transition);
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-icon {
  width: 72px;
  height: 72px;
  background-color: #d1fae5;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 24px auto;
}

.popup-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.popup-content p {
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* Footer Section */
footer {
  background-color: var(--primary);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #94a3b8;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.hour-row span.day {
  color: #fff;
  font-weight: 500;
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  margin-bottom: 12px;
  font-size: 0.9rem;
  outline: none;
}

.footer-newsletter input:focus {
  border-color: var(--accent);
}

.footer-newsletter button {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #64748b;
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  .estimator-grid {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .estimator-summary {
    position: static;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-btns {
    justify-content: center;
    width: 100%;
  }
  .hero-badge {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .section {
    padding: 64px 0;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
