/* ==========================================================================
   Schultz Surface Solutions - Simple Spec Site Stylesheet
   Dark Theme, Professional, High-Contrast Surface Restoration Design
   ========================================================================== */

:root {
  /* Dark Theme Color Palette */
  --bg-main: #0c1017;
  --bg-surface: #131922;
  --bg-card: #16202c;
  --bg-card-hover: #1c2938;
  --bg-input: #0f151e;
  
  --border-subtle: #223042;
  --border-focus: #00d4ff;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Brand Accents */
  --cyan-primary: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.2);
  --blue-accent: #0284c7;
  --amber-accent: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.2);
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 24px rgba(0, 212, 255, 0.25);
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max: 1180px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(2, 132, 199, 0.05), transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 16, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.875rem 0;
}

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

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

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan-primary);
  box-shadow: 0 0 14px var(--cyan-glow);
}

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

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--cyan-primary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.phone-link:hover {
  color: var(--cyan-primary);
}

.icon-phone {
  width: 18px;
  height: 18px;
  color: var(--cyan-primary);
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-primary), var(--blue-accent));
  color: #031320;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.45);
}

.btn-call {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.4);
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn-call:hover {
  background: linear-gradient(135deg, var(--cyan-primary), #0284c7);
  color: #031320;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-icon {
  width: 19px;
  height: 19px;
}

.btn-outline {
  background: rgba(22, 32, 44, 0.8);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn-outline:hover {
  border-color: var(--cyan-primary);
  color: var(--cyan-primary);
  background: rgba(22, 32, 44, 1);
  transform: translateY(-2px);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-full);
  color: var(--cyan-primary);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--cyan-primary);
  box-shadow: 0 0 8px var(--cyan-primary);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Section 1: Business Introduction / Hero
   ========================================================================== */

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

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

.intro-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.intro-lead {
  font-size: 1.15rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-lead strong {
  color: #ffffff;
}

.intro-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan-primary);
}

.feature-icon-wrap svg {
  width: 17px;
  height: 17px;
}

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

.feature-text strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.feature-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Visual Card on Right */
.intro-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan-primary), var(--amber-accent));
}

.badge-display {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero-badge-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  border: 3px solid var(--cyan-primary);
}

.visual-info {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.65rem;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  color: var(--text-muted);
  font-weight: 500;
}

.info-val {
  color: #ffffff;
  font-weight: 600;
}

.info-link {
  color: var(--cyan-primary);
  font-weight: 600;
}

.info-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Section 2: List of Services
   ========================================================================== */

.services-section {
  padding: 5rem 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  margin-bottom: 1.35rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.service-points {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-points li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-points li::before {
  content: '✓';
  color: var(--cyan-primary);
  font-weight: bold;
}

/* ==========================================================================
   Section 3: Contact Form & Info
   ========================================================================== */

.contact-section {
  padding: 5.5rem 0;
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

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

.contact-detail-card:not(.static):hover {
  border-color: var(--cyan-primary);
  background: var(--bg-card);
  transform: translateX(4px);
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  flex-shrink: 0;
}

.detail-icon svg {
  width: 22px;
  height: 22px;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.detail-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Contact Form Container */
.form-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.925rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
}

.req {
  color: var(--cyan-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-group select option {
  background-color: var(--bg-card);
  color: #ffffff;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.35rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.925rem;
  color: #cbd5e1;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--cyan-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--cyan-primary), var(--blue-accent));
  color: #031320;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.form-alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  margin-top: 0.75rem;
}

.form-alert.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #080c11;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0;
  color: var(--text-muted);
}

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

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

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cyan-primary);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
}

.footer-sub {
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--cyan-primary);
}

.sep {
  color: var(--border-subtle);
}

.footer-copy {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .intro-visual {
    order: -1;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 0;
  }
  
  .phone-link .phone-number {
    display: none;
  }
  
  .intro-title {
    font-size: 2.15rem;
  }
  
  .intro-actions {
    flex-direction: column;
  }
  
  .intro-actions .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}
