/*
Theme Name: Hospital Landing Theme
Theme URI: https://yoursite.com
Author: Your Name
Description: A professional hospital landing page WordPress theme with orange color scheme, specialties database, stats bar, testimonials and more.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: hospital-theme
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --orange:       #F47B20;
  --orange-dark:  #D9660F;
  --orange-light: #FFF0E5;
  --white:        #ffffff;
  --dark:         #1a1a2e;
  --gray:         #555555;
  --light-gray:   #f5f5f5;
  --border:       #e0e0e0;
  --font:         'Poppins', sans-serif;
  --container:    1150px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font); }

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,123,32,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--orange-light);
}

/* ===========================
   SECTION TITLES
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}
.section-header h2 span { color: var(--orange); }
.section-header p {
  max-width: 580px;
  margin: 14px auto 0;
  color: var(--gray);
  font-size: 15px;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--orange); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===========================
   HEADER
=========================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: 20px;
}

/* --- LOGO --- */
.site-logo { flex-shrink: 0; }
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
pointer-events: none;   /* disables click */
  cursor: default;        /* removes hand cursor */
}

/* Custom uploaded logo image — constrained to header height */
.site-logo-img {
  height: 62px;          /* Fixed display height */
  width: auto;           /* Maintain aspect ratio */
  max-width: 260px;      /* Never wider than this */
  object-fit: contain;
  display: block;
}

/* Text fallback logo */
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* --- HEADER RIGHT CTA --- */
.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

/* Phone block — matches your screenshot style */
.header-phone-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  transition: color 0.2s;
}
.header-phone-block:hover { color: var(--orange); }
.phone-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.header-phone-block:hover .phone-icon-wrap { background: var(--orange); }
.phone-icon-wrap svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  transition: color 0.2s;
}
.header-phone-block:hover .phone-icon-wrap svg { color: var(--white); }
.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.phone-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.phone-number {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.header-phone-block:hover .phone-number { color: var(--orange); }

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,123,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,123,32,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--orange); }
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 14px; height: 14px; color: var(--orange); }

/* Hero Form */
.hero-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-form-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.hero-form-box p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 22px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,123,32,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; padding: 14px; font-size: 15px; }
.form-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
}
.form-note svg { width: 12px; height: 12px; color: #28a745; vertical-align: middle; margin-right: 3px; }

/* ===========================
   STATS BAR
=========================== */
.stats-section {
  background: var(--orange);
  width: 100%;
}
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 32px 20px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 55px;
  width: 1px;
  background: rgba(255,255,255,0.3);
}
.stat-icon-wrap {
  position: relative;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}
.stat-icon-wrap .circle-bg {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  top: 5px;
  left: 5px;
}
.stat-icon-wrap svg {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
}
.stat-text .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-text .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin-top: 4px;
}

/* ===========================
   OUR SPECIALTIES
=========================== */
.specialties-section {
  padding: 80px 0 20px 0;
  background: var(--white);
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
}
.specialty-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.specialty-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(244,123,32,0.15);
}
.specialty-icon {
  width: 72px;
  height: 72px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s;
}
.specialty-card:hover .specialty-icon {
  background: var(--orange);
}
.specialty-icon svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
  transition: color 0.3s;
}
.specialty-card:hover .specialty-icon svg { color: var(--white); }
.specialty-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.specialty-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===========================
   SERVICES
=========================== */
.services-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--orange);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.service-icon {
  width: 54px;
  height: 54px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--orange); }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-card p { font-size: 13px; color: var(--gray); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}
/* .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
} */

/* Give Trustindex room to breathe */
.testimonials-grid {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Force Trustindex inner grid to 3 columns */
.trustindex-widget .ti-widget-reviews {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

/* Responsive - 1 column on mobile */
@media (max-width: 768px) {
  .trustindex-widget .ti-widget-reviews {
    grid-template-columns: 1fr !important;
  }
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-info h4 { font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-info span { font-size: 12px; color: var(--gray); }
.testi-stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.testimonial-card p { font-size: 13px; color: var(--gray); font-style: italic; line-height: 1.7; }
.testi-google {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}
.testi-google svg { width: 16px; height: 16px; }

/* ===========================
   CTA BANNER
=========================== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 30px;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-col p { font-size: 13px; line-height: 1.8; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--orange); }

/* ===========================
   STICKY CALL BUTTON
=========================== */
.sticky-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(244,123,32,0.5);
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: transform 0.2s;
}
.sticky-call:hover { transform: scale(1.05); color: var(--white); }
.sticky-call svg { width: 18px; height: 18px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(244,123,32,0.5); }
  50% { box-shadow: 0 6px 32px rgba(244,123,32,0.8); }
}

/* ===========================
   NOTICE / ADMIN BAR OFFSET
=========================== */
.admin-bar .site-header { top: 32px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-box { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .phone-label { display: none; }
}
@media (max-width: 680px) {
  .site-header .container { height: 66px; }
  .site-logo-img { height: 48px; max-width: 180px; }
  .hero-content h1 { font-size: 1.9rem; }
  .stats-bar { flex-direction: column; gap: 24px; }
  .stat-item:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-right { display: none; }
  .header-phone-block .phone-text { display: none; }
  .phone-icon-wrap { width: 36px; height: 36px; }
  .header-cta { gap: 10px; }
}

/* ===========================
   HERO EXTRAS
=========================== */
.hero-tag {
  display: inline-block;
  background: rgba(244,123,32,0.2);
  border: 1px solid rgba(244,123,32,0.4);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.form-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.req { color: #e74c3c; }

/* ===========================
   WHY ONUS SECTION
=========================== */
.why-section {
  padding: 80px 0 20px 0;
  background: var(--light-gray);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}
.why-card:hover {
  border-left-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ===========================
   ROBOTIC SURGERY SECTION
=========================== */
.robotic-section {
  padding: 80px 0;
  background: var(--dark);
}
.robotic-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.robotic-content .tag {
  background: rgba(244,123,32,0.2);
  color: var(--orange);
  border: 1px solid rgba(244,123,32,0.3);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.robotic-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.robotic-content p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 20px; line-height: 1.7; }
.robotic-points { list-style: none; }
.robotic-points li {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.robotic-points li:last-child { border-bottom: none; }

/* Doctor Card */
.doctor-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 30px 24px;
  backdrop-filter: blur(10px);
}
.doctor-avatar {
  width: 70px;
  height: 70px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.doctor-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.doctor-info > span { font-size: 13px; color: var(--orange); font-weight: 500; }
.doctor-tags { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.dtag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--orange);
}

/* ===========================
   LOCATIONS SECTION
=========================== */
.locations-section {
  padding: 80px 0;
  background: var(--white);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.location-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(244,123,32,0.12);
  transform: translateY(-4px);
}
.location-card.featured {
  border-color: var(--orange);
  background: var(--orange-light);
}
.loc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.loc-icon { font-size: 2rem; margin-bottom: 12px; }
.location-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.location-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===========================
   RESPONSIVE EXTRAS
=========================== */
@media (max-width: 900px) {
  .robotic-inner { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
}
