/* Hero */
.hero { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); color:white; padding:120px 0 80px; text-align:center; margin-top:70px; }
.hero-content{ max-width:800px; margin:0 auto; padding:0 20px; }
.hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    animation: heroLogoFloat 3s ease-in-out infinite;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        height: 100px;
        border-radius: 20px;
    }
}

.hero-subtitle{ font-size:1.3rem; opacity:.9; color:white; }

/* Service Images */
.service-image {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 200px;
}

/* Service Details */
.service-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #475569;
  line-height: 1.6;
}

.service-details li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Loading and Empty States */
.loading-spinner,
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #64748b;
}

.loading-spinner i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3b82f6;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.empty-state h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

/* Services */
.services-section{ padding:80px 0; background:#fff; }
.services-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:2rem; max-width:1200px; margin:0 auto; padding:0 20px; }
.service-card{ background:#f8fafc; border-radius:16px; padding:2rem; box-shadow:0 8px 24px rgba(0,0,0,.06); transition:transform .3s ease, box-shadow .3s ease; }
.service-card:hover{ transform:translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,.1); }
.service-icon{ width:64px; height:64px; border-radius:16px; background: linear-gradient(135deg, #3b82f6, #1e40af); color:white; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:1rem; }
.service-card h3{ color:#1e40af; font-size:1.25rem; margin-bottom:.5rem; }
.service-card p{ color:#64748b; line-height:1.6; }

@media (max-width:480px){ .hero{ padding:90px 0 60px;} .hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    animation: heroLogoFloat 3s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
@media (min-width: 1024px) {
    .hero-logo {
        height: 100px;
        border-radius: 20px;
        padding: 10px;
    }
 }
