.preloader,
body {
  background: var(--white);
}
.loader-text,
.logo i {
  color: var(--primary);
}
.logo,
.nav-links,
.navbar,
.preloader {
  display: flex;
}
.preloader.hide,
.scroll-top {
  opacity: 0;
  visibility: hidden;
}
.cta,
.feature-box,
.footer-bottom,
.loader-wrapper,
.testimonial-card,
.tryon-image {
  text-align: center;
}
.approach-card,
.category-card,
.cta,
.doctor-img-wrapper,
.emergency-hero,
.hero,
.lens-card,
.service-card,
.service-hero,
.tech-card,
.type-card {
  overflow: hidden;
}
.logo,
.stat-number {
  -webkit-text-fill-color: transparent;
}
.faq-search,
.form-control,
.form-input,
.form-textarea,
.newsletter-input,
.search-input,
body {
  font-family: Outfit, sans-serif;
}
.btn,
.category-card,
.faq-question,
.menu-toggle,
.scroll-top,
.search-button {
  cursor: pointer;
}
:root {
  --primary: #2d5a7b;
  --secondary: #48cfae;
  --accent: #f39c6b;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --gradient: linear-gradient(135deg, #2d5a7b 0%, #48cfae 100%);
  --shadow-sm: 0 2px 10px rgba(45, 90, 123, 0.08);
  --shadow-md: 0 8px 30px rgba(45, 90, 123, 0.12);
  --shadow-lg: 0 15px 50px rgba(45, 90, 123, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--dark);
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}
h1 {
  font-size: clamp(2.2rem, 6vw, 2.2rem);
}
h2 {
  font-size: clamp(1.8rem, 5vw, 1.2rem);
}
h3 {
  font-size: clamp(1.2rem, 3vw, 0.8rem);
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}
.doctor-social,
.navbar,
footer::before {
  left: 50%;
  transform: translateX(-50%);
}
.loader-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
}
.loader-circle::after,
.loader-circle::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
}
.loader-circle::before {
  width: 100%;
  height: 100%;
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  animation: 1s linear infinite rotate;
}
.loader-circle::after {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-bottom-color: var(--secondary);
  border-left-color: var(--secondary);
  animation: 0.8s linear infinite reverse rotate;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loader-text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.navbar {
  position: fixed;
  top: 20px;
  width: 90%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.2rem 2rem;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: 0.3s;
}
.navbar.scrolled {
  top: 10px;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-lg);
}
.recent-post:last-child,
.related-post:last-child,
.toc-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo i {
  font-size: 1.8rem;
  -webkit-text-fill-color: var(--primary);
}
.btn,
.nav-links a {
  font-size: 0.95rem;
  text-decoration: none;
}
.nav-links {
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #3d9c98;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}
.blog-card h3 a:hover,
.categories-list a:hover,
.faq-question:hover,
.nav-links a:hover,
.recent-post-content h4 a:hover,
.related-post-content h4 a:hover,
.stat-number,
.timeline-content h4,
.toc-list a:hover {
  color: var(--primary);
}
.nav-links a:hover::after {
  width: 100%;
}
.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  border: none;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(72, 207, 174, 0.3);
  color: #fff !important;    margin-bottom: 10px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 207, 174, 0.4);
}
.btn-outline {
  background: 0 0;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover,
.social-icon:hover {
  background: var(--primary);
  color: var(--white);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: 0 0;
  border: none;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: 0.3s;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 60px;
  background: linear-gradient(135deg, #f5f7fa 0, #c3cfe2 100%);
  position: relative;
}
.blog-detail-hero::before,
.blog-hero::before,
.faq-hero::before,
.hero::before,
.insurance-hero::before,
.policy-hero::before,
.service-hero::before,
.terms-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(72, 207, 174, 0.1) 0,
    transparent 70%
  );
  pointer-events: none;
}
.emergency-hero-container,
.hero-container,
.service-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.emergency-hero-content,
.hero-content,
.service-hero-content {
  z-index: 1;
}
.blog-detail-badge,
.blog-hero-badge,
.faq-hero-badge,
.hero-badge,
.insurance-hero-badge,
.policy-hero-badge,
.service-hero-badge,
.terms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(72, 207, 174, 0.15);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.blog-detail-meta-item i,
.candidacy-box li i,
.footer-links a:hover,
.good h3 i,
.hero-badge i,
.highlight-box h4 i,
.lens-features li i,
.meta-item i,
.policy-note h4 i,
.tech-benefits li i,
.terms-note h4 i,
.type-features li i {
  color: var(--secondary);
}
.blog-hero h1,
.emergency-hero h1,
.faq-hero h1,
.hero h1,
.insurance-hero h1,
.policy-hero h1,
.service-hero h1,
.terms-hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.blog-hero h1 .highlight,
.faq-hero h1 .highlight,
.hero h1 .highlight,
.insurance-hero h1 .highlight,
.policy-hero h1 .highlight,
.service-hero h1 .highlight,
.terms-hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.emergency-hero-text,
.hero-text,
.service-hero-text {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons {
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-card,
.hero-card-icon {
  display: flex;
  align-items: center;
}
.cta-content,
.hero-image {
  position: relative;
  z-index: 1;
}
.hero-img-main {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-card {
  position: absolute;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  gap: 1rem;
  animation: 3s ease-in-out infinite float;
}
.about-images,
.search-form,
.service-card {
  position: relative;
}
.hero-card.card-1 {
  top: 10%;
  left: -50px;
  animation-delay: 0s;
  z-index: 2;
}
.hero-card.card-2 {
  bottom: 15%;
  right: -40px;
  animation-delay: 1s;
  z-index: 2;
}
.hero-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 15px;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.hero-card-info h4 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}
.author-details p,
.author-info p,
.category-count,
.doctor-info p,
.hero-card-info p {
  color: var(--gray);
  font-size: 0.9rem;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.features {
  padding: 60px 2rem;
  background: var(--white);
}
.doctors-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-box {
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  transition: 0.3s;
  border: 2px solid transparent;
}
.feature-box:hover {
  background: var(--white);
  border-color: var(--secondary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  transition: transform 0.3s;
}
.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.approach-card p,
.bring-content p,
.feature-box p,
.importance-card p,
.procedure-step p,
.process-step p,
.stat-label,
.tech-card p,
.timeline-content p {
  color: var(--gray);
  font-size: 0.95rem;
}
.services {
  padding: 100px 2rem;
  background: linear-gradient(180deg, var(--white) 0, var(--light) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 25px;
  box-shadow: var(--shadow-sm);
  transition: 0.4s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.blog-card:hover,
.doctor-card:hover,
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.lens-features,
.service-content,
.type-features,
.urgency-content {
  padding: 2rem;
}
.service-icon-badge {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.category-content h4,
.service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.blog-excerpt,
.category-content p,
.service-content p,
.tech-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.read-more,
.service-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.read-more:hover,
.service-link:hover {
  gap: 1rem;
}
.about,
.approach,
.blog-content,
.brands,
.conditions,
.faq,
.lens-options,
.lens-tech,
.procedure-timeline,
.recovery,
.service-details,
.technology,
.testimonials,
.what-to-bring {
  padding: 100px 2rem;
  background: var(--white);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-main,
.emergency-hero-image img,
.service-hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 50%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}
.about-content h2,
.article-content p,
.form-group {
  margin-bottom: 1.5rem;
}
.about-text {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.stat-box {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--secondary);
}
.candidacy,
.categories,
.contact,
.doctors,
.emergency-process,
.frame-guide,
.importance,
.lasik-types,
.milestones,
.procedure,
.process,
.results,
.urgency-levels,
.virtual-tryon {
  padding: 100px 2rem;
  background: var(--light);
}
.doctor-card,
.guide-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  text-align: center;
}
.doctor-img-wrapper {
  position: relative;
}
.doctor-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s;
}
.doctor-card:hover .doctor-img {
  transform: scale(1.1);
}
.doctor-social {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.doctor-card:hover .doctor-social {
  opacity: 1;
}
.social-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
}
.doctor-info,
.guide-content {
  padding: 1.5rem;
}
.doctor-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.doctor-specialty {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.faq-container,
.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--light);
  padding: 3rem;
  border-radius: 25px;
  position: relative;
  margin: 2rem 0;
}
.contact-info,
.quote-icon {
  background: var(--gradient);
}
.author-img,
.quote-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 2rem;
}
.testimonial-text {
  font-size: 1.2rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.testimonial-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.author-img {
  object-fit: cover;
  border: 3px solid var(--secondary);
}
.author-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info {
  padding: 3rem;
  border-radius: 25px;
  color: var(--white);
}
.contact-info h3 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-icon {
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-details h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.contact-details a,
.contact-details p {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}
.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}
.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: 0.3s;
}
.faq-search:focus,
.form-control:focus,
.form-input:focus,
.form-textarea:focus,
.newsletter-input:focus,
.search-input:focus {
  outline: 0;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(72, 207, 174, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
footer {
  background: linear-gradient(180deg, #0f172a 0, #020617 100%);
  color: var(--white);
  padding: 80px 2rem 30px;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 4px;
  background: var(--secondary);
  border-radius: 10px;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}
.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}
.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.candidacy-box ul,
.categories-list,
.footer-links ul,
.tech-benefits,
.toc-list,
.urgency-content ul {
  list-style: none;
}
.article-content li,
.footer-links li {
  margin-bottom: 0.8rem;
}
.cta h2,
.faq-item {
  margin-bottom: 1rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.faq-question .icon,
.faq-question i {
  transition: transform 0.3s;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  transition: 0.3s;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-5px);
}
@media (max-width: 1200px) {
  .doctors-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .navbar {
    width: 95%;
    padding: 1rem 1.5rem;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.3s;
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .menu-toggle {
    display: flex;
  }
  .about-container,
  .contact-container,
  .hero-container {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .doctors-grid,
  .features-grid,
  .footer-content,
  .form-row,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
}
.service-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.faq-item {
  background: var(--light);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--gray);
  line-height: 1.7;
}
.cta,
.cta h2 {
  color: var(--white);
}
.faq-item.active .faq-question .icon,
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.cta {
  padding: 100px 2rem;
  background: var(--gradient);
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0,
    transparent 70%
  );
  animation: 15s ease-in-out infinite pulse;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}
.lens-card,
.procedure-step,
.process-step {
  border-radius: 20px;
  transition: 0.3s;
  text-align: center;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.comparison-table tr:nth-child(2n),
.condition-card,
.data-table tr:nth-child(2n),
.legal-table tr:nth-child(2n),
.technology {
  background: var(--light);
}
.approach-grid,
.categories-grid,
.importance-grid,
.lens-grid,
.technology-grid,
.types-grid,
.urgency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.tech-card {
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.tech-card:hover {
  box-shadow: var(--shadow-md);
}
.tech-icon {
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 1.5rem;
}
.tech-card h4 {
  font-size: 1.3rem;
}
.lens-card {
  background: var(--light);
}
.approach-card:hover,
.guide-card:hover,
.importance-card:hover,
.lens-card:hover,
.procedure-step:hover,
.process-step:hover,
.type-card:hover,
.urgency-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.recovery-timeline::before,
.step-number,
.timeline-day,
.timeline-point,
.timeline::before {
  left: 50%;
  transform: translateX(-50%);
}
.lens-header,
.type-header {
  background: var(--gradient);
  color: var(--white);
  padding: 2rem;
}
.lens-header h4,
.type-header h4,
.urgency-header h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.lens-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.lens-period {
  font-size: 0.9rem;
  opacity: 0.9;
}
.lens-features ul,
.type-features ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.benefits-list li,
.candidacy-box li,
.lens-features li,
.type-features li,
.urgency-content li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brands-grid,
.guide-grid,
.procedure-steps,
.process-steps,
.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.procedure-step,
.process-step {
  background: var(--white);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.approach-card h4,
.importance-card h4,
.procedure-step h4,
.process-step h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.recovery-timeline,
.timeline {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}
.recovery-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
}
.timeline-item {
  display: flex;
  align-items: center;
}
.timeline-content {
  background: var(--light);
  box-shadow: var(--shadow-sm);
}
.timeline-point {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-radius: 50%;
}
.service-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 150px 2rem 60px;
  background: linear-gradient(135deg, #f5f7fa 0, #c3cfe2 100%);
  position: relative;
}
.candidacy-box,
.type-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.type-card {
  transition: 0.3s;
  text-align: center;
}
.tech-highlight,
.tryon-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.candidacy-grid,
.tech-features {
  grid-template-columns: repeat(2, 1fr);
}
.tech-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.details-content h3,
.tech-content h3,
.tryon-content h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.tech-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
}
.benefits-list li i,
.tech-features li i,
.tryon-features li i {
  color: var(--secondary);
  font-size: 1.2rem;
}
.candidacy-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
.candidacy-box {
  padding: 2.5rem;
}
.candidacy-box.good {
  border-top: 5px solid var(--secondary);
}
.candidacy-box.bad {
  border-top: 5px solid var(--accent);
}
.candidacy-box h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.candidacy-box h3 i {
  font-size: 1.5rem;
}
.bad h3 i,
.bad li i,
.condition-card h4 i,
.urgency-content li i {
  color: var(--accent);
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.timeline-content {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  width: 45%;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.approach-icon,
.result-icon {
  width: 70px;
  height: 70px;
  display: flex;
}
.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-radius: 50%;
}
.approach-card::before,
.milestone-timeline::before,
.tech-card::before {
  top: 0;
  position: absolute;
  content: "";
}
.timeline-item:nth-child(odd) .timeline-content::before {
  right: -40px;
  transform: translateY(-50%);
}
.timeline-item:nth-child(2n) .timeline-content::before {
  left: -40px;
  transform: translateY(-50%);
}
.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.timeline-day {
  position: absolute;
  background: var(--gradient);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
}
.approach-card,
.category-card,
.emergency-hero,
.milestone-age,
.milestone-item,
.tech-card,
.urgency-card {
  position: relative;
}
.result-stat {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.bring-card:hover,
.condition-card:hover,
.result-stat:hover,
.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.result-icon {
  background: var(--gradient);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}
.milestone-content h4,
.result-number {
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.result-number {
  font-size: 2.1rem;
  font-weight: 800;
}
.result-label {
  color: var(--gray);
  font-size: 1rem;
}
.symptoms,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.symptom-tag {
  background: rgba(243, 156, 107, 0.1);
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
.milestone-timeline {
  max-width: 1000px;
  margin: 3rem auto 0;
  position: relative;
}
.milestone-timeline::before {
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary);
}
.milestone-item {
  display: flex;
  margin-bottom: 3rem;
}
.milestone-age {
  min-width: 120px;
  padding: 1rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 2rem;
  z-index: 1;
}
.milestone-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}
.approach-card,
.importance-card {
  padding: 2.5rem 2rem;
  transition: 0.3s;
  text-align: center;
}
.milestone-content ul {
  list-style: none;
  margin-top: 1rem;
}
.milestone-content li {
  padding: 0.3rem 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.approach-icon,
.importance-icon {
  border-radius: 20px;
  align-items: center;
  margin: 0 auto 1.5rem;
}
.milestone-content li i {
  color: var(--secondary);
  font-size: 0.9rem;
}
.approach-card {
  background: var(--light);
  border-radius: 20px;
}
.approach-card::before {
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}
.approach-icon {
  background: rgba(72, 207, 174, 0.1);
  justify-content: center;
  color: var(--secondary);
  font-size: 1.8rem;
}
.category-icon,
.importance-icon {
  color: var(--white);
  display: flex;
}
.importance-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.importance-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  justify-content: center;
  font-size: 2rem;
}
.category-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
}
.category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.category-content {
  padding: 2rem;
  text-align: center;
}
.category-icon {
  background: var(--gradient);
  align-items: center;
  justify-content: center;
}
.brand-card {
  background: var(--light);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  min-height: 150px;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.brand-logo {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}
.brand-card:hover .brand-logo {
  filter: grayscale(0%);
  opacity: 1;
}
.brand-name {
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}
.guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.bring-content h4,
.guide-content h4,
.policy-section h2,
.step-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.guide-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}
.face-shape {
  display: inline-block;
  background: rgba(72, 207, 174, 0.1);
  color: var(--secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
}
.tech-features {
  list-style: none;
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
.tech-card {
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
  transition: 0.3s;
}
.tech-card::before {
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient);
}
.tech-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.tech-card h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}
.tech-benefits li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tryon-content p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.benefits-list,
.tryon-features {
  list-style: none;
  margin: 2rem 0;
}
.tryon-features li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tryon-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.emergency-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 150px 2rem 60px;
  background: linear-gradient(135deg, #ffefef 0, #ffeaea 100%);
}
.emergency-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(243, 156, 107, 0.1) 0,
    transparent 70%
  );
  pointer-events: none;
}
.emergency-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(243, 156, 107, 0.15);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.emergency-alert,
.urgency-card.severe .urgency-header {
  background: linear-gradient(135deg, #e74c3c 0, #c0392b 100%);
}
.emergency-hero h1 .highlight {
  color: #e74c3c;
}
.emergency-alert {
  color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}
.blog-card,
.urgency-card {
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.emergency-alert h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.emergency-alert p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}
.emergency-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
  display: block;
}
.section-badge,
.section-title {
  margin-bottom: 1rem;
}
.emergency-hours {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 1rem;
}
.section-badge {
  display: inline-block;
  background: rgba(72, 207, 174, 0.15);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-subtitle {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.details-content p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.urgency-card {
  background: var(--white);
  border-radius: 20px;
  transition: 0.3s;
}
.urgency-header {
  padding: 2rem;
  color: var(--white);
  text-align: center;
}
.urgency-card.urgent .urgency-header {
  background: linear-gradient(135deg, #f39c12 0, #e67e22 100%);
}
.urgency-card.moderate .urgency-header {
  background: linear-gradient(135deg, #3498db 0, #2980b9 100%);
}
.urgency-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.response-time {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--dark);
}
.bring-grid,
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.condition-card {
  background: var(--light);
  border-radius: 15px;
  padding: 2rem;
  transition: 0.3s;
  border-left: 4px solid var(--accent);
}
.condition-card h4 {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.condition-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.first-aid-tips {
  background: rgba(243, 156, 107, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}
.first-aid-tips h5 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.step-icon,
.step-number {
  display: flex;
  align-items: center;
}
.first-aid-tips ul {
  list-style: none;
  padding-left: 0;
}
.first-aid-tips li {
  padding: 0.3rem 0;
  color: var(--gray);
  font-size: 0.9rem;
}
.step-number {
  position: absolute;
  top: -20px;
  background: var(--gradient);
  color: var(--white);
  justify-content: center;
}
.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(72, 207, 174, 0.1);
  border-radius: 20px;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.bring-card,
.bring-icon {
  border-radius: 15px;
  align-items: center;
  display: flex;
}
.bring-card {
  background: var(--light);
  padding: 2rem;
  gap: 1.5rem;
  transition: 0.3s;
}
.bring-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.blog-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 150px 2rem 80px;
  background: linear-gradient(135deg, #f5f7fa 0, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}
.blog-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.blog-detail-hero-text,
.blog-hero-text,
.faq-hero-text,
.insurance-hero-text,
.policy-hero-text,
.terms-hero-text {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.blog-category,
.blog-meta {
  align-items: center;
  margin-bottom: 1.5rem;
}
.blog-card {
  background: var(--light);
  border-radius: 25px;
  transition: 0.4s;
}
.blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.blog-card-content {
  padding: 2.5rem;
}
.blog-category {
  display: inline-flex;
  gap: 0.5rem;
  background: rgba(72, 207, 174, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}
.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.blog-card h3 a,
.categories-list a,
.recent-post-content h4 a,
.related-post-content h4 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}
.blog-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}
.featured-badge,
.search-button {
  background: var(--gradient);
  color: var(--white);
  position: absolute;
}
.featured-post {
  margin-bottom: 4rem;
}
.featured-post .blog-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
}
.featured-post .blog-image {
  height: 400px;
}
.featured-badge {
  top: 20px;
  left: 20px;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}
.search-input {
  width: 100%;
  padding: 1rem 60px 1rem 1.5rem;
  border: 2px solid var(--gray-light);
  border-radius: 15px;
  font-size: 0.95rem;
  transition: 0.3s;
}
.search-button {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: 0.3s;
}
.categories-list li,
.recent-post,
.related-post {
  border-bottom: 1px solid var(--gray-light);
  display: flex;
}
.search-button:hover {
  transform: translateY(-50%) scale(1.1);
}
.newsletter-button:hover,
.tag:hover {
  transform: translateY(-2px);
}
.categories-list li {
  padding: 1rem 0;
  justify-content: space-between;
  align-items: center;
}
.categories-list li:last-child,
.comparison-table tr:last-child td,
.data-table tr:last-child td,
.legal-table tr:last-child td,
.policy-section:last-of-type,
.terms-section:last-of-type {
  border-bottom: none;
}
.category-count {
  background: rgba(72, 207, 174, 0.1);
  color: var(--secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
}
.comment-form,
.recent-posts,
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.recent-post,
.related-post {
  gap: 1rem;
  padding-bottom: 1.5rem;
}
.recent-post-image,
.related-post-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.recent-post-content h4,
.related-post-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.recent-post-date,
.related-post-date {
  color: var(--gray);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-tag:hover,
.newsletter-button,
.page-next:hover,
.page-number.active,
.page-number:hover,
.page-prev:hover,
.tag:hover {
  background: var(--gradient);
  color: var(--white);
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-light);
  border-radius: 15px;
  font-size: 0.95rem;
  transition: 0.3s;
}
.newsletter-button {
  border: none;
  padding: 1rem;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter-button:hover {
  box-shadow: 0 6px 20px rgba(72, 207, 174, 0.3);
}
.tag {
  background: rgba(72, 207, 174, 0.1);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.3s;
}
.page-next,
.page-number,
.page-prev {
  background: var(--light);
  color: var(--dark);
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}
.page-numbers {
  display: flex;
  gap: 0.5rem;
}
.page-next,
.page-number,
.page-prev {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.blog-detail-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 150px 2rem 100px;
  background: linear-gradient(135deg, #f5f7fa 0, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}
.blog-detail-hero-container,
.faq-hero-container,
.insurance-hero-container,
.policy-hero-container,
.terms-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.blog-detail-hero h1 {
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.blog-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.95rem;
}
.author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.author-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.blog-detail-content,
.faq-content,
.insurance-content,
.policy-content,
.terms-content {
  padding: 80px 2rem 100px;
  background: var(--white);
}
.blog-detail-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 4rem;
}
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
}
.article-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
}
.comment-content,
.share-button:hover,
.sidebar-widget,
.stat-item {
  box-shadow: var(--shadow-sm);
}
.article-content h2 {
  margin: 2.5rem 0 1.5rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.8rem;
}
.article-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}
.article-content h3 {
  margin: 2rem 0 1rem;
  color: var(--dark);
}
.article-content ol,
.article-content ul {
  margin: 1.5rem 0 1.5rem 2rem;
}
.highlight-box {
  background: rgba(72, 207, 174, 0.08);
  border-left: 4px solid var(--secondary);
  padding: 2rem;
  border-radius: 0 15px 15px 0;
  margin: 2.5rem 0;
}
.highlight-box h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.article-tag {
  background: rgba(72, 207, 174, 0.1);
  color: var(--secondary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}
.comments-section,
.share-button,
.sidebar-widget {
  background: var(--light);
}
.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.comment-author,
.form-label,
.share-label {
  font-weight: 600;
  color: var(--dark);
}
.share-buttons {
  display: flex;
  gap: 0.8rem;
}
.comments-list,
.sidebar {
  gap: 2.5rem;
  display: flex;
}
.share-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-decoration: none;
  transition: 0.3s;
}
.share-button:hover {
  transform: translateY(-3px);
}
.share-button.facebook:hover {
  background: #3b5998;
  color: #fff;
}
.share-button.twitter:hover {
  background: #1da1f2;
  color: #fff;
}
.share-button.linkedin:hover {
  background: #0077b5;
  color: #fff;
}
.share-button.link:hover {
  background: var(--secondary);
  color: #fff;
}
.sidebar {
  flex-direction: column;
}
.sidebar-widget {
  border-radius: 20px;
  padding: 2rem;
}
.widget-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(72, 207, 174, 0.2);
}
.toc-list li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(72, 207, 174, 0.1);
}
.toc-list li:last-child {
  margin-bottom: 0;
}
.toc-list a {
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.comments-section {
  padding: 80px 2rem;
}
.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.comments-title {
  font-size: 1.8rem;
  color: var(--dark);
}
.comments-count {
  background: var(--gradient);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}
.comments-list {
  flex-direction: column;
  margin-bottom: 4rem;
}
.comment {
  display: flex;
  gap: 1.5rem;
}
.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.comment-content {
  flex: 1;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
}
.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.comment-date {
  color: var(--gray);
  font-size: 0.85rem;
}
.comment-text {
  color: var(--dark);
  line-height: 1.7;
}
.comment-reply {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.comment-form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.comment-form-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-input,
.form-textarea {
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.3s;
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}
.faq-hero,
.insurance-hero,
.policy-hero,
.terms-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 150px 2rem 80px;
  background: linear-gradient(135deg, #f5f7fa 0, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}
.faq-grid,
.policy-grid,
.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.policy-section,
.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.section-header {
  text-align: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.policy-text,
.section-text,
.terms-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.policy-list,
.terms-list {
  margin: 1.5rem 0 2rem 2rem;
}
.policy-list li,
.terms-list li {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.policy-note,
.terms-note {
  background: rgba(72, 207, 174, 0.08);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
}
.policy-note h4,
.terms-note h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comparison-table,
.data-table,
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  border-radius: 10px;
  overflow: hidden;
}
.comparison-table th,
.data-table th,
.legal-table th {
  background: var(--primary);
  color: var(--white);
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}
.comparison-table td,
.data-table td,
.legal-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--gray-light);
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.policy-navigation {
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
}
.policy-navigation h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.acceptance-box h3,
.nav-list a {
  display: flex;
  align-items: center;
}
.nav-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.nav-list li {
  margin-bottom: 0.5rem;
}
.nav-list a {
  color: var(--dark);
  text-decoration: none;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 0.95rem;
}
.nav-list a:hover {
  background: rgba(72, 207, 174, 0.1);
  color: var(--primary);
}
.nav-list a i {
  color: var(--secondary);
  font-size: 0.8rem;
}
.last-updated {
  font-size: 0.95rem;
  color: var(--gray);
  background: rgba(72, 207, 174, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  display: inline-block;
}
.definition-list {
  margin: 1.5rem 0;
}
.definition-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}
.definition-term {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.definition-description {
  color: var(--dark);
}
.acceptance-box {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 123, 0.05) 0,
    rgba(72, 207, 174, 0.05) 100%
  );
  border: 2px solid var(--secondary);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.acceptance-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  justify-content: center;
  gap: 0.8rem;
}
.acceptance-box p {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.faq-search {
  width: 100%;
  padding: 1.2rem 60px 1.2rem 1.5rem;
  border: 2px solid var(--gray-light);
  border-radius: 15px;
  font-size: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.2rem;
}
.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.category-card {
  background: var(--light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
  border: 2px solid transparent;
}
.category-card:hover,
.insurance-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(72, 207, 174, 0.3);
}
.category-card.active {
  background: var(--white);
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.category-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
}
.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.faq-section {
  margin-bottom: 3.5rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .faq-hero {
    min-height: 40vh;
  }
  .quick-stats {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 1.2rem;
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 1.2rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem;
  }
}
.quick-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.quick-link {
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.payment-icon,
.plan-icon {
  width: 50px;
  height: 50px;
  align-items: center;
}
.quick-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--primary);
  color: var(--white);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.insurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.insurance-section {
  margin-bottom: 2rem;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 400;
}
.faq-question,
.no,
.yes {
  font-weight: 600;
}
.insurance-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.insurance-plan-card {
  background: var(--light);
  border-radius: 15px;
  padding: 1.8rem;
  transition: 0.3s;
  border: 2px solid transparent;
}
.plan-icon {
  background: rgba(72, 207, 174, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.faq-item,
.payment-option {
  background: var(--light);
  transition: 0.3s;
}
.insurance-plan-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}
.plan-examples {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}
.plan-examples li {
  margin-bottom: 0.3rem;
}
.yes {
  color: var(--secondary);
}
.no {
  color: #f39c6b;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.faq-item {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid transparent;
}
.faq-item.active {
  border-color: rgba(72, 207, 174, 0.3);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: var(--dark);
  transition: 0.3s;
}
.faq-question .icon {
  color: var(--secondary);
  font-size: 1.2rem;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.payment-option {
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
}
.payment-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.payment-icon {
  background: rgba(72, 207, 174, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.payment-option h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.verification-tool {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 123, 0.05) 0,
    rgba(72, 207, 174, 0.05) 100%
  );
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  border: 2px solid rgba(72, 207, 174, 0.2);
}
.contact-cta,
.step-number {
  background: var(--gradient);
}
.verification-tool h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.verification-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.verification-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-number {
  width: 35px;
  height: 35px;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-cta {
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
  color: var(--white);
}
.contact-cta h3 {
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.contact-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.95;
}
@media (max-width: 576px) {
  .insurance-hero {
    min-height: 40vh;
  }
  .quick-links {
    flex-direction: column;
    align-items: center;
  }
  .quick-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .faq-question {
    padding: 1.2rem;
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 1.2rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem;
  }
}
body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
/* ==================== MOBILE RESPONSIVE STYLES ==================== */
@media (max-width: 767px) {
  /* Base adjustments */
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  /* Container padding */
  .hero, 
  .service-hero,
  .emergency-hero,
  .blog-hero,
  .blog-detail-hero,
  .faq-hero,
  .insurance-hero,
  .policy-hero,
  .terms-hero {
    padding: 100px 1rem 40px;
  }
  
  .features,
  .services,
  .about,
  .approach,
  .blog-content,
  .brands,
  .conditions,
  .faq,
  .lens-options,
  .lens-tech,
  .procedure-timeline,
  .recovery,
  .service-details,
  .technology,
  .testimonials,
  .what-to-bring,
  .candidacy,
  .categories,
  .contact,
  .doctors,
  .emergency-process,
  .frame-guide,
  .importance,
  .lasik-types,
  .milestones,
  .procedure,
  .process,
  .results,
  .urgency-levels,
  .virtual-tryon,
  .cta {
    padding: 60px 1rem;
  }
  
  /* Navbar */
  .navbar {
    width: 95%;
    padding: 0.8rem 1rem;
    top: 10px;
    border-radius: 50px;
  }
  
  .navbar.scrolled {
    top: 5px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo i {
    font-size: 1.5rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 5%;
    width: 90%;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  /* Hero sections */
  .hero-container,
  .service-hero-container,
  .emergency-hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-image,
  .service-hero-image,
  .emergency-hero-image {
    order: -1;
  }
  
  .hero-card {
    display: none;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grid layouts - convert to single column */
  .features-grid,
  .services-grid,
  .doctors-grid,
  .about-stats,
  .contact-container,
  .footer-content,
  .approach-grid,
  .categories-grid,
  .importance-grid,
  .lens-grid,
  .technology-grid,
  .types-grid,
  .urgency-grid,
  .brands-grid,
  .guide-grid,
  .procedure-steps,
  .process-steps,
  .results-stats,
  .candidacy-grid,
  .tech-highlight,
  .tryon-container,
  .details-grid,
  .bring-grid,
  .conditions-grid,
  .blog-grid,
  .blog-detail-grid,
  .stats-grid,
  .nav-list,
  .faq-categories,
  .insurance-plans-grid,
  .payment-options {
    grid-template-columns: 1fr;
  }
  
  /* About section */
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-img-float {
    display: none;
  }
  
  /* Contact section */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  /* CTA section */
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .cta p {
    font-size: 1rem;
  }
  
  /* Blog */
  .blog-grid,
  .blog-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-image,
  .featured-post .blog-image {
    height: 250px;
  }
  
  .blog-card-content {
    padding: 1.5rem;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  /* Sidebar */
  .sidebar {
    margin-top: 3rem;
  }
  
  /* Comments */
  .comment {
    flex-direction: column;
  }
  
  .comment-avatar {
    width: 50px;
    height: 50px;
  }
  
  /* FAQ */
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
  
  /* Insurance */
  .quick-links {
    flex-direction: column;
  }
  
  .quick-link {
    text-align: center;
  }
  
  /* Emergency */
  .emergency-number {
    font-size: 1.8rem;
  }
  
  /* Tables */
  .comparison-table,
  .data-table,
  .legal-table {
    display: block;
    overflow-x: auto;
  }
  
  /* Timeline */
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }
  
  .timeline-content {
    width: 100%;
    margin-left: 50px;
    position: relative;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    right: auto;
    transform: translateY(-50%);
  }
  
  /* Recovery timeline */
  .recovery-timeline::before {
    left: 20px;
  }
  
  /* Milestone timeline */
  .milestone-item {
    flex-direction: column;
  }
  
  .milestone-age {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  /* Scroll top button */
  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* ==================== SMALL MOBILE (Below 480px) ==================== */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .hero-badge,
  .emergency-hero-badge,
  .blog-hero-badge,
  .service-hero-badge,
  .faq-hero-badge,
  .insurance-hero-badge,
  .policy-hero-badge,
  .terms-hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .hero-text,
  .service-hero-text,
  .emergency-hero-text,
  .blog-hero-text,
  .faq-hero-text,
  .insurance-hero-text,
  .policy-hero-text,
  .terms-hero-text {
    font-size: 1rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .service-icon-badge {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .doctor-img-wrapper {
    height: 250px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .footer-brand h3 {
    font-size: 1.5rem;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
  }
  
  /* Card adjustments */
  .feature-box,
  .service-content,
  .lens-features,
  .type-features,
  .urgency-content,
  .procedure-step,
  .process-step,
  .approach-card,
  .importance-card,
  .tech-card,
  .condition-card,
  .bring-card,
  .candidacy-box {
    padding: 1.5rem;
  }
  
  /* Stats and numbers */
  .stat-number,
  .result-number,
  .lens-price,
  .emergency-number {
    font-size: 1.8rem;
  }
  
  .hero-card-info h4 {
    font-size: 1.4rem;
  }
  
  /* Forms */
  .form-control,
  .search-input,
  .newsletter-input,
  .faq-search {
    padding: 0.8rem 1rem;
  }
  
  /* Modal/menu adjustments */
  .nav-links {
    padding: 1rem;
  }
  
  .menu-toggle span {
    width: 20px;
  }
}

/* ==================== LANDSCAPE ORIENTATION ==================== */
@media (max-width: 767px) and (orientation: landscape) {
  .hero,
  .service-hero,
  .emergency-hero {
    min-height: auto;
    padding: 100px 1rem 40px;
  }
  
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .nav-links {
    max-height: 70vh;
    overflow-y: auto;
  }
}

/* ==================== TABLET (768px - 1024px) ==================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .features-grid,
  .services-grid,
  .doctors-grid,
  .approach-grid,
  .categories-grid,
  .importance-grid,
  .lens-grid,
  .technology-grid,
  .types-grid,
  .urgency-grid,
  .brands-grid,
  .guide-grid,
  .procedure-steps,
  .process-steps,
  .results-stats,
  .candidacy-grid,
  .bring-grid,
  .conditions-grid,
  .insurance-plans-grid,
  .payment-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-container,
  .service-hero-container,
  .emergency-hero-container,
  .about-container,
  .contact-container,
  .tech-highlight,
  .tryon-container,
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid,
  .blog-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .hero-card {
    transform: scale(0.8);
  }
  
  .hero-card.card-1 {
    left: -20px;
  }
  
  .hero-card.card-2 {
    right: -20px;
  }
}

/* ==================== TOUCH DEVICE OPTIMIZATIONS ==================== */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-links a,
  .menu-toggle,
  .scroll-top,
  .search-button,
  .social-icon,
  .footer-social a,
  .category-card,
  .service-card,
  .doctor-card,
  .lens-card,
  .type-card,
  .urgency-card,
  .blog-card,
  .guide-card,
  .condition-card,
  .bring-card,
  .article-tag,
  .tag,
  .page-number,
  .page-prev,
  .page-next,
  .share-button,
  .quick-link,
  .insurance-plan-card,
  .payment-option,
  .faq-question {
    cursor: default;
  }
  
  .btn:hover,
  .nav-links a:hover::after,
  .btn-primary:hover,
  .btn-outline:hover,
  .social-icon:hover,
  .footer-social a:hover,
  .feature-box:hover,
  .service-card:hover,
  .doctor-card:hover,
  .blog-card:hover,
  .lens-card:hover,
  .type-card:hover,
  .urgency-card:hover,
  .approach-card:hover,
  .importance-card:hover,
  .procedure-step:hover,
  .process-step:hover,
  .tech-card:hover,
  .condition-card:hover,
  .bring-card:hover,
  .result-stat:hover,
  .brand-card:hover,
  .article-tag:hover,
  .tag:hover,
  .page-number:hover,
  .page-prev:hover,
  .page-next:hover,
  .share-button:hover,
  .scroll-top:hover,
  .quick-link:hover,
  .insurance-plan-card:hover,
  .payment-option:hover {
    transform: none;
  }
  
  .nav-links a:hover::after {
    width: 0;
  }
  
  /* Add active states for touch */
  .btn:active,
  .nav-links a:active,
  .menu-toggle:active,
  .scroll-top:active,
  .search-button:active {
    transform: scale(0.98);
  }
  
  .btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(72, 207, 174, 0.3);
  }
}

/* ==================== DARK MODE SUPPORT ==================== */
@media (prefers-color-scheme: dark) {
  :root {
    --dark: #f8f9fa;
    --light: #1a1a2e;
    --white: #0f172a;
    --gray-light: #2d3748;
  }
  
  body {
    background: var(--white);
    color: #e2e8f0;
  }
  
  .navbar {
    background: rgba(26, 26, 46, 0.95);
  }
  
  .hero,
  .service-hero,
  .blog-hero,
  .blog-detail-hero,
  .faq-hero,
  .insurance-hero,
  .policy-hero,
  .terms-hero {
    background: linear-gradient(135deg, #1a1a2e 0, #16213e 100%);
  }
  
  .emergency-hero {
    background: linear-gradient(135deg, #2a0f0f 0, #1a0a0a 100%);
  }
  
  .services {
    background: linear-gradient(180deg, var(--white) 0, var(--light) 100%);
  }
  
  .feature-box,
  .service-card,
  .doctor-card,
  .guide-card,
  .tech-card,
  .condition-card,
  .bring-card,
  .candidacy-box,
  .type-card,
  .urgency-card,
  .testimonial-card,
  .blog-card,
  .comment-content,
  .sidebar-widget,
  .contact-form-wrapper,
  .insurance-plan-card,
  .payment-option,
  .faq-item {
    background: var(--light);
  }
  
  .stat-box,
  .procedure-step,
  .process-step,
  .result-stat,
  .brand-card,
  .milestone-content,
  .timeline-content {
    background: var(--white);
  }
  
  .highlight-box,
  .policy-note,
  .terms-note,
  .candidacy-box.good,
  .verification-tool {
    background: rgba(72, 207, 174, 0.1);
  }
  
  .comparison-table tr:nth-child(2n),
  .data-table tr:nth-child(2n),
  .legal-table tr:nth-child(2n) {
    background: var(--light);
  }
  
  .comparison-table th,
  .data-table th,
  .legal-table th {
    background: var(--primary);
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .navbar,
  .footer,
  .cta,
  .scroll-top,
  .hero-card,
  .social-icons,
  .btn,
  .menu-toggle,
  .testimonial-rating,
  .share-buttons,
  .pagination,
  .newsletter-form,
  .quick-links,
  .verification-tool,
  .contact-cta {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero,
  .service-hero,
  .emergency-hero,
  .blog-hero,
  .blog-detail-hero,
  .faq-hero,
  .insurance-hero,
  .policy-hero,
  .terms-hero {
    padding: 0;
    min-height: auto;
  }
  
  .container,
  .hero-container,
  .service-hero-container,
  .emergency-hero-container,
  .about-container,
  .contact-container,
  .faq-container,
  .blog-hero-container,
  .blog-detail-hero-container,
  .faq-hero-container,
  .insurance-hero-container,
  .policy-hero-container,
  .terms-hero-container {
    max-width: 100%;
    margin: 0;
  }
  
  a {
    color: #000 !important;
    text-decoration: underline;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  img {
    max-width: 100% !important;
  }
  
  .article-content,
  .faq-content,
  .insurance-content,
  .policy-content,
  .terms-content {
    padding: 20pt 0;
  }
}
.navbar .btn-primary{margin-bottom: 0px !important;}