/* Variables */
:root {
  --primary: hsl(207, 90%, 54%);
  --primary-dark: hsl(207, 90%, 45%);
  --secondary: hsl(220, 14%, 96%);
  --accent: hsl(45, 93%, 47%);
  --neutral-light: hsl(220, 14%, 98%);
  --neutral-dark: hsl(220, 26%, 20%);
  --success: hsl(142, 76%, 36%);
  --info: hsl(217, 91%, 60%);
  --white: hsl(0, 0%, 100%);
  --gray-100: hsl(220, 14%, 96%);
  --gray-200: hsl(220, 13%, 91%);
  --gray-300: hsl(220, 9%, 84%);
  --gray-400: hsl(220, 9%, 66%);
  --gray-500: hsl(220, 9%, 46%);
  --gray-600: hsl(220, 13%, 36%);
  --gray-700: hsl(220, 14%, 29%);
  --gray-800: hsl(220, 16%, 23%);
  --gray-900: hsl(220, 26%, 14%);
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-light);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

.header.sticky {
  position: sticky;
  top: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 0.125rem;
}

.logo-text p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

.nav-link {
  color: var(--neutral-dark);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-icon {
  color: var(--neutral-dark);
  font-size: 1rem;
  transition: color 0.2s ease;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--neutral-dark);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.mobile-menu-content {
  background: var(--white);
  padding: 2rem;
  margin-top: 5rem;
  border-radius: var(--radius);
  margin-left: 1rem;
  margin-right: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  color: var(--neutral-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s ease;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--neutral-dark);
  color: var(--white);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text p {
  font-size: 0.875rem;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

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

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

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

.btn-secondary {
  background: var(--gray-500);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--gray-600);
}

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

.btn-accent:hover {
  background: hsl(45, 93%, 40%);
}

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

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

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

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

.full-width {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(207, 90%, 45%) 100%);
  color: var(--white);
  padding: 5rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

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

.hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Statistics Section */
.stats {
  padding: 4rem 0;
  background: var(--white);
}

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

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

.stat-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.stat-icon.primary {
  background: hsl(207, 90%, 54%, 0.1);
  color: var(--primary);
}

.stat-icon.accent {
  background: hsl(45, 93%, 47%, 0.1);
  color: var(--accent);
}

.stat-icon.success {
  background: hsl(142, 76%, 36%, 0.1);
  color: var(--success);
}

.stat-icon.info {
  background: hsl(217, 91%, 60%, 0.1);
  color: var(--info);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--gray-500);
}

/* Products Section */
.products {
  padding: 4rem 0;
  background: var(--neutral-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 48rem;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.product-card-content {
  padding: 1.5rem;
}

.product-card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

.product-card-content p {
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.product-features {
  margin-bottom: 1.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-dark);
}

.product-features i {
  color: var(--primary);
  font-size: 0.75rem;
}

.product-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.product-link:hover {
  color: var(--primary-dark);
}

/* Why Choose Section */
.why-choose {
  padding: 4rem 0;
  background: var(--white);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-choose-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.feature-icon.primary {
  background: hsl(207, 90%, 54%, 0.1);
  color: var(--primary);
}

.feature-icon.accent {
  background: hsl(45, 93%, 47%, 0.1);
  color: var(--accent);
}

.feature-icon.success {
  background: hsl(142, 76%, 36%, 0.1);
  color: var(--success);
}

.feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--gray-500);
}

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

/* Contact Form Section */
.contact-form {
  padding: 4rem 0;
  background: var(--neutral-light);
}

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

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item i {
  color: var(--primary);
  width: 1.25rem;
}

.contact-item a {
  color: var(--neutral-dark);
  transition: color 0.2s ease;
}

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

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.875rem;
  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 hsl(207, 90%, 54%, 0.1);
}

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

.form-group.checkbox input {
  width: auto;
  margin: 0;
}

.form-group.checkbox label {
  margin: 0;
  font-size: 0.875rem;
}

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

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(207, 90%, 45%) 100%);
  color: var(--white);
  padding: 3rem 0;
}

.page-header-content {
  text-align: center;
}

.page-header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.6;
}

/* Product Section */
.product-section {
  padding: 4rem 0;
}

.gray-bg {
  background: var(--neutral-light);
}

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

.product-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
}

.product-item:hover {
  box-shadow: var(--shadow-lg);
}

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

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

.product-info p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.product-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.spec-item {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(207, 90%, 45%) 100%);
  color: var(--white);
  padding: 4rem 0;
}

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

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

/* Services */
.services-overview {
  padding: 4rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.service-features {
  text-align: left;
}

.service-features li {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

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

/* Detailed Services */
.detailed-services {
  padding: 4rem 0;
  background: var(--neutral-light);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.service-content p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
}

.benefit-item i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.benefit-item h4 {
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.25rem;
}

.benefit-item p {
  color: var(--gray-500);
  margin: 0;
}

.service-process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--gray-500);
  margin: 0;
}

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

/* Service Features */
.service-features {
  padding: 4rem 0;
  background: var(--white);
}

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

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

.feature-card .feature-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(207, 90%, 54%, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Industries */
.industries {
  padding: 4rem 0;
  background: var(--neutral-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.industry-content {
  padding: 1.5rem;
}

.industry-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

.industry-content p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* About Page */
.company-overview {
  padding: 4rem 0;
  background: var(--white);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.overview-text p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.company-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

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

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

/* Mission Vision Values */
.mission-vision {
  padding: 4rem 0;
  background: var(--neutral-light);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.mvv-icon {
  width: 4rem;
  height: 4rem;
  background: hsl(207, 90%, 54%, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.mvv-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.mvv-card p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  text-align: left;
}

.mvv-card ul {
  text-align: left;
  color: var(--gray-500);
}

.mvv-card li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.mvv-card li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Market Focus */
.market-focus {
  padding: 4rem 0;
  background: var(--white);
}

.market-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.market-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.market-text p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.market-insights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-item h4 {
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.insight-item p {
  color: var(--gray-500);
  margin: 0;
}

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

/* Company Info */
.company-info {
  padding: 4rem 0;
  background: var(--neutral-light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(207, 90%, 54%, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.info-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.info-details p {
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.info-details a {
  color: var(--primary);
}

.info-details a:hover {
  text-decoration: underline;
}

/* Why Choose Detailed */
.why-choose-detailed {
  padding: 4rem 0;
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-item {
  display: flex;
  gap: 1rem;
}

.advantage-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(207, 90%, 54%, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.advantage-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.advantage-item p {
  color: var(--gray-500);
}

/* Contact Page */
.contact-info-section {
  padding: 4rem 0;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background: var(--neutral-light);
  border-radius: var(--radius);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary);
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Contact Forms */
.contact-forms {
  padding: 4rem 0;
  background: var(--neutral-light);
}

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

.form-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.form-section p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.contact-form {
  /* Form styles already defined above */
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--white);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question h4 {
  font-weight: 600;
  color: var(--neutral-dark);
  margin: 0;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  background: var(--gray-50);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--gray-500);
  margin: 0;
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0;
  background: var(--white);
}

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

.legal-content .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 2rem;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--gray-500);
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-section p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-section li {
  color: var(--gray-500);
  margin-bottom: 0.5rem;
  list-style: disc;
}

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

.legal-section a:hover {
  text-decoration: underline;
}

.contact-details {
  background: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.contact-details p {
  margin: 0;
}

/* Cookie Table */
.cookie-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.cookie-table th {
  background: var(--gray-100);
  font-weight: 600;
  color: var(--neutral-dark);
}

.cookie-table td {
  color: var(--gray-500);
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  background: var(--primary);
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: var(--gray-400);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

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

.footer-section li a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-section .contact-info {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-section .contact-info a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .overview-content,
  .why-choose-content,
  .contact-content,
  .service-detail,
  .market-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-detail.reverse {
    direction: ltr;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
  }
  
  .company-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-text h2 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid,
  .services-grid,
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .company-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .forms-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .stats-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-text h2 {
    font-size: 1.75rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .page-header-content h1 {
    font-size: 2rem;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
  
  .quote-form,
  .form-section {
    padding: 1.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}
