/* Root Variables */
:root {
    /* Colors */
    --primary-blue: #336699;
    --primary-dark: #1a4d80;
    --primary-light: #4d80b3;
    --text-dark: #2d3748;
    --text-light: #ffffff;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Typography */
    --font-heading: 'Segoe UI', system-ui, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
  }
  
  /* Global Reset */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
.services-list-title {
  color: var(--primary-dark);
  margin: 2rem;
  
} 

.services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
  }

.site-main{
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:3rem;
}
  /* Header Section */
.site-header {
    background: linear-gradient(rgba(177, 186, 237, 0.5), rgba(81, 93, 227, 0.5)),
                url('img/back-image.jpg') no-repeat center/cover;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    min-height: 50vh;
  }
  .site-header address{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;

  }
  .adress-item{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: left;
  }

  .adress-item svg{
    min-width: 30px;
  }
  .site-header address a{

 
    color: white;

  }
  .navbar {
    display: flex;
    justify-content: center;
    
  }

.logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-full);
    border: 2px solid var(--text-light);
    padding: var(--space-2);
    box-shadow: var(--shadow-md);
  }
  
  /* Company Title */
  .company-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: var(--text-light);
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }
  
/* Mission Section - continued */
.mission-section {
    padding: var(--space-6) var(--space-5);
    background: var(--bg-light);
    display: flex;
    gap: var(--space-5);
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .mision-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .img-mision-fluid {
    max-width: 30%;
    min-width: 250px;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-md);
    padding: var(--space-2);
  }
  
  .mission-text {
    font-size: 1.2rem;
    margin: var(--space-5) 0;
  }
  
  .mission-title {
    color: var(--primary-blue);
  }
  
/* Service Categories */
  .service-category {
    padding: var(--space-6) var(--space-5);
  }
  
  .category-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: var(--space-6);
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  
  .service-card {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    transition: transform var(--transition-normal);
  }
  
  .service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
  }
  
  .service-card img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
  }
  
  .card-body {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .card-body h4 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-5);
    font-weight: 600;
  }
/* Services List Container */
.services-list {
    padding: var(--space-4) var(--space-3);
    background: transparent;
    
    width: 100%;
    min-height: 30vh;
    gap: 2rem;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}

/* Title Styling */
.services-list h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: var(--space-4);
    padding: 0 var(--space-3);
}

/* Grid Layout */
.services-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3);
    padding: 0;
    list-style: none;
    max-width: 1400px;
    margin: 0 auto;
}

/* List Items */
.services-list li {
    height: auto;
    min-height: 3rem;
    min-width: 20rem;
}

/* Link Styling */
.services-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--primary-blue);
    padding: var(--space-3) var(--space-4);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    transition: all var(--transition-normal);
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

/* Hover Effects */
.services-list a:hover {
    background: var(--primary-blue);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Active State */
.services-list a:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-list ul {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-list {
        padding: var(--space-3) var(--space-2);
        min-height: auto;
    }

    .services-list ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-2);
    }

    .services-list a {
        padding: var(--space-2) var(--space-3);
        min-height: 3rem;
    }
}

@media (max-width: 480px) {
    .services-list ul {
        grid-template-columns: 1fr;
    }

    .services-list h2 {
        font-size: 1.5rem;
        margin-bottom: var(--space-3);
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .services-list a {
        padding: var(--space-3);
    }

    .services-list a:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .services-list a {
        border: 2px solid var(--primary-blue);
    }
}
  
  /* Featured Services */
.featured-service {
    background: var(--bg-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: var(--space-5) 0;
    transition: transform var(--transition-normal);
  }
  
.featured-service:hover {
    transform: translateY(-5px);
  }
  
.featured-service img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
  }
  
.featured-service img:hover {
    transform: scale(1.02);
  }
  
.featured-service h3 {
    color: var(--primary-blue);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: var(--space-4) 0;
    text-align: center;
    letter-spacing: -0.5px;
  }
  
.featured-service h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
  }
  
.featured-service ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
.featured-service li {
    position: relative;
    padding-left: var(--space-4);
    margin-bottom: var(--space-3);
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
.featured-service li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    transition: transform var(--transition-fast);
  }
  
.featured-service li:hover:before {
    transform: translateX(3px);
  }
  
  /* Contact Info */
.contact-info {
    padding: var(--space-3);
    margin: var(--space-3) 0;
  }
  
.contact-info address {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    font-style: normal;
  }
  
.contact-info p {
    margin: 0;
    white-space: nowrap;
  }
  
.contact-info strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-right: var(--space-2);
  }
  
.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
  }
  
.contact-info a:hover {
    color: var(--primary-blue);
  }
  
/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: var(--space-4);
    right: var(--space-4);
    z-index: var(--z-50);
  }
  
.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
  }
  
.whatsapp-button img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
  }
  
/* WhatsApp Button - continued */
.whatsapp-button a:hover {
    transform: scale(1.1);
    background-color: #20b556;
    box-shadow: var(--shadow-lg);
  }
  
/* Footer Section */
.site-footer {
  background: gray;
  color: var(--text-light);
  padding: clamp(2rem, 5vw, 4rem) var(--space-5);
  text-align: center;
  display: grid;
  gap: var(--space-4);
  min-width: 100vw;
}

.site-footer h5 {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  margin-bottom: var(--space-3);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.site-footer ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  position: relative;
}

.site-footer ul li a:hover {
  color: var(--text-light);
  opacity: 0.8;
  transform: translateY(-2px);
}

.site-footer ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--text-light);
  transition: width 0.3s ease;
}

.site-footer ul li a:hover::after {
  width: 100%;
}
.adress-text{
  color: white
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
.service-card {
    animation: fadeIn 1s ease-in;
  }
  
  /* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
  }
  
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary-blue); }
.bg-white { background-color: var(--bg-white); }
  
/* Responsive Design */
@media (max-width: 1024px) {
    .container {
      padding: 0 var(--space-4);
    }
    
    .mission-section {
      padding: var(--space-5) var(--space-4);
    }
    
    .service-category {
      padding: var(--space-5) var(--space-4);
    }
  }
  
@media (max-width: 768px) {
    .site-header {
      height: 50vh;
    }
  
    .navbar {
      padding: var(--space-4);
      gap: var(--space-4);
    }
  
    .company-title {
      font-size: 2rem;
    }
  
    .mission-section {
      flex-direction: column;
      padding: var(--space-4);
    }
  
    .featured-service {
      padding: var(--space-4);
    }
  
    .services-list {
      height: auto;
      padding: var(--space-3);
    }
  
    .services-list ul {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: var(--space-2);
    }
  
    .contact-info address {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--space-2);
    }
  
    .whatsapp-button {
      bottom: var(--space-3);
      right: var(--space-3);
    }
  
    .whatsapp-button a {
      width: 50px;
      height: 50px;
    }
  
    .whatsapp-button img {
      width: 30px;
      height: 30px;
    }
  }
  
@media (max-width: 480px) {
    :root {
      --space-4: 1rem;
      --space-5: 1.5rem;
      --space-6: 2rem;
    }
  
    .company-title {
      font-size: 1.75rem;
    }
  
    .service-card h4 {
      font-size: 1.5rem;
    }
  
    .featured-service {
      padding: var(--space-3);
    }
  }
/* Print Styles - continued */
@media print {
    .site-header {
      height: auto;
      background: none;
      color: var(--text-dark);
    }
  
    .navbar img {
      border: 1px solid var(--text-dark);
    }
  
    .company-title {
      color: var(--text-dark);
      text-shadow: none;
    }
  
    .service-card,
    .featured-service {
      break-inside: avoid;
      box-shadow: none;
      border: 1px solid #ddd;
    }
  
    .services-list {
      height: auto;
    }
  
    .site-footer {
      background: none;
      color: var(--text-dark);
      border-top: 1px solid #ddd;
    }
  
    a {
      text-decoration: none !important;
      color: var(--text-dark) !important;
    }
  
    a[href]:after {
      content: " (" attr(href) ")";
      font-size: 0.8em;
    }
  }
  
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  /* Focus States */
  :focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
  }
  
  :focus:not(:focus-visible) {
    outline: none;
  }
  
  /* Additional Utilities */
  .mt-1 { margin-top: var(--space-1); }
  .mt-2 { margin-top: var(--space-2); }
  .mt-3 { margin-top: var(--space-3); }
  .mt-4 { margin-top: var(--space-4); }
  .mt-5 { margin-top: var(--space-5); }
  
  .mb-1 { margin-bottom: var(--space-1); }
  .mb-2 { margin-bottom: var(--space-2); }
  .mb-3 { margin-bottom: var(--space-3); }
  .mb-4 { margin-bottom: var(--space-4); }
  .mb-5 { margin-bottom: var(--space-5); }
  
  .mx-auto { 
    margin-left: auto;
    margin-right: auto;
  }
  
  .w-100 { width: 100%; }
  .h-100 { height: 100%; }
  
  .d-flex { display: flex; }
  .d-grid { display: grid; }
  .d-none { display: none; }
  
  .align-center { align-items: center; }
  .justify-center { justify-content: center; }
  
  .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg-light);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: var(--radius-full);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }


  /* Lists Reset */
  ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  