/* CSS Variables & Design Tokens */
:root {
  --primary: #0f2c59;
  --primary-light: #1e40af;
  --secondary: #0d9488;
  --secondary-light: #14b8a6;
  --accent: #d97706;
  --accent-light: #f59e0b;
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #334155;
  --text-heading: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 44, 89, 0.08), 0 8px 10px -6px rgba(15, 44, 89, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 44, 89, 0.12), 0 10px 15px -5px rgba(15, 44, 89, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--light-bg);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Top Banner & Multi-language selector */
.top-bar {
  background: var(--dark);
  color: #94a3b8;
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}

.top-info-item i {
  color: var(--secondary-light);
}

.lang-selector-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-buttons {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px;
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #cbd5e1;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--secondary);
  color: #ffffff;
}

/* Google Translate iframe & standard banner override */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

body {
  top: 0px !important;
}

#google_translate_element {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Navigation Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1e3a8a);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 44, 89, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 44, 89, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary);
  padding: 4px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 50%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.shape-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 44, 89, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 50px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary), #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 32px;
  max-width: 620px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(15, 44, 89, 0.1);
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-card-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
}

.hero-image-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-overlay-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.badge-text h4 {
  font-size: 0.95rem;
  color: var(--dark);
}

.badge-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Compliance Banner */
.compliance-bar {
  background: var(--primary);
  color: #ffffff;
  padding: 24px 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}

.compliance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.compliance-item i {
  font-size: 1.4rem;
  color: var(--secondary-light);
}

/* Section Styling */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.subtitle {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* About Us Section Styles */
.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #f8fafc;
}

.about-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-badge-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--primary);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 300px;
}

.about-badge-card i {
  font-size: 2rem;
  color: var(--secondary-light);
}

.about-badge-card h4 {
  font-size: 1rem;
  color: #ffffff;
}

.about-badge-card p {
  font-size: 0.78rem;
  color: #cbd5e1;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-text {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.7;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature-item h5 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-quote {
  background: #f0fdfa;
  border-left: 4px solid var(--secondary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  position: relative;
}

.about-quote i {
  color: var(--secondary-light);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.about-quote p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(13, 148, 136, 0.08);
  color: var(--secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--secondary);
}

/* Process Section */
.process-bg {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.process-card {
  background: var(--light-bg);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  position: relative;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.process-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(15, 44, 89, 0.08);
}

.process-card h4 {
  font-size: 1.1rem;
  margin: 16px 0 10px;
  color: var(--primary);
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hospital Partners Showcase */
.partners-section {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.partner-info h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.partner-info p {
  color: var(--text-main);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.accreditation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.tag {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
}

.partner-image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Dedicated Free Consultation Box (Price Estimator Removed) */
.consultation-box-wrapper {
  background: var(--dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
}

.consultation-box-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.inquiry-info-panel h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.inquiry-info-panel p {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.inquiry-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-item i {
  width: 44px;
  height: 44px;
  background: rgba(13, 148, 136, 0.2);
  color: var(--secondary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.highlight-item p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.inquiry-form-card {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
}

.inquiry-input {
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}

.inquiry-input:focus {
  border-color: var(--secondary);
  background: #ffffff;
}

/* Contact & Office Map Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* Floating WhatsApp Quick Action Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b30;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* COMPLETE MOBILE RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {

  .hero-grid,
  .about-grid,
  .partners-grid,
  .consultation-box-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-badge-card {
    right: 10px;
    bottom: -15px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 8px 0;
  }

  .top-bar-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .top-info {
    gap: 6px;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .top-info-item {
    font-size: 0.72rem;
    gap: 5px;
    justify-content: center;
  }

  .top-info-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
  }

  .lang-selector-wrapper {
    width: 100%;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .lang-selector-wrapper > span {
    font-size: 0.75rem;
  }

  .lang-buttons {
    gap: 2px;
    padding: 2px;
    justify-content: center;
  }

  .lang-btn {
    padding: 3px 7px;
    font-size: 0.7rem;
    gap: 2px;
  }

  .navbar {
    height: 70px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--secondary);
    display: none;
    z-index: 9999;
  }

  .nav-menu.mobile-active {
    display: flex;
  }

  .nav-cta-btn {
    display: none;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .hero-image-card img {
    height: 320px;
  }

  .hero-overlay-badge {
    position: static;
    margin: 15px auto 0;
    max-width: 100%;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .about-image-card img {
    height: 300px;
  }

  .about-badge-card {
    position: static;
    margin-top: 15px;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .consultation-box-wrapper {
    padding: 30px 20px;
  }

  .inquiry-form-card {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}