:root {
  --green: #014421;
  --dark: #0b3a66;
  --accent: #d72b2b;
  --card: #0f2b5a;
  --light: #f7f7f7;
  --gold: #ffb74d;
  --text-light: #e0e0e0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans Oriya", "Lohit Oriya", system-ui, Arial, sans-serif;
  background: linear-gradient(180deg, #0f2448 0%, #061833 100%);
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header Styles */
header {
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 1px;
}

.brand p {
  margin: 0;
  font-size: 12px;
  opacity: 0.95;
}

.top-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  background: var(--dark);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn.call {
  background: linear-gradient(90deg, #e23a3a, #ff6b6b);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
  z-index: 1001;
}

.mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Navigation - Default Desktop Styles */
nav {
  background: var(--dark);
  padding: 10px 18px;
  position: sticky;
  top: 88px;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  padding: 5px 10px;
  border-radius: 5px;
}

nav ul li a:hover {
  color: var(--green);
  background: rgba(255, 255, 255, 0.1);
}

/* Slider Section */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  height: 500px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.slide-content {
  background: rgba(11, 58, 102, 0.85);
  padding: 30px;
  border-radius: 15px;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--gold);
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--green);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--green);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* Main Content */
.main-content {
  width: 100%;
  padding: 0;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  width: 100%;
}

.hero-left {
  background: linear-gradient(180deg, #072a5a 0%, #0b3a66 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guarantee {
  background: var(--green);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 800;
  margin-bottom: 12px;
}

.clinic-name {
  font-size: 44px;
  margin: 6px 0;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
  letter-spacing: 2px;
}

.hero-desc {
  color: #fff;
  opacity: 0.95;
  line-height: 1.6;
  margin-top: 10px;
  font-size: 18px;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
  gap: 15px;
  margin-top: 25px;
}

.services_grid>.card {
  background: linear-gradient(180deg, #0f3b6a, #0a2b54);
  border-radius: 10px;
  padding: 20px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--green);
}

.services_grid>.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.card h3 {
  margin: 0;
  font-size: 20px;
  color: #ffd;
}

.card p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #eee;
  opacity: 0.9;
}

.hero-right {
  background: linear-gradient(180deg, #0a2b54, #072a5a);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.info {
  background: var(--card);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.info h4 {
  margin: 0;
  font-size: 20px;
  color: var(--gold);
}

.info p {
  margin: 0;
  opacity: 0.95;
}

.contact-card {
  background: linear-gradient(180deg, #ffd54d, #ffb74d);
  color: #111;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.phone {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
}

.addr {
  font-size: 16px;
  opacity: 0.95;
  margin-top: 10px;
}

.map {
  margin-top: 15px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid rgba(0, 0, 0, 0.08);
}

/* Section Blocks */
.section-block {
  width: 100%;
  padding: 60px 40px;
}

.section-block:nth-child(even) {
  background: linear-gradient(180deg, #08224a, #05203f);
}

.section-block:nth-child(odd) {
  background: linear-gradient(180deg, #0a2b54, #072a5a);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* About Section */
#about {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 60px 20px;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text .lead-text {
  font-size: 18px;
  line-height: 1.8;
  color: #e8f4f8;
  margin: 0 0 30px 0;
  text-align: justify;
}

.mission{
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  border-left: 4px solid #4CAF50;
  text-align: center;
}

.mission h4 {
  color: #03fa03;
  margin: 0 0 12px 0;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mission p{
  color: #e0e0e0;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

/* Services Section */
.services-section {
  margin-top: 20px;
}

.services-title {
  color: #fff;
  margin: 0 0 25px 0;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.services-columns-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.services-column {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.column-title {
  color: #ffb74d;
  margin: 0 0 20px 0;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.services-grids{
  display: flex;
  justify-content: space-evenly;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 65px;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-item i {
  color: #4CAF50;
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.service-item span {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  word-wrap: break-word;
  flex: 1;
}

/* About Sidebar */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Doctor Profile */
.doctor-profile {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.doctor-image {
  position: relative;
  margin-bottom: 20px;
}

.doctor-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #4CAF50;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.doctor-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF9800, #FF5722);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.doctor-info h3 {
  color: #fff;
  margin: 25px 0 8px 0;
  font-size: 20px;
}

.specialization {
  color: #4CAF50;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.doctor-qualifications {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qualification {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e0e0e0;
  font-size: 14px;
}

.qualification i {
  color: #FFD700;
  width: 16px;
}

/* Contact Actions */
.contact-actions {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-actions h4 {
  color: #fff;
  margin: 0 0 12px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-actions p {
  color: #e0e0e0;
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.5;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}

.call-btn,
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.call-btn {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.call-btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.call-btn i,
.whatsapp-btn i {
  font-size: 24px;
  width: 30px;
}

.btn-main {
  display: block;
  font-weight: 600;
  font-size: 16px;
}

.btn-sub {
  display: block;
  font-size: 13px;
  opacity: 0.9;
  margin-top: 4px;
}

.emergency-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD700;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.emergency-note i {
  font-size: 16px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  border-left: 4px solid var(--green);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 16px;
}

.testimonial-author {
  font-weight: bold;
  text-align: right;
  color: var(--gold);
}

/* Video Section */
#videos {
  background: linear-gradient(135deg, #1a3a5f 0%, #2c5c8a 100%);
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 40px;
  font-size: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.video-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  background: #000;
  overflow: hidden;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  transition: opacity 0.3s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 15px;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-container:hover .video-overlay {
  opacity: 1;
}

.play-pause-btn,
.unmute-btn {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease, transform 0.2s ease;
}

.play-pause-btn:hover,
.unmute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.video-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.medicine-badge {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}

.patient-badge {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
  border: 1px solid #2196F3;
}

.news-badge {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 1px solid #F44336;
}

.video-info h3 {
  color: #fff;
  margin: 0 0 15px 0;
  font-size: 18px;
  line-height: 1.4;
  min-height: 50px;
}

.video-info p {
  color: #e0e0e0;
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.video-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-features li {
  color: #e0e0e0;
  margin-bottom: 8px;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
}

.video-features li i {
  color: #4CAF50;
  margin-right: 8px;
  margin-top: 2px;
  font-size: 12px;
}

.patient-quote {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #2196F3;
  margin-top: 10px;
}

.patient-quote i {
  color: #2196F3;
  font-size: 16px;
  margin-right: 5px;
}

.patient-quote p {
  font-style: italic;
  margin: 0 !important;
  color: #fff !important;
}

.news-highlights {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}

.news-highlights h4 {
  color: #fff;
  margin: 0 0 8px 0;
  font-size: 14px;
}

.news-highlights p {
  color: #e0e0e0 !important;
  margin: 0 !important;
  font-style: italic;
}

.video-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.video-cta h3 {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 24px;
}

.video-cta p {
  color: #e0e0e0;
  margin: 0 0 20px 0;
  font-size: 16px;
}

/* FAQ */
.faq-container {
  display: flex;
}

.faq-content {
  flex: 1;
}

.faq-image {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.faq-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  display: none;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

.faq-answer.active {
  display: block;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--dark);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a:hover {
  background: var(--green);
  transform: translateY(-3px);
}

footer {
  padding: 40px;
  text-align: center;
  color: #ddd;
  opacity: 0.95;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--green);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: left;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
}

.footer-section ul li a:hover {
  color: var(--green);
}

.copyright {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* WhatsApp Submit Button */
.whatsapp-submit {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: white !important;
  border: none !important;
  margin-left: 10px;
}

.whatsapp-submit:hover {
  background: linear-gradient(135deg, #128C7E, #25D366) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* ========== MOBILE RESPONSIVE STYLES ========== */

/* Tablet and below */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-columns-container {
    gap: 20px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  /* Show mobile toggle button */
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide top CTA buttons on mobile */
  .top-cta {
    display: none;
  }

  /* Mobile Navigation Styles */
  nav {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
  }

  /* Show navigation when active */
  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    width: 100%;
    margin: 0;
  }

  nav ul li a {
    display: block;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
  }

  /* Header adjustments */
  header {
    padding: 10px 15px;
  }

  .brand h1 {
    font-size: 18px;
  }

  .brand p {
    font-size: 11px;
  }

  .services-columns-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .hero {
    grid-template-columns: 1fr;
  }
  
  .slider-container {
    height: 400px;
  }

  .slide-content {
    padding: 20px;
    margin: 0 15px;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .section-block {
    padding: 40px 20px;
  }

  .hero-left,
  .hero-right {
    padding: 30px 20px;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .form-actions {
    flex-direction: column;
  }

  .whatsapp-submit {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  nav {
    top: 80px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .clinic-name {
    font-size: 32px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .slider-container {
    height: 350px;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .section-title {
    font-size: 26px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .brand h1 {
    font-size: 16px;
  }
}