/* ABC Pediatric Rehab - Main Stylesheet */
/* Modern, Professional Healthcare Design */

:root {
  --primary-color: #4A90A4;
  --primary-dark: #357A8C;
  --primary-light: #6BB3C9;
  --secondary-color: #7BC5A0;
  --secondary-dark: #5CA882;
  --accent-color: #F4A261;
  --accent-light: #F9C784;
  --text-dark: #2C3E50;
  --text-medium: #5D6D7E;
  --text-light: #8395A7;
  --bg-light: #F8FAFB;
  --bg-white: #FFFFFF;
  --bg-soft: #EEF4F7;
  --border-color: #DDE4E8;
  --error-color: #E74C3C;
  --success-color: #27AE60;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 0;
  position: relative;
}

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

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

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

.header-cta {
  margin-left: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: #E6934D;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74,144,164,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-title span {
  color: var(--primary-color);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: -30px;
  background-color: white;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-image-badge-text {
  font-weight: 600;
  color: var(--text-dark);
}

.hero-image-badge-sub {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 20px;
}

.section-description {
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.service-card .btn {
  margin-top: 20px;
}

/* Why Choose Us */
.why-us {
  padding: 100px 0;
  background-color: var(--bg-soft);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-us-content h2 {
  margin-bottom: 30px;
}

.why-us-list {
  margin-bottom: 30px;
}

.why-us-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.why-us-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.why-us-text h4 {
  margin-bottom: 5px;
}

.why-us-text p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

/* Lead Form Section */
.lead-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.lead-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lead-form-content {
  color: white;
}

.lead-form-content h2 {
  color: white;
  margin-bottom: 20px;
}

.lead-form-content p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.lead-form-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lead-form-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lead-form-feature svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-color);
}

.lead-form {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.consent-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.consent-group label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-medium);
  line-height: 1.5;
}

.consent-group label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 60px;
  height: 60px;
  fill: var(--success-color);
  margin-bottom: 20px;
}

/* About Page */
.about-hero {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

.about-content {
  padding: 80px 0;
}

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

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse > * {
  direction: ltr;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-medium);
}

.values-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.value-card:hover {
  border-color: var(--primary-color);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* Services Page */
.services-hero {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

.service-detail {
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-detail-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-detail-content h2 {
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--text-medium);
}

.service-features {
  margin-top: 25px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-medium);
}

.service-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--success-color);
  flex-shrink: 0;
}

.example-cases {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.case-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-content {
  padding: 25px;
}

.case-content h4 {
  margin-bottom: 10px;
}

.case-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

/* Contact Page */
.contact-hero {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-text h4 {
  margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
  color: var(--text-medium);
  margin: 0;
}

.contact-hours h3 {
  margin-bottom: 15px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-item span:first-child {
  font-weight: 600;
}

.map-container {
  margin-top: 40px;
}

.map-container h3 {
  margin-bottom: 15px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: var(--radius-lg);
}

.contact-form-wrapper {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  margin-bottom: 30px;
}

/* Business Model Page */
.business-model-hero {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

.business-model-content {
  padding: 80px 0;
}

.model-section {
  margin-bottom: 60px;
}

.model-section h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
}

.model-section p {
  color: var(--text-medium);
}

.model-section ul {
  margin-top: 15px;
  padding-left: 20px;
}

.model-section ul li {
  color: var(--text-medium);
  margin-bottom: 10px;
  list-style: disc;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.data-table th {
  background-color: var(--bg-soft);
  font-weight: 600;
}

.data-table tr:hover {
  background-color: var(--bg-light);
}

/* Policy Pages */
.policy-hero {
  padding: 60px 0;
  background-color: var(--bg-soft);
}

.policy-content {
  padding: 60px 0;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.policy-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.policy-content p {
  color: var(--text-medium);
}

.policy-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-content ul li {
  color: var(--text-medium);
  margin-bottom: 10px;
  list-style: disc;
}

.last-updated {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
}

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

.footer-contact-item {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-copyright {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-disclaimer {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-style: italic;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-legal-links a:hover {
  color: white;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: white;
}

.cookie-btn-accept:hover {
  background-color: var(--primary-dark);
}

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
  background-color: rgba(255,255,255,0.1);
}

.cookie-btn-customize {
  background-color: transparent;
  color: var(--primary-light);
  text-decoration: underline;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
}

.cookie-modal-header {
  margin-bottom: 25px;
}

.cookie-modal-header h3 {
  margin-bottom: 10px;
}

.cookie-modal-header p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category-header h4 {
  margin: 0;
  font-size: 1rem;
}

.cookie-category-header label {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-category-header input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: var(--transition);
  border-radius: 26px;
}

.cookie-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

.cookie-category-header input:checked + .cookie-slider {
  background-color: var(--primary-color);
}

.cookie-category-header input:checked + .cookie-slider::before {
  transform: translateX(24px);
}

.cookie-category-header input:disabled + .cookie-slider {
  background-color: var(--primary-light);
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-category p {
  color: var(--text-medium);
  font-size: 0.875rem;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 2;
  }
  
  .hero-description {
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .lead-form-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .header-cta {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  
  .header-cta .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid,
  .about-grid.reverse,
  .service-detail-grid,
  .service-detail:nth-child(even) .service-detail-grid,
  .contact-grid,
  .lead-form-container {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .header-container {
    padding: 10px 15px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .lead-form {
    padding: 25px;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .cookie-modal-content {
    padding: 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
