/* ============================================
   Shop Concepts LLC - Main Stylesheet
   ============================================ */

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

:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --primary-dark: #0d1f3c;
  --secondary: #4a5568;
  --accent: #718096;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #059669;
  --error: #dc2626;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

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

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

.nav-list a {
  color: var(--gray-700);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

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

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--gray-200);
  }

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

  .nav-list a {
    display: block;
    padding: 15px 0;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 60px 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

@media (min-width: 768px) {
  .hero h1,
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1,
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 600px;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

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

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

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

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

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

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

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-title h1,
.section-title h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 0;
}

.section-title .lead {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.6;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--gray-600);
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }

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

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

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

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* Card Styles */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.card-text {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Service Features List */
.service-features {
  padding-left: 20px;
  margin-bottom: 0;
}

.service-features li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.service-features li:last-child {
  margin-bottom: 0;
}

/* Data Collection List */
.data-collection-list {
  margin-top: 20px;
}

.data-item {
  padding: 20px;
  background: var(--gray-50);
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
}

.data-item:last-child {
  margin-bottom: 0;
}

.data-item h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.data-item p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* ============================================
   Value Props / Why Choose Us
   ============================================ */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-props {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-prop {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-prop h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.value-prop p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 80px 0;
}

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

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-grid .about-content {
    text-align: left;
  }
}

/* ============================================
   Contact Form
   ============================================ */
.contact {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
}

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

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

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--primary);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 16px;
  margin-bottom: 0;
}

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.form-message.success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.form-message.error {
  background: rgba(220, 38, 38, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 6px;
  display: block;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 24px;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 0 30px;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-company h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.footer-company address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-company a {
  color: var(--gray-300);
}

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

.footer-nav h4,
.footer-legal h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-nav ul li,
.footer-legal ul li {
  margin-bottom: 10px;
}

.footer-nav ul a,
.footer-legal ul a {
  color: var(--gray-400);
}

.footer-nav ul a:hover,
.footer-legal ul a:hover {
  color: var(--white);
}

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

.footer-bottom .disclaimer {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

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

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-banner-text h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.cookie-banner-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

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

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .cookie-banner-text {
    flex: 1;
  }
}

/* ============================================
   Cookie Modal
   ============================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
  position: relative;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal-content h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.cookie-modal-content > p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.cookie-options {
  margin-bottom: 24px;
}

.cookie-option {
  padding: 16px;
  background: var(--gray-50);
  border-radius: 8px;
  margin-bottom: 12px;
}

.cookie-option:last-child {
  margin-bottom: 0;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-option-text {
  display: flex;
  flex-direction: column;
}

.cookie-option-text strong {
  font-size: 0.9375rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.cookie-option-text small {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

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

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

.cookie-btn-reject,
.cookie-btn-cancel {
  background: transparent;
  color: var(--gray-600);
  border-color: var(--gray-300);
}

.cookie-btn-reject:hover,
.cookie-btn-cancel:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

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

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

/* ============================================
   Page Hero (for internal pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 120px 0 60px;
  margin-top: 70px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--white);
}

.page-hero .lead {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

/* ============================================
   Content Pages (About, Services, etc.)
   ============================================ */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 1.75rem;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.content-section h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.content-section p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-section ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--gray-600);
}

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

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.content-image img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Page Content wrapper for legal pages */
.page-content {
  padding: 80px 0;
  min-height: calc(100vh - 70px - 200px);
}

/* ============================================
   About Page Values Grid
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p {
  margin-bottom: 0;
}

/* ============================================
   Services Page - Service Detail
   ============================================ */
.service-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

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

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

@media (min-width: 768px) {
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .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: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-detail-content h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.service-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 24px;
}

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

.contact-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-item-content p {
  color: var(--gray-800);
  margin-bottom: 0;
}

.contact-item-content a {
  color: var(--gray-800);
}

.contact-item-content a:hover {
  color: var(--primary);
}

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

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

@media (max-width: 768px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .contact-item-icon {
    margin: 0 auto;
  }
}

.map-container {
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* ============================================
   Legal Pages (Privacy, Terms, etc.)
   ============================================ */
.legal-page {
  padding: 80px 0;
}

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

.legal-content h1 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.legal-date {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.legal-section h3 {
  font-size: 1.125rem;
  color: var(--gray-800);
  margin-bottom: 12px;
  margin-top: 20px;
}

.legal-section p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-section ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--gray-600);
}

.legal-section a {
  color: var(--primary);
}

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

.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

/* ============================================
   Utilities
   ============================================ */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 48px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  .hero {
    margin-top: 0;
    min-height: auto;
    padding: 40px 0;
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    color: var(--gray-900);
  }

  .hero h1 {
    color: var(--gray-900);
  }
}
