:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #0f172a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --success: #10b981;
  --warning: #f59e0b;
  --max-width: 1280px;
  --radius: 16px;
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 25px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 50px -12px rgb(0 0 0 / 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  background: var(--white);
  color: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid #0ea5e9;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  gap: 2rem;
  position: relative;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-900);
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: absolute;
  left: 1rem;
  z-index: 101;
}

.menu-toggle:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  padding: 0.625rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand:hover {
  transform: translateX(-50%) scale(1.02);
}

.logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  box-shadow: none;
  border: none;
}

.header-actions {
  position: relative;
  z-index: 10;
}

.nav {
  display: flex;
  gap: 0.5rem;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  padding: 0.625rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav a:hover::after {
  width: 70%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #0ea5e9;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.call-btn svg path {
  fill: var(--white);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
}

.btn.outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn.outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

.btn.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  border: none;
  gap: 0.5rem;
}

.btn.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.features h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 1.5rem 0.75rem;
  color: var(--gray-900);
}

.card p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0 1.5rem 1.5rem;
  line-height: 1.7;
}

/* Preview Section */
.preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.preview-left,
.preview-right {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.preview h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.service-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.service-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
  color: var(--gray-700);
}

.service-list li:last-child {
  border-bottom: none;
}

.equip-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.equip-preview img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.equip-preview img:hover {
  transform: scale(1.05);
}

/* Equipment Grid */
.equipments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.equipment-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.equipment-card img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.equipment-card:hover img {
  transform: scale(1.05);
}

.equipment-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: #000;
  letter-spacing: -0.02em;
}

.equipment-card p {
  display: none;
}

.equip-actions,
.equipment-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50px;
  overflow: visible;
  padding: 0;
  margin: 0;
  position: relative;
  margin-top: 1.5rem;
  gap: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.btn-buy,
.btn-rent {
  padding: 0.875rem 2.25rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-buy {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: var(--white);
  border-radius: 50px 0 0 50px;
  z-index: 1;
}

.btn-buy:only-child {
  border-radius: 50px;
}

.btn-buy:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}

.btn-rent {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: var(--white);
  border-radius: 0 50px 50px 0;
  z-index: 1;
}

.btn-rent:only-child {
  border-radius: 50px;
}

.btn-rent:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.equip-actions::after,
.equipment-actions::after {
  content: 'OR';
  position: absolute;
  background: white;
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.5rem 0.65rem;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #f1f5f9;
  letter-spacing: 0.5px;
}

/* Hide OR separator when only one button is present */
.equipment-actions:has(.btn-buy:only-child)::after,
.equipment-actions:has(.btn-rent:only-child)::after,
.equip-actions:has(.btn-buy:only-child)::after,
.equip-actions:has(.btn-rent:only-child)::after {
  display: none;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

/* Showcase style to match provided design */
.services-showcase {
  background: linear-gradient(180deg, #0ea5e9 0%, #38bdf8 100%);
  padding: 48px 0;
}

.services-showcase .section-header {
  color: #fff;
  text-align: center;
  margin-bottom: 18px;
}

.services-showcase .section-header h2 {
  color: #fff;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.service-card.alt {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border: none;
  overflow: visible;
}

.service-card.alt .card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card.alt .card-text {
  flex: 1 1 60%;
}

.service-card.alt .service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #0f172a;
  line-height: 1;
}

.service-card.alt .book-now {
  display: inline-block;
  background-color: #0ea5e9;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  margin-top: 6px;
  padding: 8px 16px;
  border-radius: 40px;
}

.service-card.alt .card-image {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card.alt .card-image img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
}

.service-card.alt .service-desc {
  margin-top: 12px;
  color: #475569;
  font-size: 0.95rem;
}

.see-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn.see-more {
  background: #000;
  color: #fff;
  padding: 10px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.alt .service-title { font-size: 34px; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.alt .card-inner { flex-direction: row; }
  .service-card.alt .service-title { font-size: 26px; }
  .service-card.alt .card-image img { height: 100px; }
  .services-showcase .container {
    padding: 0 0.75rem;
  }
}

/* Stats Section after Services */
.services-stats-section {
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.services-stats-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.services-stats-section .stats-subtitle {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.95;
}

.services-stats-section .stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.services-stats-section .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-stats-section .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.services-stats-section .stat-label {
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services-stats-section .stats-row {
    gap: 2.5rem;
  }
  .services-stats-section .stat-number {
    font-size: 2.5rem;
  }
  .services-stats-section h3 {
    font-size: 2rem;
  }
}

.service-item {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  display: flex;
  gap: 1.25rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.service-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.service-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Service Card - Firebase Dynamic Content */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 1.5rem 0.75rem;
  color: var(--gray-900);
  line-height: 1.3;
}

.service-card p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0 1.5rem 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .price {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 1.5rem 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--secondary);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-certifications {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-certifications span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-copyright-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-copyright-link:hover .footer-copyright {
  color: rgba(255, 255, 255, 1);
}

.footer-copyright-link:hover {
  transform: translateY(-2px);
}

.footer-copyright {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  margin: 3rem 0;
}

.stats-section h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
}

/* Services Detail Section */
.services-detail {
  padding: 4rem 0;
}

.services-detail h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.detail-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.detail-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.detail-card p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: var(--gray-50);
}

.testimonials h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--gray-900);
  font-size: 1.05rem;
}

.testimonial-author span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0;
  margin: 3rem 0 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card,
.equipment-card,
.service-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.equipment-card:nth-child(n) { animation-delay: calc(0.05s * var(--i, 0)); }
.service-item:nth-child(n) { animation-delay: calc(0.05s * var(--i, 0)); }

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .preview {
    grid-template-columns: 1fr;
  }
  
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .header-inner {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }

  .brand {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .brand:hover {
    transform: scale(1.02);
  }

  .logo {
    width: 140px;
    height: auto;
  }
  
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    padding: 0.5rem;
  }

  .call-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    gap: 0.35rem;
  }

  .call-btn span {
    display: none;
  }

  .call-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0.5rem;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--gray-700);
    border-left: 4px solid transparent;
  }
  
  .nav-link:hover {
    border-left-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav {
    display: none;
  }
  
  .brand-text h1 {
    font-size: 1.1rem;
  }
  
  .brand-text .tag {
    font-size: 0.7rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .features h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
  }  .cards {
    grid-template-columns: 1fr;
  }
  
  .equipments-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card img {
    height: 200px;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    margin: 1.5rem 1.25rem 0.75rem;
    line-height: 1.5;
  }
  
  .service-card p {
    font-size: 0.95rem;
    margin: 0 1.25rem 1.25rem;
  }
  
  .equip-preview {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-section h3,
  .services-detail h3,
  .testimonials h3,
  .cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-certifications {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  animation: whatsappBounce 2s infinite, whatsappGlow 2s infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsappRipple 2s infinite;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -2;
  animation: whatsappRipple 2s infinite 1s;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8);
  animation: whatsappShake 0.5s ease-in-out;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  animation: whatsappSpin 3s ease-in-out infinite;
}

@keyframes whatsappBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  10% {
    transform: translateY(-8px) scale(1.05);
  }
  20% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-4px) scale(1.02);
  }
  40% {
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappGlow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
  }
  50% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7), 0 0 40px rgba(37, 211, 102, 0.4);
  }
}

@keyframes whatsappRipple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes whatsappSpin {
  0%, 90%, 100% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(20deg);
  }
  97% {
    transform: rotate(-20deg);
  }
}

@keyframes whatsappShake {
  0%, 100% {
    transform: scale(1.15) rotate(0deg);
  }
  25% {
    transform: scale(1.15) rotate(10deg);
  }
  50% {
    transform: scale(1.15) rotate(-10deg);
  }
  75% {
    transform: scale(1.15) rotate(5deg);
  }
}

/* Page Hero Section */
.page-hero {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat .stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  text-align: center;
}

/* Filter Section */
.filter-section {
  background: var(--white);
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
  z-index: 50;
  border-bottom: 1px solid var(--gray-200);
}

.filter-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.search-input,
.category-select {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.search-input {
  flex: 1;
  max-width: 400px;
  min-width: 250px;
}

.search-input:focus,
.category-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.category-select {
  min-width: 200px;
  cursor: pointer;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.equipment-section,
.services-section {
  padding: 4rem 0;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--gray-50);
  padding: 4rem 0;
  margin-top: 3rem;
}

.why-choose-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-choose-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.why-choose-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.why-choose-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Service Details Section */
.service-details-section {
  padding: 4rem 0;
  background: var(--white);
}

.service-details-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-detail-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.detail-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.service-detail-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.service-detail-card p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works-section {
  background: var(--gray-50);
  padding: 4rem 0;
}

.how-it-works-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.step-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Service CTA Section */
.service-cta-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0;
  margin-top: 3rem;
}

.service-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.service-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.service-cta-content p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .page-hero-content h1 {
    font-size: 2.5rem;
  }

  .service-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 0;
  }

  .page-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    gap: 1.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .filter-section {
    position: relative;
    top: 0;
  }

  .filter-controls {
    flex-direction: column;
  }

  .search-input,
  .category-select {
    width: 100%;
    max-width: none;
  }

  .section-header h2,
  .why-choose-section h2,
  .service-details-section h2,
  .how-it-works-section h2,
  .service-cta-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }

  .why-choose-grid,
  .service-details-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.625rem 0.75rem;
  }

  .logo {
    width: 120px;
    height: auto;
  }

  .call-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
  }

  .call-btn svg {
    width: 18px;
    height: 18px;
  }

  .menu-toggle {
    padding: 0.4rem;
  }

  .menu-toggle svg {
    width: 22px;
    height: 22px;
  }

  .hero-content h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    line-height: 1.45;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .stat-icon {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .service-card img {
    height: 180px;
  }
  
  .service-card h3 {
    font-size: 1.125rem;
    margin: 1.5rem 1rem 0.75rem;
    line-height: 1.5;
  }
  
  .service-card p {
    font-size: 0.9rem;
    margin: 0 1rem 1rem;
  }

  .page-hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.45;
  }

  .section-header p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

/* About Page Specific Styles */
.about-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 4rem 0;
  background: var(--white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-card,
.vision-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.mv-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.mission-card h2,
.vision-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gray-900);
}

.mission-card p,
.vision-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

/* Our Story Section */
.our-story-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

.story-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

/* Core Values Section */
.values-section {
  padding: 5rem 0;
  background: var(--white);
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--gray-50);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* Offerings Section */
.offerings-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

.offerings-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.offering-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.offering-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offering-card:hover img {
  transform: scale(1.05);
}

.offering-content {
  padding: 2rem;
}

.offering-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.offering-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.offering-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offering-features li {
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Achievements Section */
.achievements-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.achievements-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--white);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
}

.achievement-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.achievement-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.achievement-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Why Choose About Section */
.why-choose-about-section {
  padding: 5rem 0;
  background: var(--white);
}

.why-choose-about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.why-choose-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-about-card {
  background: var(--gray-50);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

.why-about-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.why-about-number {
  position: absolute;
  top: -20px;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.why-about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: var(--gray-900);
}

.why-about-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* About CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0;
}

.about-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.about-cta-content p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mission-card,
  .vision-card {
    padding: 2rem 1.5rem;
  }

  .mission-card h2,
  .vision-card h2 {
    font-size: 1.5rem;
  }

  .our-story-section {
    padding: 3rem 0;
  }

  .story-text h2 {
    font-size: 2rem;
  }

  .story-text p {
    font-size: 1rem;
  }

  .values-section h2,
  .offerings-section h2,
  .achievements-section h2,
  .why-choose-about-section h2,
  .about-cta-content h2 {
    font-size: 1.875rem;
  }

  .values-grid,
  .achievements-grid,
  .why-choose-about-grid {
    grid-template-columns: 1fr;
  }

  .value-icon {
    font-size: 2.5rem;
  }

  .achievement-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .mv-icon {
    font-size: 3rem;
  }

  .mission-card h2,
  .vision-card h2 {
    font-size: 1.25rem;
  }

  .mission-card p,
  .vision-card p {
    font-size: 0.95rem;
  }

  .story-text h2,
  .values-section h2,
  .offerings-section h2,
  .achievements-section h2,
  .why-choose-about-section h2,
  .about-cta-content h2 {
    font-size: 1.5rem;
  }

  .offering-card img {
    height: 200px;
  }

  .offering-content {
    padding: 1.5rem;
  }

  .why-about-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: -15px;
  }
}

/* Contact Page Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Hero section */
  .hero {
    padding: 2rem 0 !important;
  }

  .hero h2 {
    font-size: 1.875rem !important;
  }

  .hero p {
    font-size: 1rem !important;
  }

  /* Contact info cards */
  .contact-info-card {
    min-width: 100% !important;
  }

  /* Contact form grid - make single column */
  .contact-form-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Contact info cards grid */
  .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Contact form and info grid */
  .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Reduce padding on cards */
  div[style*="padding: 2rem"] {
    padding: 1.5rem !important;
  }

  div[style*="padding: 2.5rem"] {
    padding: 1.5rem !important;
  }

  /* Icon sizes */
  div[style*="width: 70px; height: 70px"] {
    width: 60px !important;
    height: 60px !important;
  }

  div[style*="width: 70px; height: 70px"] svg {
    width: 28px !important;
    height: 28px !important;
  }

  div[style*="width: 50px; height: 50px"] {
    width: 45px !important;
    height: 45px !important;
  }

  div[style*="width: 50px; height: 50px"] svg {
    width: 20px !important;
    height: 20px !important;
  }

  /* Headings */
  h3[style*="font-size: 1.75rem"] {
    font-size: 1.5rem !important;
  }

  h3[style*="font-size: 1.25rem"] {
    font-size: 1.125rem !important;
  }

  h4[style*="font-size: 1.125rem"] {
    font-size: 1rem !important;
  }

  h4[style*="font-size: 1.25rem"] {
    font-size: 1.125rem !important;
  }

  /* Quick stats grid */
  div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* Map iframe */
  iframe {
    height: 300px !important;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .cta-buttons a {
    width: 100% !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  /* Container padding */
  .container {
    padding: 0 1rem !important;
  }

  /* Hero section */
  .hero {
    padding: 1.5rem 0 !important;
  }

  .hero h2 {
    font-size: 1.5rem !important;
  }

  .hero p {
    font-size: 0.95rem !important;
  }

  /* Further reduce card padding */
  div[style*="padding: 2rem"],
  div[style*="padding: 2.5rem"],
  div[style*="padding: 1.5rem"] {
    padding: 1.25rem !important;
  }

  /* Smaller icons */
  div[style*="width: 70px; height: 70px"],
  div[style*="width: 60px; height: 60px"] {
    width: 50px !important;
    height: 50px !important;
  }

  div[style*="width: 70px; height: 70px"] svg,
  div[style*="width: 60px; height: 60px"] svg {
    width: 24px !important;
    height: 24px !important;
  }

  div[style*="width: 50px; height: 50px"],
  div[style*="width: 45px; height: 45px"] {
    width: 40px !important;
    height: 40px !important;
  }

  div[style*="width: 50px; height: 50px"] svg,
  div[style*="width: 45px; height: 45px"] svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* Headings */
  h2[style*="font-size: 2.5rem"] {
    font-size: 1.5rem !important;
  }

  h3[style*="font-size: 1.75rem"],
  h3[style*="font-size: 1.5rem"] {
    font-size: 1.25rem !important;
  }

  h3[style*="font-size: 1.25rem"],
  h3[style*="font-size: 1.125rem"] {
    font-size: 1.05rem !important;
  }

  h4[style*="font-size: 1.125rem"],
  h4[style*="font-size: 1rem"] {
    font-size: 0.95rem !important;
  }

  /* Font sizes */
  p[style*="font-size: 1.125rem"] {
    font-size: 0.95rem !important;
  }

  a[style*="font-size: 1.125rem"] {
    font-size: 0.95rem !important;
  }

  a[style*="font-size: 1rem"] {
    font-size: 0.9rem !important;
    word-break: break-all !important;
  }

  /* Form inputs */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 0.75rem !important;
    font-size: 0.95rem !important;
  }

  /* Buttons */
  button[style*="padding: 1rem 2rem"] {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  /* Quick stats */
  div[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }

  div[style*="font-size: 0.9rem"] {
    font-size: 0.85rem !important;
  }

  /* Map */
  iframe {
    height: 250px !important;
  }

  /* CTA section */
  .cta-content h3 {
    font-size: 1.25rem !important;
  }

  .cta-content p {
    font-size: 0.95rem !important;
  }

  /* Footer adjustments for contact page */
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}
