/* === RESETARE & VARIABILE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  box-shadow: 0 0 8px rgba(0, 102, 204, 0.5);
}

:root {
  --primary-color: #0066cc;
  --secondary-color: #004499;
  --text-dark: #222;
  --text-light: #666;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #ddd;
  --success-color: #28a745;
  --error-color: #dc3545;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(14px, 2vw, 18px);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  background-color: var(--bg-light);
}

.container {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 0.1875rem solid var(--primary-color);
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 -0.125rem 0.625rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 4vw, 1.875rem);
  max-width: 68.75rem;
  width: 100%;
  flex-wrap: wrap;
}

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

.cookie-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* === HEADER & NAVBAR === */
.header {
  background: var(--bg-white);
  box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  padding: clamp(0.25rem, 1vw, 0.5rem) 1;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.navbar-brand h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary-color);
  font-weight: 700;
}

.navbar-brand .subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: -0.3125rem;
}

.navbar-brand img {
  max-width: 70%;
  max-height: 50%;
  width: auto;
  height: auto;
  margin-top: 0.3rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 3vw, 1.875rem);
  flex-wrap: wrap;
  justify-content: center;
}

.nav-menu a {
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  min-height: 3rem;
  min-width: 3rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  transition: all 0.3s;
  border-radius: 0.3125rem;
  align-items: center;
  justify-content: center;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background-color: rgba(0, 102, 204, 0.1);
  color: var(--primary-color);
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: clamp(2rem, 8vw, 5rem) clamp(1rem, 5vw, 2rem);
  text-align: center;
}

.hero-content h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.hero-content .highlight {
  color: #ffeb3b;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: clamp(1rem, 3vw, 1.25rem);
  opacity: 0.95;
}

.hero-description {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 1.875rem);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  font-weight: 600;
}

/* === BUTTONS === */
.btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  border-radius: 0.5rem;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  position: relative;
}

.btn:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 102, 204, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

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

.btn-large {
  padding: clamp(1rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(1rem, 2vw, 1.25rem);
  min-height: 3.5rem;
}

/* === SERVICES SECTION === */
.services {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: white;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.125rem);
  color: var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(15rem, 90vw, 22rem), 1fr));
  gap: clamp(1.25rem, 3vw, 1.875rem);
  margin-top: clamp(2rem, 4vw, 3.125rem);
  margin-bottom: clamp(2rem, 4vw, 3.125rem);
}

.service-card {
  background: var(--bg-light);
  padding: clamp(1.5rem, 4vw, 1.875rem);
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: clamp(2.5rem, 6vw, 3rem);
  margin-bottom: clamp(0.75rem, 2vw, 0.9375rem);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: clamp(0.75rem, 2vw, 0.9375rem);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.service-card p {
  color: var(--text-light);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* === REVIEWS SECTION === */
.reviews {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--bg-light);
}

/* === CONTACT SECTION === */
.contact {
  padding: clamp(1rem, 5vw, 2rem) 0;
  background: var(--bg-light);
}

.section-subtitle {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  font-size: clamp(1.20rem, 2vw, 1.30rem);
}

.contact-form {
  max-width: 37.5rem;
  margin: 0 auto;
  background: white;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: clamp(1.25rem, 3vw, 1.5625rem);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.3125rem;
  font-family: inherit;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  min-height: 2.75rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0.3125rem rgba(0, 102, 204, 0.3);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.form-group.checkbox input {
  width: auto;
  margin-top: -0.625rem;
  cursor: pointer;
  transform: scale(1.5);
}

.form-group.checkbox label {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.5vw, 0.875rem);
}

.form-group.checkbox a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-group.checkbox a:hover {
  text-decoration: underline;
}

/* === CONTACT INFO & BUSINESS HOURS === */
.contact-info {
  max-width: 37.5rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem) auto;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 68, 153, 0.05) 100%);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 0.75rem;
  border: 2px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.5rem);
  align-items: center;
}

.business-hours {
  text-align: center;
  width: 100%;
}

.business-hours h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.business-hours p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-dark);
  font-weight: 500;
}

.business-hours strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.btn-call {
  width: 100%;
  max-width: 37.5rem;
  text-decoration: none;
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  border: 2px solid #1e7e34;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.1875rem);
}

.btn-call:hover {
  background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.4375rem 1.25rem rgba(40, 167, 69, 0.4);
}

.btn-call:active {
  transform: translateY(0.0625rem);
}

/* RESPONSIVE PENTRU CONTACT INFO */
@media (max-width: 30rem) {
  .contact-info {
    padding: 1.25rem 1rem;
    gap: 1.25rem;
  }
  
  .business-hours h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }
  
  .business-hours p {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  }
  
  .btn-call {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  }
}

/* === SERVICES HIGHLIGHT === */
.services-highlight {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 68, 153, 0.05) 100%);
  padding: clamp(0.875rem, 2vw, 1rem);
  border-radius: 0.5rem;
  border-inline-start: 0.25rem solid var(--primary-color);
}

.services-highlight p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-dark);
}

/* === FOOTER === */
.footer {
  background: var(--text-dark);
  color: white;
  padding: clamp(2rem, 4vw, 2.5rem) 0;
  text-align: center;
}

.footer p {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffeb3b;
  text-decoration: underline;
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-block-start: clamp(2rem, 5vw, 3.125rem);
}

.modal-content {
  background: white;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 0.5rem;
  max-width: 50rem;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  margin: clamp(1rem, 3vw, 2rem) auto;
}

.close {
  position: absolute;
  right: clamp(1rem, 3vw, 1.25rem);
  top: clamp(1rem, 3vw, 1.25rem);
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s;
  background: none;
  border: none;
  padding: 0.5rem;
  min-width: 3rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover,
.close:focus {
  color: var(--primary-color);
  transform: scale(1.2);
}

.modal-header {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: clamp(0.75rem, 2vw, 1rem);
}

.modal-header h2 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  color: var(--text-dark);
}

.modal-body {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  color: var(--text-dark);
}

.modal-body p {
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

/* === PRICING SECTION === */
.pricing {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: white;
}

.pricing-card {
  max-width: 43.75rem;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 68, 153, 0.02) 100%);
  border: 0.125rem solid var(--primary-color);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.3125rem 1.25rem rgba(0, 102, 204, 0.1);
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 0.625rem 2.1875rem rgba(0, 102, 204, 0.2);
  transform: translateY(-0.3125rem);
}

.pricing-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: clamp(1.875rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 1.875rem);
  text-align: center;
}

.pricing-header h3 {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.price .amount {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
}

.price .unit {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  opacity: 0.9;
}

.pricing-content {
  padding: clamp(1.875rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 1.875rem);
}

.pricing-content .intro {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-bottom: clamp(1.25rem, 2vw, 1.5625rem);
  color: var(--text-dark);
}

.pricing-details {
  margin-bottom: clamp(1.5rem, 3vw, 1.875rem);
}

.detail-item {
  display: flex;
  gap: clamp(0.75rem, 2vw, 0.9375rem);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  padding: clamp(0.75rem, 2vw, 0.9375rem);
  background: var(--bg-light);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.detail-item:hover {
  background: #f0f0f0;
  border-inline-start: 0.25rem solid var(--primary-color);
  padding-inline-start: clamp(1rem, 2vw, 1.25rem);
}

.detail-icon {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

.detail-text {
  flex: 1;
}

.detail-text strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.3125rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.detail-text p {
  color: var(--text-light);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}

.divider {
  border: none;
  border-top: 0.125rem solid var(--border-color);
  margin: clamp(1.5rem, 3vw, 1.875rem) 0;
}

.pricing-note {
  color: var(--primary-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.pricing-rules {
  list-style: none;
  margin-left: 0;
}

.pricing-rules li {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  padding-inline-start: clamp(1.5rem, 3vw, 1.875rem);
  position: relative;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.pricing-rules li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.pricing-rules strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* === RESPONSIVE PRICING === */
@media (max-width: 30rem) {
  .pricing {
    padding: clamp(2rem, 6vw, 3.75rem) 0;
  }

  .pricing-header {
    padding: 1.5rem 1rem;
  }

  .pricing-header h3 {
    font-size: clamp(1.25rem, 3vw, 1.50rem);
  }

  .price .amount {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .price .unit {
    font-size: 1.25rem;
  }

  .pricing-content {
    padding: 1.25rem 1rem;
  }

  .detail-item {
    gap: 0.625rem;
    padding: 0.75rem;
  }

  .pricing-note {
    font-size: clamp(1.10rem, 3vw, 1.25rem);
  }

  .pricing-rules li {
    padding-inline-start: 1.5rem;
    font-size: clamp(1.10rem, 3vw, 1.25rem);
  }
}

/* === ALERT MESSAGES === */
.alert {
  padding: clamp(0.75rem, 2vw, 1rem);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  border-radius: 0.5rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  border-inline-start: 0.25rem solid;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: #1e5631;
  border-color: var(--success-color);
}

.alert-error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #8b0000;
  border-color: var(--error-color);
}

.alert-info {
  background-color: rgba(0, 102, 204, 0.1);
  color: #003366;
  border-color: var(--primary-color);
}

/* === LOADING SPINNER === */
.spinner {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 0.25rem solid rgba(0, 102, 204, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* === ACCESSIBILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* === RESPONSIVE DESIGN - MOBILE FIRST === */

/* Mobile optimization (320px - 480px) */
@media (max-width: 30rem) {
  .navbar {
    padding: clamp(0.5rem, 1vw, 0.75rem) 0;
  }
  .navbar .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-menu {
  flex-direction: row;
  gap: clamp(0.25rem, 1vw, 0.50rem);
  flex-wrap: wrap;
  justify-content: center;
  }
  .nav-menu a {
  margin-top: -0.75rem;
  padding: clamp(0.25rem, 1.25vw, 0.5rem) clamp(1rem, 1.5vw, 1.25rem);
  font-size: clamp(1.30rem, 1.5vw, 1.40rem);
  min-height: 2.5rem;
  min-width: auto;
  justify-content: center;
  }

  .hero-content h2 {
    margin-top: -0.75rem;
    font-size: clamp(2.0rem, 5vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    margin-top: -0.75rem;
  }

  .hero-description {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  }

  .btn-large {
    font-size: clamp(1.5rem, 2vw, 2rem);
  }

  .services-highlight p {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
  }

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

  .service-card {
    padding: 1.25rem;
  }

  .service-card h3,
  .service-card p {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-buttons .btn {
    flex: 1;
    min-width: 6rem;
  }

  .modal-content {
    width: 95%;
  }

  .footer-links {
    gap: 0.5rem;
  }
}

/* Small devices (480px - 600px) */
@media (min-width: 30rem) and (max-width: 37.5rem) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .navbar .container {
    flex-direction: row;
    gap: 1rem;
  }

  .nav-menu {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

/* Tablets (600px - 768px) */
@media (min-width: 37.5rem) and (max-width: 48rem) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-menu {
    flex-direction: row;
    gap: 1.25rem;
  }
}

/* Large tablets and small desktops (768px - 1024px) */
@media (min-width: 48rem) {
  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-menu {
    flex-direction: row;
    gap: 1.875rem;
    flex-wrap: nowrap;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(clamp(18rem, 25vw, 22rem), 1fr));
    gap: 1.875rem;
  }

  .hero-content h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(1.75rem, 4vw, 2rem);
  }

  .hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  }

  .contact-form {
    max-width: 37.5rem;
    padding: 2.5rem;
  }

  .modal-content {
    width: 80%;
  }
}

/* Medium desktops (1024px - 1440px) */
@media (min-width: 64rem) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
  }

  .hero {
    padding: 5rem clamp(1rem, 5vw, 2rem);
  }

  .hero-content h2 {
    font-size: clamp(2.75rem, 5vw, 3.5rem);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }

  .nav-menu {
    gap: 2rem;
  }
}

/* Large desktops (1440px and above) */
@media (min-width: 90rem) {
  .container {
    padding: 0 clamp(2rem, 8vw, 3rem);
  }

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

  .hero {
    padding: 5rem clamp(2rem, 8vw, 3rem);
  }

  .section-title {
    font-size: 2.5rem;
  }

  .contact-form {
    max-width: 43.75rem;
    padding: 2.5rem 3rem;
  }
}

/* === PRINT STYLES === */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .container {
    max-width: 100%;
  }

  .modal {
    position: static;
    background: none;
  }

  .modal-content {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: more) {
  :root {
    --primary-color: #0033aa;
    --secondary-color: #001155;
    --text-dark: #000;
    --text-light: #333;
    --border-color: #666;
  }

  .btn {
    border: 2px solid currentColor;
  }
}

/* === DARK MODE === */
/* Looks awful, needs fixing
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-light: #1a1a1a;
    --bg-white: #2a2a2a;
    --border-color: #444;
  }

  body {
    background-color: var(--bg-light);
    color: var(--text-dark);
  }

  .header {
    background: var(--bg-white);
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.3);
  }

  .hero {
    background: linear-gradient(135deg, #003d99 0%, #001a4d 100%);
  }

  .service-card {
    background: var(--bg-white);
  }

  .service-card:hover {
    background: #3a3a3a;
  }

  .contact-form {
    background: var(--bg-white);
  }

  .form-group input,
  .form-group textarea {
    background: #1a1a1a;
    color: var(--text-dark);
    border-color: var(--border-color);
  }

  .modal-content {
    background: var(--bg-white);
  }

  .footer {
    background: #0a0a0a;
  }

  .cookie-banner {
    background: var(--bg-white);
    border-top-color: var(--primary-color);
  }

  .services-highlight {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 68, 153, 0.15) 100%);
  }
}
*/

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}