/* Critical CSS - Above the fold styles for faster rendering */
/* Optimized CSS Variables - Design System */
/* Critical rendering path optimizations */
:root {
  /* Colors - Optimized for performance */
  --orange-primary: #ff6b35;
  --orange-secondary: #ff8c42;
  --orange-light: #fff3e6;
  --black-primary: #0a0a0a;
  --black-secondary: #1a1a1a;
  --gray-light: #f8f9fa;
  --gray-300: #6b7280;
  --gray-600: #4b5563;
  --white: #ffffff;
  
  /* Gradients - Simplified */
  --gradient-primary: linear-gradient(135deg, #ff6b35, #ff8c42);
  --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  
  /* Shadows - Optimized */
  --shadow-orange: 0 10px 30px -10px rgba(255, 107, 53, 0.3);
  --shadow-elegant: 0 20px 60px -10px rgba(10, 10, 10, 0.2);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius: 0.5rem;
  --radius-lg: 1rem;
  
  /* Spacing */
  --container-padding: 2rem;
  --section-padding: 5rem 0;
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--black-primary);
  background-color: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--black-primary);
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.btn-primary:hover {
  background: var(--orange-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--black-primary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.about-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.about-logo-image {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  border-radius: var(--radius);
  background: white;
  padding: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  background: var(--black-primary);
  color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* padding-bottom: 120px;  geri alındı */
}

.top-bar {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--black-secondary);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--orange-primary);
}

.location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}

.main-nav {
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
}

.logo-image {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: var(--radius);
  background: white;
  padding: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: auto;
  position: static;
  background: none;
  box-shadow: none;
}

.nav-links.active {
  display: flex;
  flex-direction: row;
  position: static;
  background: none;
  box-shadow: none;
  width: auto;
  padding: 0;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.5rem 0;
  margin-top: 5px;
  width: 100%;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--gray-light);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--orange-primary);
  color: white;
  transform: translateX(5px);
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-button {
  background: var(--orange-primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--orange-secondary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black-primary);
  color: var(--white);
  margin-top: 110px; 
  width: 100%;
  overflow-x: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('public/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    hsl(222.2, 84%, 4.9% / 0.95) 0%, 
    hsl(222.2, 84%, 4.9% / 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-primary);
  margin-bottom: 0.5rem;
}

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

/* Services Section */
.services {
  padding: var(--section-padding);
  background: var(--gray-light);
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

.service-image {
  position: relative;
  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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    hsl(222.2, 84%, 4.9% / 0.6) 0%, 
    transparent 100%);
}

.service-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  color: var(--orange-primary);
  font-size: 1.5rem;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--black-primary);
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

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

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--orange-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* About Section */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

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

.about-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--orange-light);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease;
}

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

.feature-icon {
  color: var(--orange-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--black-primary);
}

.feature-description {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.about-highlight {
  background: linear-gradient(135deg, var(--orange-light) 0%, hsl(25, 85%, 60% / 0.2) 100%);
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--black-primary);
}

.highlight-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-number {
  width: 4rem;
  height: 4rem;
  background: var(--orange-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-label {
  font-weight: 600;
  color: var(--black-primary);
  margin-bottom: 0.25rem;
}

.highlight-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background: #f8f9fa;
  color: var(--black-primary);
}

.contact .section-title,
.contact .section-description {
  color: var(--black-primary);
}

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

.contact-form-card {
  background: var(--black-secondary);
  border: 1px solid var(--black-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-primary);
  margin-bottom: 0.5rem;
}

.form-description {
  color: var(--gray-light);
}

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

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

.form-input,
.form-textarea {
  background: var(--black-primary);
  border: 1px solid var(--gray-600);
  color: var(--white);
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-300);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange-primary);
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--orange-primary);
}

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

.contact-title {
  font-weight: 600;
  color: var(--orange-primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.contact-text {
  color: var(--black-primary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* Footer */
.footer {
  background: var(--black-primary);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

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

.footer-description {
  color: var(--gray-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-light);
  font-size: 0.875rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--orange-primary);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-light);
  font-size: 0.875rem;
}

.footer-separator {
  height: 1px;
  background: var(--black-secondary);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--orange-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    margin-top: 70px;
  }

  .cta-button {
    display: none;
  }

  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-primary);
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;

  }
  
  .nav-links.active .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  
  .nav-links.active .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
  
  /* Mobile dropdown styles */
  .nav-dropdown {
    position: static;
    width: 100%;
  }
  
  .dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .dropdown-toggle::after {
    float: right;
    margin-top: 0.25rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: none;
    width: 100%;
    min-width: auto;
  }
  
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-item {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    display: block;
    width: 100%;
  }
  
  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info-card {
    min-height: 160px;
    padding: 1.5rem;
  }
  
  .additional-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .services-cta {
    margin-top: 1.5rem;
  }
  
  .about-logo-image {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-info-card {
    min-height: 160px;
    padding: 1.25rem;
  }
  
  .additional-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .services-cta {
    margin-top: 2rem;
  }
  
  .about-logo-image {
    width: 4rem;
    height: 4rem;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  font-weight: 600;
  font-size: 14px;
}

.whatsapp-button:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
  width: 20px;
  height: 20px;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-textarea:focus {
  outline: 2px solid var(--orange-primary);
  outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Page Header Styles */
.page-header {
  background: var(--black-primary);
  color: var(--white);
  padding: 8rem 0 4rem;
  margin-top: 110px;
}

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

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.page-description {
  font-size: 1.25rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
  color: var(--orange-primary);
}

/* Services Overview Page */
.services-overview {
  padding: var(--section-padding);
  background: var(--gray-light);
}

.service-card.large {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

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

.service-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black-primary);
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  margin-bottom: 0.25rem;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Additional Services */
.additional-services {
  padding: var(--section-padding);
  background: var(--white);
}

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

.additional-service-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--orange-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

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

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

.additional-service-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: var(--black-primary);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Product Categories Page */
.product-categories {
  padding: var(--section-padding);
  background: var(--gray-light);
}

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

.category-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  text-align: center;
}

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

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

.category-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black-primary);
}

.category-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.category-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.category-features li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-light);
}

.category-features li:last-child {
  border-bottom: none;
}

/* Featured Products */
.featured-products {
  padding: var(--section-padding);
  background: var(--white);
}

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

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

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

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--black-primary);
}

.product-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.spec {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.25rem 0.5rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: inline-block;
  width: fit-content;
}

/* Brands Section */
.brands-section {
  padding: var(--section-padding);
  background: var(--gray-light);
}

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

.brand-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

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

.brand-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black-primary);
}

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

/* Product Inquiry */
.product-inquiry {
  padding: var(--section-padding);
  background: var(--white);
}

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

.inquiry-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black-primary);
}

.inquiry-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.inquiry-benefits {
  list-style: none;
}

.inquiry-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-600);
}

.inquiry-benefits i {
  color: var(--orange-primary);
}

.inquiry-form {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.inquiry-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black-primary);
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Company Story Page */
.company-story {
  padding: var(--section-padding);
  background: var(--white);
}

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

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--black-primary);
}

.story-paragraph {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Mission & Vision */
.mission-vision {
  padding: var(--section-padding);
  background: var(--gray-light);
}

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

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

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

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black-primary);
}

.mission-card p,
.vision-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.value-card {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

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

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black-primary);
}

.value-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background: var(--gray-light);
}

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

.team-member {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.member-photo {
  width: 6rem;
  height: 6rem;
  background: var(--orange-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 2rem;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black-primary);
}

.member-title {
  color: var(--orange-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.achievement-card {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.achievement-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-primary);
  margin-bottom: 0.5rem;
}

.achievement-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black-primary);
}

.achievement-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Certificates Section */
.certificates-section {
  padding: var(--section-padding);
  background: var(--gray-light);
}

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

.certificate-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

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

.certificate-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black-primary);
}

.certificate-card p {
  color: var(--gray-600);
}

/* Contact Info Section */
.contact-info-section {
  padding: var(--section-padding);
  background: var(--gray-light);
}

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

.contact-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-info-card .contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--orange-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details {
  text-align: center;
  width: 100%;
}

.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black-primary);
  text-align: center;
}

.contact-text {
  color: var(--gray-600);
  margin-bottom: 0.25rem;
  text-align: center;
}

.contact-subtitle {
  color: var(--orange-primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  text-align: center;
}

/* Contact Form Section */
.contact-form-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.contact-form-card {
  background: var(--black-secondary);
  border: 1px solid var(--black-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

.form-checkbox label {
  color: var(--gray-light);
  font-size: 0.875rem;
}

/* Contact Map */
.contact-map-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.map-header {
  margin-bottom: 1.5rem;
}

.map-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black-primary);
  text-align: center;
}

.map-header p {
  color: var(--gray-600);
  text-align: center;
}

.map-container {
  height: 300px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--gray-600);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--orange-primary);
  margin-bottom: 1rem;
}

.map-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Service Areas */
.service-areas {
  padding: var(--section-padding);
  background: var(--gray-light);
}

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

.area-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

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

.area-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black-primary);
}

.area-card p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.area-list {
  list-style: none;
}

.area-list li {
  padding: 0.25rem 0;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-light);
}

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

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

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.faq-question:hover {
  background: var(--orange-light);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black-primary);
  margin: 0;
}

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

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

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.6;
  display: none;
}

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

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .services-grid,
  .products-grid,
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .page-header {
    padding: 4rem 0 2rem;
    margin-top: 70px;
  }
  
  .story-content,
  .mission-vision-grid,
  .contact-content,
  .inquiry-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-stats {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .map-actions {
    flex-direction: column;
  }
  
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .service-card.large {
    margin-bottom: 2rem;
  }
  
  .additional-services-grid,
  .values-grid,
  .team-grid,
  .achievements-grid,
  .certificates-grid,
  .contact-info-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero {
    margin-top: 60px;
  }
  
  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
  
  .btn-outline {
    border-width: 1px;
  }
  
  .whatsapp-button {
    padding: 12px;
    font-size: 0;
    width: 56px;
    height: 56px;
    gap: 0;
  }
  
  .whatsapp-button svg {
    width: 24px;
    height: 24px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .page-title {
    font-size: 1.75rem;
  }

  .page-header {
    padding: 3rem 0 1.5rem;
    margin-top: 60px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info {
    font-size: 0.75rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .service-card,
  .product-card,
  .category-card {
    padding: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
} 

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .footer-section {
    margin-bottom: 1.5rem;
  }
  .footer-contact-item {
    justify-content: center;
    font-size: 1rem;
    align-items: center;
  }
  .footer-contact-item i {
    margin-right: 0.5rem;
    margin-left: 0;
    font-size: 1.2em;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-contact-item span {
    display: inline-block;
    vertical-align: middle;
  }
  .footer-location {
    justify-content: center;
    align-items: center;
  }
  .footer-location i {
    margin-right: 0.5rem;
    margin-left: 0;
    font-size: 1.2em;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-location span {
    display: inline-block;
    vertical-align: middle;
  }
  .hero-title {
    font-size: 2rem !important;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    margin-bottom: 1rem;
  }
} 

@media (max-width: 768px) {
  .nav-links.active {
    max-height: 80vh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
} 

/* Print styles */
@media print {
  .header,
  .footer,
  .btn {
    display: none;
  }
  
  .hero {
    margin-top: 0;
  }
} 

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.highlight-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Machine Types */
.machine-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.machine-type {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.machine-type:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.machine-type h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.machine-type p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Troubleshooting */
.troubleshooting {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.trouble-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trouble-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trouble-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Maintenance Schedule */
.maintenance-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.maintenance-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.maintenance-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.maintenance-item ul {
    list-style: none;
    padding: 0;
}

.maintenance-item li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.maintenance-item li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Emergency Card */
.emergency-card {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.emergency-card h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.emergency-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-emergency {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Certification Card */
.certification-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.certification-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cert-list i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Parts Card */
.parts-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.parts-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.parts-list {
    list-style: none;
    padding: 0;
}

.parts-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.parts-list i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Maintenance Tips */
.maintenance-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.tip-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip-item ul {
    list-style: none;
    padding: 0;
}

.tip-item li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tip-item li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Success Color Variable */
:root {
    --success-color: #28a745;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .machine-types {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .troubleshooting {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .maintenance-schedule {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .maintenance-tips {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-item i {
        font-size: 2rem;
    }
    
    .emergency-card {
        padding: 1rem;
    }
    
    .certification-card,
    .parts-card {
        padding: 1rem;
    }
} 

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-primary);
}

.benefit-icon {
    background: var(--gradient-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    color: var(--black-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.benefit-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Benefits Grid */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
} 

/* Service Features Cards */
.service-features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-feature-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.service-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-feature-card:hover::before {
  transform: scaleX(1);
}

.service-feature-card .feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--orange-primary);
  font-size: 1.25rem;
}

.service-feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black-primary);
  margin-bottom: 0.5rem;
}

.service-feature-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Responsive adjustments for service feature cards */
@media (max-width: 768px) {
  .service-features-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-feature-card {
    padding: 1.25rem;
  }
  
  .service-feature-card .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
} 

/* Service Description Styling */
.service-description-full h2 {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black-primary);
    font-size: 2rem;
    font-weight: 700;
}

.service-description-full h2 + p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments for service description */
@media (max-width: 768px) {
    .service-description-full h2 {
        font-size: 1.75rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-description-full h2 + p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .service-description-full h2 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }
    
    .service-description-full h2 + p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
} 

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    overflow-x: hidden;
  }
  .header {
    width: 100%;
  }
  .top-bar {
    width: 100%;
  }
  .nav-content {
    width: 100%;
  }
} 

@media (max-width: 600px) {
  .contact-info-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .contact-info-card {
    min-height: 120px;
    padding: 1rem;
    font-size: 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .footer-section {
    margin-bottom: 1.5rem;
  }
  .footer-contact-item {
    justify-content: center;
    font-size: 1rem;
  }
} 