/* 
  Tidewater Renovations Shared Stylesheet
  Visual Theme: Premium Dark Slate & Copper Flame Orange Accents
  Typography: Outfit (Headings) & Inter (Body)
*/

@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 Palettes */
  --bg-deep: hsl(218, 40%, 8%);
  --bg-surface: hsl(218, 30%, 13%);
  --bg-surface-elevated: hsl(218, 25%, 18%);
  --bg-surface-glow: rgba(255, 111, 60, 0.05);
  
  --primary: hsl(22, 90%, 55%);
  --primary-hover: hsl(22, 95%, 62%);
  --primary-glow: rgba(255, 111, 60, 0.35);
  
  --secondary: hsl(190, 70%, 42%);
  --secondary-glow: rgba(0, 180, 216, 0.25);
  
  --text-main: hsl(210, 20%, 98%);
  --text-muted: hsl(215, 16%, 70%);
  --text-dark: hsl(218, 40%, 11%);
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 111, 60, 0.25);
  --border-active: hsl(22, 90%, 55%);
  
  --success: hsl(145, 65%, 45%);
  --error: hsl(355, 75%, 50%);

  /* Spacing & Layout */
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(20, 32, 50, 0.7);
  --glass-blur: blur(12px);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-surface);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-elevated);
  border-radius: 4px;
  border: 1px solid var(--border-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utility Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

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

.text-gradient-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(11, 19, 31, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 70px;
  background: rgba(11, 19, 31, 0.95);
  box-shadow: var(--shadow-premium);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--text-main);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

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

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px var(--primary-glow);
}

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

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-main);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 60, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-light);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

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

.btn-accent:hover {
  background: var(--primary);
  color: var(--text-main);
  box-shadow: 0 4px 14px var(--primary-glow);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(255, 111, 60, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 70%, var(--bg-deep) 100%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

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

.hero-graphics {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: var(--shadow-premium);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-smooth);
}

.hero-glow-card:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px -15px rgba(255, 111, 60, 0.15);
}

/* Trust Bar */
.trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}

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

.trust-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo-item {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.trust-logo-item:hover {
  opacity: 1;
  color: var(--text-main);
}

/* Cards & Grid Lists */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(255, 111, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
}

.card-link:hover {
  gap: 12px;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 31px;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--bg-surface-elevated) 100%);
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.process-body {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  flex: 1;
  transition: var(--transition-smooth);
}

.process-step:hover .process-body {
  border-color: var(--border-hover);
}

.process-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step-desc {
  color: var(--text-muted);
  font-size: 15px;
}

/* Call to Action Sections */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-premium);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 111, 60, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Intake & Contact Forms Layout */
.form-page-container {
  padding-top: 140px;
  padding-bottom: 100px;
}

.form-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.form-page-title {
  font-size: 42px;
  margin-bottom: 16px;
}

.form-page-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

.form-pro-tip {
  display: inline-block;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: hsl(190, 80%, 75%);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

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

.form-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.form-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-main);
  font-size: 15px;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 111, 60, 0.15);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6f3c'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  padding-right: 40px;
}

/* Checkboxes & Multi-select */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.checkbox-label:hover {
  color: var(--text-main);
}

.checkbox-custom {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  background: var(--bg-surface-elevated);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.checkbox-input {
  display: none;
}

.checkbox-input:checked + .checkbox-custom {
  border-color: var(--primary);
  background: var(--primary);
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--text-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* File Upload Drop Zone */
.file-drop-zone {
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.file-drop-zone.dragover {
  border-color: var(--primary);
  background: rgba(255, 111, 60, 0.05);
}

.file-drop-zone svg {
  width: 44px;
  height: 44px;
  fill: var(--text-muted);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.file-drop-zone:hover svg {
  fill: var(--primary);
  transform: translateY(-2px);
}

.file-drop-text {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.file-drop-subtext {
  font-size: 12px;
  color: var(--text-muted);
}

.file-list-preview {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.file-preview-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.file-preview-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
  color: var(--text-main);
}

.file-preview-remove {
  color: var(--error);
  cursor: pointer;
  font-weight: 600;
}

/* Universal Consent Section */
.universal-consent {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.universal-consent .checkbox-label {
  font-size: 14px;
}

/* Contact Info Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 48px;
}

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

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 111, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.contact-info-title {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

/* Map Mock */
.map-container {
  height: 300px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-surface-elevated);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.map-glow-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.map-glow-pin svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Success Modal Overlays */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 31, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 111, 60, 0.1);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(145, 65, 45, 0.15);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(255, 111, 60, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 111, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 111, 60, 0); }
}

.modal-success-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
}

.modal-title {
  font-size: 26px;
  margin-bottom: 16px;
}

.modal-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

/* Footer Section */
.footer {
  background: hsl(218, 40%, 6%);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
}

.footer-nav-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-nav-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-copyright {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-glow-card {
    transform: none;
    max-width: 480px;
    margin: 0 auto;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 40px;
  }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-surface);
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-light);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-toggle {
    display: block;
  }
  .nav-actions {
    display: none;
  }
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
