/* Shop Equipment Service LLC - Modern Responsive Stylesheet */

/* ==================== CSS Variables ==================== */
:root {
  --color-primary: #1e3a5f;
  --color-primary-dark: #152a45;
  --color-primary-light: #2d5a8a;
  --color-accent: #3182ce;
  --color-accent-hover: #2b6cb0;
  --color-white: #ffffff;
  --color-gray-50: #f7fafc;
  --color-gray-100: #edf2f7;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e0;
  --color-gray-400: #a0aec0;
  --color-gray-500: #718096;
  --color-gray-600: #4a5568;
  --color-gray-700: #2d3748;
  --color-gray-800: #1a202c;
  --color-error: #e53e3e;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --transition: 0.25s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-gray-700);
  background: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--color-gray-800);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* ==================== Header ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-gray-700);
  padding: 0.5rem 0;
  position: relative;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gray-700);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 1.5rem;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links a {
    font-size: 1.25rem;
  }
}

/* ==================== Hero Section ==================== */
.hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
}

.hero > * {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.25rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  max-width: 450px;
}

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

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
  }
  
  .hero > * {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image {
    max-width: 280px;
    margin-top: 1.5rem;
  }
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

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

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

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

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

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

/* ==================== Sections ==================== */
section {
  padding: 4rem 0;
}

section > * {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  color: var(--color-gray-500);
  margin-bottom: 2rem;
}

/* ==================== Services Grid ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.service-card h3 {
  padding: 1rem 1.25rem 0.5rem;
  margin-bottom: 0;
}

.service-card p {
  padding: 0 1.25rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.service-card .learn-more {
  display: inline-block;
  padding: 0 1.25rem 1.25rem;
  font-weight: 500;
  color: var(--color-accent);
}

/* ==================== About Preview ==================== */
.about-preview {
  background: var(--color-gray-50);
}

.about-preview > * {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-image {
  flex: 1;
  max-width: 450px;
}

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

.about-content {
  flex: 1;
}

.about-features {
  margin: 1rem 0;
}

.about-features li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.about-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

@media (max-width: 768px) {
  .about-preview > * {
    flex-direction: column;
    text-align: center;
  }
  
  .about-image {
    max-width: 280px;
  }
}

/* ==================== Contact Form Section ==================== */
.contact-form-section {
  background: var(--color-gray-50);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

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

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

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  margin-bottom: 0;
}

.required {
  color: var(--color-error);
}

/* ==================== Page Header ==================== */
.page-header {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== Services Page ==================== */
.detailed-services {
  padding-top: 3rem;
}

.service-detail {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail:nth-child(even) {
  flex-direction: row-reverse;
}

.service-detail .service-image {
  flex: 1;
  max-width: 400px;
}

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

.service-detail .service-content {
  flex: 1;
}

.service-features {
  margin: 1rem 0;
}

.service-features li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

@media (max-width: 768px) {
  .service-detail,
  .service-detail:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  
  .service-detail .service-image {
    max-width: 280px;
  }
}

/* ==================== Why Choose Us ==================== */
.why-choose-us {
  background: var(--color-gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-accent);
}

.feature-item h3 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--color-gray-600);
  margin-bottom: 0;
}

/* ==================== CTA Section ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==================== Contact Page ==================== */
.contact-section {
  padding-top: 2rem;
}

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

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info h2 {
  text-align: left;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.info-block address {
  font-style: normal;
  line-height: 1.8;
}

.business-hours {
  margin-top: 1.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 500;
}

.hours-list .closed {
  color: var(--color-error);
}

.map-container {
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: var(--radius);
}

.contact-form-wrapper h2 {
  text-align: left;
}

.form-intro {
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
}

/* ==================== Content Pages ==================== */
.content-section {
  padding-top: 2rem;
}

.content-section article {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-section ul,
.content-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-section ul li,
.content-section ol li {
  margin-bottom: 0.5rem;
}

.content-section ul {
  list-style: disc;
}

.content-section ol {
  list-style: decimal;
}

.content-section address {
  font-style: normal;
  line-height: 1.8;
}

/* ==================== Footer ==================== */
footer {
  background: var(--color-gray-800);
  color: var(--color-gray-300);
  padding: 3rem 0 1.5rem;
}

footer > * {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-section address {
  font-style: normal;
  line-height: 1.7;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: var(--color-gray-400);
}

.footer-section a:hover {
  color: var(--color-white);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-700);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: 0;
}

/* ==================== Cookie Banner ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-gray-800);
  color: var(--color-white);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

/* ==================== Modal ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h2 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--color-gray-500);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--color-gray-100);
}

.modal-body {
  padding: 1.25rem;
}

.modal-body > p {
  margin-bottom: 1.25rem;
  color: var(--color-gray-600);
}

.modal-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Cookie Settings Groups */
.cookie-settings-group {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.cookie-settings-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cookie-settings-title {
  font-weight: 600;
  color: var(--color-gray-700);
}

.cookie-settings-desc {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

.toggle-switch input:checked + .toggle-slider {
  background: var(--color-accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  background: var(--color-gray-400);
  cursor: not-allowed;
}

/* ==================== Accessibility ==================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  z-index: 10001;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
  color: var(--color-white);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Contact Page Styles */
.contact-section {
  padding: 2rem 0;
}

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

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info h2 {
  text-align: left;
}

.contact-details {
  margin: 1.5rem 0;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-item address,
.contact-item p {
  margin-bottom: 0;
}

.business-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
}

.business-hours h3 {
  margin-bottom: 0.75rem;
}

.business-hours ul li {
  padding: 0.4rem 0;
}

.business-hours ul li span:first-child {
  font-weight: 500;
  display: inline-block;
  min-width: 140px;
}

.business-hours .note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.contact-form-wrapper h2 {
  text-align: left;
}

/* Map Section */
.map-section {
  padding: 2rem 0 3rem;
  background: var(--color-gray-50);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  display: block;
}

.map-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--color-gray-600);
}

/* Detailed Services Layout */
.services-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.service-block img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-block-content {
  flex: 1;
}

@media (max-width: 768px) {
  .service-block,
  .service-block:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  
  .service-block img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Revenue Models Grid */
.revenue-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.revenue-item {
  background: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.revenue-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.revenue-item p {
  color: var(--color-gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Data Collection List */
.data-collection-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.data-item {
  background: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.data-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.data-item p {
  color: var(--color-gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Third Party Grid */
.third-party-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.third-party-item {
  background: var(--color-gray-50);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.third-party-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.third-party-item p {
  color: var(--color-gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ==================== Additional Layout Classes ==================== */
.section-image-text {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.section-image-text.reverse {
  flex-direction: row-reverse;
}

.section-image {
  flex: 1;
  max-width: 400px;
}

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

.section-text {
  flex: 1;
}

@media (max-width: 768px) {
  .section-image-text,
  .section-image-text.reverse {
    flex-direction: column;
    text-align: center;
  }
  
  .section-image {
    max-width: 280px;
  }
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--color-gray-600);
  margin-bottom: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-item h3 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--color-gray-600);
  margin-bottom: 0;
}

/* Alt Background */
.alt-bg {
  background: var(--color-gray-50);
}

/* Service Detail Sections */
.service-detail {
  padding: 2rem 0;
}

.service-detail-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.service-detail-content.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 0 0 300px;
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-text {
  flex: 1;
}

.service-text h2 {
  margin-bottom: 1rem;
}

.service-text ul {
  margin-left: 1.25rem;
  margin-top: 0.75rem;
}

.service-text ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

@media (max-width: 768px) {
  .service-detail-content,
  .service-detail-content.reverse {
    flex-direction: column;
    text-align: center;
  }
  
  .service-image {
    flex: none;
    max-width: 280px;
  }
  
  .service-text ul {
    text-align: left;
  }
}

/* Content Section */
.content-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.content-section h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

/* Detailed Services Layout */
.services-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.service-block img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-block-content {
  flex: 1;
}

@media (max-width: 768px) {
  .service-block,
  .service-block:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  
  .service-block img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==================== Print ==================== */
@media print {
  header, footer, .cookie-banner, .modal-overlay {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}
