/* YAS PROFESSIONALS - MOBILE-FIRST PERFECT DESIGN SYSTEM */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #090d16;
  --bg-surface: #0f1626;
  --bg-card: #141e33;
  --bg-card-hover: #1c2b48;
  --bg-glass: rgba(9, 13, 22, 0.94);
  
  --accent-amber: #f59e0b;
  --accent-amber-hover: #d97706;
  --accent-amber-glow: rgba(245, 158, 11, 0.28);
  
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(245, 158, 11, 0.35);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

ul {
  list-style: none;
}

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

/* Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--accent-amber-glow);
  color: var(--accent-amber);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: #fff;
}

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

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
}

/* Top Utility Bar (Desktop Only) */
.top-bar {
  background: #050811;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item i {
  color: var(--accent-amber);
}

.top-bar-promo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.badge-promo {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #000;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Navigation Header */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
  z-index: 1001;
}

.brand-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-amber), #b45309);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: var(--shadow-glow);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-amber);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-amber);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Toggle Hamburger Button */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-amber);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-hover));
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #fbbf24, var(--accent-amber));
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 3.5rem 0;
  background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              var(--bg-dark);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  color: var(--accent-amber);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

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

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Hero Media Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-card-body {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, #0d1424 100%);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-card-title .status-pill {
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.floating-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.floating-badge .badge-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-amber-glow);
  color: var(--accent-amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-badge .badge-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-amber);
}

.floating-badge .badge-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Stats Counter Bar */
.stats-bar {
  background: var(--bg-surface);
  border-y: 1px solid var(--border-subtle);
  padding: 2.25rem 0;
}

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

.stat-item {
  padding: 0.75rem;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--accent-amber);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: var(--text-secondary);
  font-weight: 500;
}

/* THE 3 CORE SERVICES SECTION */
.services-section {
  background: var(--bg-dark);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-blue));
  opacity: 0;
  transition: var(--transition-fast);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-glow);
  color: var(--accent-amber);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #fff;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.service-features {
  margin-bottom: 1.75rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.service-features li i {
  color: var(--accent-amber);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.service-card .btn {
  width: 100%;
}

/* INTERACTIVE QUOTE & BLUEPRINT ESTIMATOR WIDGET */
.estimator-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
  border-y: 1px solid var(--border-subtle);
}

.estimator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}

.estimator-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 0.4rem auto;
  transition: var(--transition-fast);
}

.step-item.active .step-number {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  color: #000;
  box-shadow: 0 0 15px var(--accent-amber-glow);
}

.step-item.completed .step-number {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #fff;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.step-item.active .step-label {
  color: var(--accent-amber);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

/* Form Controls */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  transition: var(--transition-fast);
  font-size: 1rem; /* Prevent iOS zoom */
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-amber);
  box-shadow: 0 0 10px var(--accent-amber-glow);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.option-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
  touch-action: manipulation;
}

.option-card i {
  font-size: 1.4rem;
  color: var(--accent-amber);
  margin-bottom: 0.4rem;
  display: block;
}

.option-card.selected {
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

/* Dropzone */
.dropzone {
  border: 2px dashed var(--border-glow);
  background: rgba(245, 158, 11, 0.03);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropzone:hover, .dropzone.dragover {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--accent-amber);
}

.dropzone-icon {
  font-size: 2.2rem;
  color: var(--accent-amber);
  margin-bottom: 0.5rem;
}

.uploaded-files {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* SAMPLE TAKEOFF & CAD GALLERY */
.gallery-section {
  background: var(--bg-dark);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  min-height: 44px;
}

.tab-btn.active {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.gallery-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.sample-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-amber);
  box-shadow: var(--shadow-lg);
}

.sample-preview {
  height: 200px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

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

.sample-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 22, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.sample-card:hover .sample-overlay {
  opacity: 1;
}

.sample-body {
  padding: 1.25rem;
}

.sample-tag {
  font-size: 0.75rem;
  color: var(--accent-amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.sample-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

/* TRADES COVERED GRID */
.trades-section {
  background: var(--bg-surface);
}

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

.trade-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.trade-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.trade-icon {
  width: 46px;
  height: 46px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trade-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trade-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* WHY CHOOSE YAS PROFESSIONALS */
.features-section {
  background: var(--bg-dark);
}

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

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
}

.feature-box:hover {
  border-color: var(--accent-amber);
  box-shadow: var(--shadow-lg);
}

.feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(59, 130, 246, 0.1));
  border: 1px solid var(--border-glow);
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem auto;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #fbbf24;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

.quote-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-amber);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.client-details h5 {
  font-size: 0.92rem;
  font-weight: 700;
}

.client-details p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* CONTACT & FOOTER */
.contact-section {
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer {
  background: #04070f;
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.1rem;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* MODAL DIALOG */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed;
  bottom: 4.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  z-index: 3000;
  background: var(--bg-card);
  border: 1px solid var(--accent-amber);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* STICKY MOBILE BOTTOM BAR (Clean Mobile Phone Action Bar) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 13, 22, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-glow);
  padding: 0.65rem 1rem;
  z-index: 999;
  gap: 0.75rem;
  box-sizing: border-box;
}

.mobile-bottom-bar .btn {
  flex: 1;
  font-size: 0.88rem;
  padding: 0.6rem 0.5rem;
  min-height: 42px;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .services-grid, .gallery-content, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trades-grid, .features-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .estimator-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  /* 1. HIDE TOP UTILITY BAR ON MOBILE PHONES TO FREE UP SCREEN SPACE */
  .top-bar {
    display: none !important;
  }

  /* 2. CLEAN & COMPACT MOBILE NAVIGATION HEADER */
  .navbar {
    height: 64px;
  }

  .navbar .container {
    height: 64px;
    padding: 0 1rem;
  }

  .brand-logo {
    font-size: 1.25rem;
    gap: 0.5rem;
  }

  .brand-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  /* Hide header CTA buttons on mobile screen since bottom bar handles CTAs */
  .nav-actions .btn {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  /* Mobile Slide-out Menu Drawer */
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(9, 13, 22, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-top: 1px solid var(--border-subtle);
    overflow-y: auto;
  }

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

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  /* 3. HERO & SECTION PADDING ON MOBILE PHONES */
  .hero {
    padding: 2.25rem 0 2rem 0;
  }

  .hero-badge {
    font-size: 0.76rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-guarantee {
    gap: 0.75rem;
    font-size: 0.8rem;
    padding-top: 1rem;
  }

  .hero-card-img {
    height: 220px;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  /* 4. GRID STACKING ON MOBILE PHONES */
  .services-grid, .gallery-content, .testimonials-grid, .trades-grid, .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 0;
  }

  .stat-item:nth-child(2n) {
    border-bottom: 1px solid var(--border-subtle);
  }

  .stat-item:last-child, .stat-item:nth-last-child(2) {
    border-bottom: none;
  }

  .estimator-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  /* Footer Layout for Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* SHOW STICKY MOBILE BOTTOM BAR ON PHONES */
  .mobile-bottom-bar {
    display: flex !important;
  }

  body {
    padding-bottom: 60px; /* Space for sticky bottom bar */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .estimator-steps {
    grid-template-columns: 1fr;
  }

  .dropzone {
    padding: 1.25rem 0.85rem;
  }
}
