/* =============================
   FLOATING TEXT (ABOUT ONLY)
============================= */
.floating-text {
  opacity: 0;
  transform: translateY(24px);
  animation: aboutFloat 1.2s ease-out forwards;
}

.about-hero-inner h1 {
  animation-delay: 0.1s;
}

.about-hero-inner p {
  animation-delay: 0.35s;
}

@keyframes aboutFloat {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   SERVICES GRID
============================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.service-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.service-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.service-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.service-box p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* =============================
   HERO
============================= */
.about-hero {
  background: linear-gradient(135deg, #1e90ff, #6a11cb);
  color: #ffffff;
  text-align: center;
  padding: 150px 20px 110px;
}

.about-hero-inner h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.about-hero-inner p {
  font-size: 17px;
  color: #eef2ff;
  max-width: 700px;
  margin: 0 auto;
}

/* =============================
   OFFICE
============================= */
.office-section {
  padding: 90px 70px;
  background: #ffffff;
}

.office-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.office-info h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.office-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

.office-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
/* =============================
   SERVICES CATALOG
============================= */
/* =============================
   SERVICES HEADER
============================= */

.services-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.services-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.services-catalog {
  padding: 90px 70px;
  background: #f8f9fa;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-image {
  width: 45%;
  min-height: 240px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  width: 55%;
  padding: 32px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #111;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* =============================
   HERO
============================= */
.about-hero {
  background: linear-gradient(135deg, #1e90ff, #6a11cb);
  color: #fff;
  text-align: center;
  padding: 150px 20px 110px;
}

.about-hero-inner h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-hero-inner p {
  font-size: 17px;
  color: #eef2ff;
  max-width: 700px;
  margin: 0 auto;
}

/* =============================
   ABOUT SECTION
============================= */
.about-section {
  padding: 90px 70px;
  background: #ffffff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.about-card {
  background: #f9fafb;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.about-card h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.about-card h3 {
  margin-top: 22px;
  font-size: 18px;
  color: #1e40af;
}

.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

.about-points {
  margin-top: 14px;
  padding-left: 18px;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* =============================
   SERVICES CATALOG
============================= */
.services-catalog {
  padding: 90px 70px;
  background: #f8f9fa;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.services-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
}

.services-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.services-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-image {
  width: 45%;
  min-height: 240px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  width: 55%;
  padding: 32px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* =============================
   OFFICE
============================= */
.office-section {
  padding: 90px 70px;
  background: #ffffff;
}

.office-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.office-info h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.office-info p {
  font-size: 15px;
  line-height: 1.7;
}

.office-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
  .about-layout,
  .office-layout,
  .services-catalog {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
  }

  .service-image,
  .service-content {
    width: 100%;
  }

  .about-section,
  .services-catalog,
  .office-section {
    padding: 60px 40px;
  }
}

@media (max-width: 480px) {
  .about-hero-inner h1 {
    font-size: 28px;
  }

  .about-hero-inner p {
    font-size: 14px;
  }
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 1024px) {
  .services-catalog {
    grid-template-columns: 1fr;
    padding: 60px 40px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-image,
  .service-content {
    width: 100%;
  }

  .service-image {
    height: 220px;
  }
}


/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
  .about-layout,
  .office-layout {
    grid-template-columns: 1fr;
  }

  .about-section,
  .office-section {
    padding: 70px 40px;
  }

  .about-hero {
    padding: 120px 20px 90px;
  }
}

@media (max-width: 480px) {
  .about-hero-inner h1 {
    font-size: 28px;
  }

  .about-hero-inner p {
    font-size: 14px;
  }

  .about-card {
    padding: 28px 22px;
  }

  .services-grid {
    gap: 20px;
  }
}
